Jump to content

Hanns

Inactive Member
  • Posts

    34
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Hanns

  1. Make a quest for teleport , like this:

     

    Or, just add the teleportation part (choose == 1 then) into your arena quest.

     

    First of all .. sorry for my bad english, i know, i have to practice on it.

    quest teleport begin
        state start begin
            when your_npcID.chat."Let's go into arena" begin
                say_title("Arena Manager: ")
                say("")
                say("Hi ! I can teleport you into arena !")
                say("Do you want that ? ")
                say("")
    
                local choose = select("Yes, teleport me!" , "No, i stay here.")
    
                if choose == 2 then
                    say_title("Arena Manager:")
                    say("")
                    say("Ok , see you later")
                    return
    
                elseif choose == 1 then
                    say_title("Arena Manager: ")
                    say("")
                    say("Ok , prepare yourself !")
                    pc.warp( x , y ) // There you need to put arena's X Y
                end
            end
        end
    end
    
  2. But i can't download ! 

     

     

    You have insufficient privileges to reply here. ; And i can't reply on any topic ... Omg ....

     

    Edit: I'm start thinking that is a fake post. Also thinking that we need to pay for this "privilleges" !

  3. Try like this:

                    when letter begin
                            local v = find_npc_by_vnum(20084)
                            if v != 0 then
                                    target.vid("__TARGET__", v, "Die Forschung des Biologen")
                            end
                            send_letter("Die Forschung des Biologen")
                    end
    
    				when button or info begin
    					say_title("Die Forschung des Biologen")
    					say("")
    					say("Der Biologe sucht dich.")
    					say("Er braucht Hilfe bei seiner aktuellen Forschung")
    					say("und sucht einige Personen, die ihm helfen")
    					say("können. Er hat auch eine Belohnung versprochen.")
    					say("Vielleicht meldest du dich mal bei ihm.")
    					say("")
    					say_reward("Sprich mit dem Biologen.")
    				end

    I hope its work. (On my server it works)

    • Love 1
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.