I have problem...
When i open OX event : /open
I go to Uriel and i click on him and nothing appears...So my friends can't join...
How to fix that problem?
oxevent.lua
quest oxevent_manager begin
state start begin
when 20011.chat."OX Event" begin
if game.get_event_flag("oxevent_status") == 0 then
say("There's no OX-Event running.")
say("")
say("")
elseif game.get_event_flag("oxevent_status") == 1 then
say("You wanna join?")
say("You wanna join or just looking?")
say("")
local s = select("Join", "Just looking", "Cancel")
if s == 1 then
say("You get teleported.")
say("")
wait()
pc.warp(896500, 24600)
elseif s == 2 then
say("OK. You can view.")
say("You get teleported.")
say("")
wait()
pc.warp(896300, 28900)
end
elseif game.get_event_flag("oxevent_status") == 2 then
say("Sorry, but the OX is closed.")
say("You just can view the OX-Event.")
say("")
local s = select("View", "Cancel")
if s == 1 then
say("You get teleported.")
say("")
wait()
pc.warp(896300, 28900)
end
end
end
when 20358.chat."OX-Event" with pc.is_gm() begin
local stat = oxevent.get_status()
if stat == 0 then
say("OX-Event")
say("")
local s = select("OX start", "OX not start")
if s == 1 then
local v = oxevent.open()
if v == 0 then
say("Is OX aktive?")
say("")
elseif v == 1 then
say("OX-Event get started.")
say("")
notice_all("The OX-Event has started.")
else
say("Error.")
say("")
end
end
elseif stat == 1 then
say("There are "..oxevent.get_attender().." Gamers here.")
say("Close down the entery for OX?")
say("")
local s = select("Close", "Cancel")
if s == 1 then
oxevent.close()
say("Joining: OFF.")
say("")
end
elseif stat == 2 then
say("OX-Event")
say("")
local s = select("Questions", "Cancel", "Cancel", "Back")
if s == 1 then
local v = oxevent.quiz(1, 30)
if v == 0 then
say("The event isn't running.")
say("")
elseif v == 1 then
say("Question comes. (..)")
say("")
else
say("There's already a question in use.")
say("")
end
elseif s == 2 then
oxevent.end_event()
notice_all("The event is over!")
say("Event Canceled")
say("")
elseif s == 3 then
oxevent.end_event()
notice_all("OX was canceled.")
say("The event is over.")
say("")
end
elseif stat == 3 then
say("One moment. Wait..")
say("")
else
say("An error occupied.")
end
end
when 20358.chat."OX Cancelling" with pc.is_gm() begin
say("You wanna cancel event?")
say("")
local s = select("Yep", "Nope")
if s == 1 then
oxevent.end_event_force()
say("OX-Event Shutted down.")
end
end
when 20358.chat."Give reward" with pc.is_gm() begin
say("What item? (ItemValue)")
say("")
local item_vnum = input()
say("How much players, do you wanna give items?")
say("")
local item_count = input()
oxevent.give_item(item_vnum, item_count)
say("You have given "..oxevent.get_attender().." Gamers a reward!")
say("")
end
end
end
state start begin
when 20011.chat."OX Event" begin
if game.get_event_flag("oxevent_status") == 0 then
say("There's no OX-Event running.")
say("")
say("")
elseif game.get_event_flag("oxevent_status") == 1 then
say("You wanna join?")
say("You wanna join or just looking?")
say("")
local s = select("Join", "Just looking", "Cancel")
if s == 1 then
say("You get teleported.")
say("")
wait()
pc.warp(896500, 24600)
elseif s == 2 then
say("OK. You can view.")
say("You get teleported.")
say("")
wait()
pc.warp(896300, 28900)
end
elseif game.get_event_flag("oxevent_status") == 2 then
say("Sorry, but the OX is closed.")
say("You just can view the OX-Event.")
say("")
local s = select("View", "Cancel")
if s == 1 then
say("You get teleported.")
say("")
wait()
pc.warp(896300, 28900)
end
end
end
when 20358.chat."OX-Event" with pc.is_gm() begin
local stat = oxevent.get_status()
if stat == 0 then
say("OX-Event")
say("")
local s = select("OX start", "OX not start")
if s == 1 then
local v = oxevent.open()
if v == 0 then
say("Is OX aktive?")
say("")
elseif v == 1 then
say("OX-Event get started.")
say("")
notice_all("The OX-Event has started.")
else
say("Error.")
say("")
end
end
elseif stat == 1 then
say("There are "..oxevent.get_attender().." Gamers here.")
say("Close down the entery for OX?")
say("")
local s = select("Close", "Cancel")
if s == 1 then
oxevent.close()
say("Joining: OFF.")
say("")
end
elseif stat == 2 then
say("OX-Event")
say("")
local s = select("Questions", "Cancel", "Cancel", "Back")
if s == 1 then
local v = oxevent.quiz(1, 30)
if v == 0 then
say("The event isn't running.")
say("")
elseif v == 1 then
say("Question comes. (..)")
say("")
else
say("There's already a question in use.")
say("")
end
elseif s == 2 then
oxevent.end_event()
notice_all("The event is over!")
say("Event Canceled")
say("")
elseif s == 3 then
oxevent.end_event()
notice_all("OX was canceled.")
say("The event is over.")
say("")
end
elseif stat == 3 then
say("One moment. Wait..")
say("")
else
say("An error occupied.")
end
end
when 20358.chat."OX Cancelling" with pc.is_gm() begin
say("You wanna cancel event?")
say("")
local s = select("Yep", "Nope")
if s == 1 then
oxevent.end_event_force()
say("OX-Event Shutted down.")
end
end
when 20358.chat."Give reward" with pc.is_gm() begin
say("What item? (ItemValue)")
say("")
local item_vnum = input()
say("How much players, do you wanna give items?")
say("")
local item_count = input()
oxevent.give_item(item_vnum, item_count)
say("You have given "..oxevent.get_attender().." Gamers a reward!")
say("")
end
end
end
oxquiz.lua
add_ox_quiz(1, "Is there a man on DT?", true)
add_ox_quiz(1, "Could you have pets ingame?", false)
add_ox_quiz(1, "Can you take ppl. from other empire into your grp?", false)
add_ox_quiz(1, "Is a " Klunkiarmor " existing?", false)
add_ox_quiz(1, "re there many languages of Metin2?", true)
add_ox_quiz(1, "Some guys are talking?", true)
add_ox_quiz(1, "Warriors could wear Black Steel Plate?", true)
add_ox_quiz(1, "Itemshop is for money?", false)
add_ox_quiz(1, "The demon tower have 7 steps?", false)
add_ox_quiz(1, "At the Horse Guy, are there horses?", false)
add_ox_quiz(1, "Are there little guys in Metin2?", false)
add_ox_quiz(1, "A horse could be death?", true)
add_ox_quiz(1, "You can leave your husband at old woman?", false)
add_ox_quiz(1, "You can make your horse alive with a magic flower?", false)
add_ox_quiz(1, "You can make damage?", true)
add_ox_quiz(1, "Youre lvl 1, you have skills P?", false)
add_ox_quiz(1, "You can make an earring with horse?", false)
add_ox_quiz(1, "Is there a command, that make unseeable?", true)
add_ox_quiz(1, "You can find metin lvl 20 map1?", true)
add_ox_quiz(1, "Is there a lvl 80 weapon?", true)
add_ox_quiz(1, "Is it raining ingame?", false)
add_ox_quiz(1, "Could you marry a guy from another empire?", false)
add_ox_quiz(1, "You can buy a potion?", true)
add_ox_quiz(1, "You can up items by blacksmith?", true)
add_ox_quiz(1, "Your horse can learn skills?", true)
add_ox_quiz(1, "You need an emotion mask to dance?", true)
add_ox_quiz(1, "In map2 you see a Metin Stone lvl 35?", true)
add_ox_quiz(1, "You must feed a pony lvl 1 with karrots?", false)
add_ox_quiz(1, "You can switch your skills after lvl 30 at old woman?", false)
add_ox_quiz(1, "You can up items +10?", false)
add_ox_quiz(1, "You can marry with lvl 25?", true)
add_ox_quiz(1, "Is the tortoise in desert?", true)
add_ox_quiz(1, "You can wear EVERY weapon?", false)
add_ox_quiz(1, "You can have negative align with lvl 1?", true)
add_ox_quiz(1, "Do you drop a poly-morph book by death reaper?", false)
add_ox_quiz(1, "You can trade armor 'king'?", false)
add_ox_quiz(1, "The death reaper is violent?", true)
add_ox_quiz(1, "You can put stone of hast on an armor?", true)
add_ox_quiz(1, "You can buy lvl 1 sword at ItemShop?", false)
add_ox_quiz(1, "Are there any Metin-Stones in Red Forest?", true)
add_ox_quiz(1, "You can be a monster, wild dog wihtout poly's?", false)
add_ox_quiz(1, "You can drop something in V2 Spider Dungeon?", true)
add_ox_quiz(1, "You catch some fishes with lvl 30?", true)
add_ox_quiz(1, "You can read a Skill Book with lvl 1?", false)
add_ox_quiz(1, "Those nameless flowers have any functions?", true)
add_ox_quiz(1, "You can drop hay with lvl 1?", false)
add_ox_quiz(1, "Is 'Tigris' a boss from map1?", true)
add_ox_quiz(1, "Is there a 'Buddhist-Plate'?", true)
add_ox_quiz(1, "You can find the Wild-Dogs?", true)
add_ox_quiz(1, "You can have a sword lvl 1 at beginning?", true)
add_ox_quiz(1, "You can buy lvl 10 Weapon 2hand in an NPC?", false)
add_ox_quiz(1, "You can have 'US-Dollars' in metin2?", false)
add_ox_quiz(1, "You see a brutal bow-man in orc-land?", true)
add_ox_quiz(1, "Is there a Metin lvl 90?", true)
add_ox_quiz(1, "You can drop a horse medal?", true)
add_ox_quiz(1, "Assassins could wear 2hand weapons?", false)
add_ox_quiz(1, "Shaman can wear swords?", false)
add_ox_quiz(1, "Is Map 2 a map?", false)
add_ox_quiz(1, "You see a metin lvl 80 in demon tower?", false)
add_ox_quiz(1, "You have TP and MP?", true)
add_ox_quiz(1, "54-earrings have Crit?", false)
add_ox_quiz(1, "Ninja lvl 60 has Damage?", false)
add_ox_quiz(1, "Does the metin-stone lvl 80 drops Skill Books?", false)
add_ox_quiz(1, "Is the Lion-Sword a warrior-weapon?", false)
add_ox_quiz(1, "You need a password for demon tower?", false)
add_ox_quiz(1, "You can have a temperature in Metin2?", false)
add_ox_quiz(1, "You can smile in Metin2?", false)
add_ox_quiz(1, "Are there any Guilds yet?", true)
add_ox_quiz(1, "You can fight with a smoking?", false)
add_ox_quiz(1, "Is there a chest of brutal bow-man?", false)
add_ox_quiz(1, "Could you have pets ingame?", false)
add_ox_quiz(1, "Can you take ppl. from other empire into your grp?", false)
add_ox_quiz(1, "Is a " Klunkiarmor " existing?", false)
add_ox_quiz(1, "re there many languages of Metin2?", true)
add_ox_quiz(1, "Some guys are talking?", true)
add_ox_quiz(1, "Warriors could wear Black Steel Plate?", true)
add_ox_quiz(1, "Itemshop is for money?", false)
add_ox_quiz(1, "The demon tower have 7 steps?", false)
add_ox_quiz(1, "At the Horse Guy, are there horses?", false)
add_ox_quiz(1, "Are there little guys in Metin2?", false)
add_ox_quiz(1, "A horse could be death?", true)
add_ox_quiz(1, "You can leave your husband at old woman?", false)
add_ox_quiz(1, "You can make your horse alive with a magic flower?", false)
add_ox_quiz(1, "You can make damage?", true)
add_ox_quiz(1, "Youre lvl 1, you have skills P?", false)
add_ox_quiz(1, "You can make an earring with horse?", false)
add_ox_quiz(1, "Is there a command, that make unseeable?", true)
add_ox_quiz(1, "You can find metin lvl 20 map1?", true)
add_ox_quiz(1, "Is there a lvl 80 weapon?", true)
add_ox_quiz(1, "Is it raining ingame?", false)
add_ox_quiz(1, "Could you marry a guy from another empire?", false)
add_ox_quiz(1, "You can buy a potion?", true)
add_ox_quiz(1, "You can up items by blacksmith?", true)
add_ox_quiz(1, "Your horse can learn skills?", true)
add_ox_quiz(1, "You need an emotion mask to dance?", true)
add_ox_quiz(1, "In map2 you see a Metin Stone lvl 35?", true)
add_ox_quiz(1, "You must feed a pony lvl 1 with karrots?", false)
add_ox_quiz(1, "You can switch your skills after lvl 30 at old woman?", false)
add_ox_quiz(1, "You can up items +10?", false)
add_ox_quiz(1, "You can marry with lvl 25?", true)
add_ox_quiz(1, "Is the tortoise in desert?", true)
add_ox_quiz(1, "You can wear EVERY weapon?", false)
add_ox_quiz(1, "You can have negative align with lvl 1?", true)
add_ox_quiz(1, "Do you drop a poly-morph book by death reaper?", false)
add_ox_quiz(1, "You can trade armor 'king'?", false)
add_ox_quiz(1, "The death reaper is violent?", true)
add_ox_quiz(1, "You can put stone of hast on an armor?", true)
add_ox_quiz(1, "You can buy lvl 1 sword at ItemShop?", false)
add_ox_quiz(1, "Are there any Metin-Stones in Red Forest?", true)
add_ox_quiz(1, "You can be a monster, wild dog wihtout poly's?", false)
add_ox_quiz(1, "You can drop something in V2 Spider Dungeon?", true)
add_ox_quiz(1, "You catch some fishes with lvl 30?", true)
add_ox_quiz(1, "You can read a Skill Book with lvl 1?", false)
add_ox_quiz(1, "Those nameless flowers have any functions?", true)
add_ox_quiz(1, "You can drop hay with lvl 1?", false)
add_ox_quiz(1, "Is 'Tigris' a boss from map1?", true)
add_ox_quiz(1, "Is there a 'Buddhist-Plate'?", true)
add_ox_quiz(1, "You can find the Wild-Dogs?", true)
add_ox_quiz(1, "You can have a sword lvl 1 at beginning?", true)
add_ox_quiz(1, "You can buy lvl 10 Weapon 2hand in an NPC?", false)
add_ox_quiz(1, "You can have 'US-Dollars' in metin2?", false)
add_ox_quiz(1, "You see a brutal bow-man in orc-land?", true)
add_ox_quiz(1, "Is there a Metin lvl 90?", true)
add_ox_quiz(1, "You can drop a horse medal?", true)
add_ox_quiz(1, "Assassins could wear 2hand weapons?", false)
add_ox_quiz(1, "Shaman can wear swords?", false)
add_ox_quiz(1, "Is Map 2 a map?", false)
add_ox_quiz(1, "You see a metin lvl 80 in demon tower?", false)
add_ox_quiz(1, "You have TP and MP?", true)
add_ox_quiz(1, "54-earrings have Crit?", false)
add_ox_quiz(1, "Ninja lvl 60 has Damage?", false)
add_ox_quiz(1, "Does the metin-stone lvl 80 drops Skill Books?", false)
add_ox_quiz(1, "Is the Lion-Sword a warrior-weapon?", false)
add_ox_quiz(1, "You need a password for demon tower?", false)
add_ox_quiz(1, "You can have a temperature in Metin2?", false)
add_ox_quiz(1, "You can smile in Metin2?", false)
add_ox_quiz(1, "Are there any Guilds yet?", true)
add_ox_quiz(1, "You can fight with a smoking?", false)
add_ox_quiz(1, "Is there a chest of brutal bow-man?", false)
Please help me
2. question
When i click on flowers(20358)
How can i translate that text?
To English/Deutch?
Thanks very much if you help me !
I will thank you






