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?
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
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)
Sharecash problems - Questions & Answers 08/20/2010 - Conquer Online 2 - 38 Replies I've noticed a lot of people have trouble with sites like Sharecash, CPALead etc etc...
So I think instead of posting questions in threads (Particularly mine and clints) they should be posted here.
Obviously some people from foreign countries (Outside of the U.S) are managing to download it via proxy or whatever, so lets hear how they're doing it.
Show screenshots of your errors you get, hopefully someone can answer them.
If you know how to make it work (via proxy, script or...
(DISCUSSION + QUESTIONS) Hack Guides Problems 09/28/2009 - Cabal Online - 11 Replies I was taking a look and trying to do some of the hacks posted here for CABAL, like no skill cooldown , no skill delay and some others, and none seemed to work.
I will take an example > http://www.elitepvpers.com/forum/cabal-guides-templ ates/122414-guide-do-map-hack-no-skilldelay-hack-u ce.html .
The amount of pages and the over outdated program used here does not allow us to know if it is indeed working, we find a lot of persons which come with new ways to make it work and even using their...
Problems and questions about CE 01/30/2009 - General Gaming Discussion - 0 Replies Hi all,
When I use CE I have a problem: after I open CE, start game, log in and all, when I stay in game, I select hero.exe process from CE. Then when I use speed hack my game is all low!!!!! Help me!!! I don't know when I use speed hack my game begame low and I crash too!!!. I have a question too: what can I do with CE? PLease help me :(:(:(:(
Agbot problems...some questions....pls 12/08/2008 - Silkroad Online - 12 Replies well,i use agbot for some days now,got a lv69 rogue boting at snipers,and sometimes the bot attaks 2 monsters,i mean he attaks one then attaks another one without killing the first.....what causes to death:confused:so just if ther is any solution idd be glad to hear it................................................ ......:handsdown:
hope i ll get some answers c yas
Some L2Walker 1.92 (IG) problems/questions 02/06/2008 - Lineage 2 - 0 Replies Hiho,
i'm using the walker since a week, and I have still some problems.
First thing is the pathing, I know how to create a path to a level spot. But when my character dies, he just moves to the begining of the path, but he doesn't move to the end of the path, where I set my combat range.
So I cant leave my char grinding alone.
Second question is, how dangerous is the use of an IG walker on off. servers?
I dont use it often, but is there a high chance to be caught? And if they catch...