You last visited: Today at 11:19
Advertisement
Tailor Made Tools/Programs for You - AHK
Discussion on Tailor Made Tools/Programs for You - AHK within the CO2 Programming forum part of the Conquer Online 2 category.
08/18/2009, 03:51
#691
elite*gold: 0
Join Date: Jan 2009
Posts: 10
Received Thanks: 0
08/18/2009, 19:07
#692
elite*gold: 0
Join Date: Feb 2008
Posts: 23
Received Thanks: 0
Evan i was wondering if it was possible to make a bot/macro that does the unique blade quest for more info whisper me please and i was told it was possible to get 2 blades a minute
08/19/2009, 00:53
#693
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
barns2011 @
i dont know how to do it in a min
as a matter of fact, i dont even know how to do the unique blade quest because i dont have CO installed
08/19/2009, 18:21
#694
elite*gold: 0
Join Date: Feb 2009
Posts: 19
Received Thanks: 0
Quote:
Originally Posted by
barns2011
Evan i was wondering if it was possible to make a bot/macro that does the unique blade quest for more info whisper me please and i was told it was possible to get 2 blades a minute
yes it is possible to get 2 blades per minute i do that alot but guess what, i use my hands not a bot and you dont need a bot to do the quest.
Evan Lim@
whats the problem with CO and the controlsend from ahk? i cant seem to get it working.
08/19/2009, 20:01
#695
elite*gold: 0
Join Date: Jan 2009
Posts: 10
Received Thanks: 0
Quote:
Originally Posted by
bocasz
yes it is possible to get 2 blades per minute i do that alot but guess what, i use my hands not a bot and you dont need a bot to do the quest.
That was really stupid of you man. The kid actually made a good point.
Evan, the quest consists of talking to 3 different people. First in Twin city you get the quest, then, at ape mountain you meet a soldier. The soldier will give you another letter so you can meet another char at phoenix castle and thats where it is trick cuz the char can be in any of four different locations. After you find him, he will take the two letters, give you one, and you give that to the char in Twin city which will give you a unique blade.
details here:
08/19/2009, 21:38
#696
elite*gold: 0
Join Date: Feb 2009
Posts: 19
Received Thanks: 0
Quote:
Originally Posted by
thenrique87
That was really stupid of you man. The kid actually made a good point.
well, the kid talks as if its impossible to do the quest without a bot, i wasnt being mean or anything like that but if you thought i was then im sorry
08/19/2009, 21:42
#697
elite*gold: 12
Join Date: Mar 2009
Posts: 383
Received Thanks: 1,317
@thenrique87
1.You(the program/the programmer) either have has to "play" with some memory addresses
2.or needs some time more to make the program+you will do more time to get the blade
I had searched about it. I can even make a simple program which will do that quest but it is not worthing my time.
If you want the theory/theoritical(?) part of the program just tell me and I will post it here.
@Evan_Lim
Hi Evan!
It's been a while since my last log-in here :P
It seems that you are helping lot people ^^
I've been almost always wondering, how could a program do something and check something at the same time. For example I have the following script:
Code:
loop
{
Click %x%,%y%
Sleep, 500
Click %xa%,%xy%
}
and at the same time,while the program is clicking or waiting,I want it to check something like that:
Code:
loop
{
ImageSearch,xb,yb,200,200,400,400,%A_ScriptDir%\Search.bmp
if ErrorLevel = 0
{
Click
Sleep,500
Beep,650,500
}
else
if ErrorLevel = 1
{
Beep,400,200
}
}
Is it something like that possible?
Thanks in advance,
Alexios
08/19/2009, 22:04
#698
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
bocasz @
controlsend not working because either:
1. CO detect keystrokes by hotkey, not input keystrokes, so artificial keystrokes are not detected by the hotkey system
2. control send into the wrong ahk_id class, which i dont seem to manage to get the correct one too
Alexios @
settimer
example:
Code:
#Persistent
settimer, functionA, 1000
settimer, functionB, 1000
return
functionA:
Click %x%,%y%
Sleep, 500
Click %xa%,%xy%
return
funtionB:
ImageSearch,xb,yb,200,200,400,400,%A_ScriptDir%\Search.bmp
if ErrorLevel = 0
{
Click
Sleep,500
Beep,650,500
}
else
if ErrorLevel = 1
{
Beep,400,200
}
08/19/2009, 22:31
#699
elite*gold: 0
Join Date: Feb 2009
Posts: 19
Received Thanks: 0
Quote:
Originally Posted by
Evan Lim
bocasz @
controlsend not working because either:
1. CO detect keystrokes by hotkey, not input keystrokes, so artificial keystrokes are not detected by the hotkey system
2. control send into the wrong ahk_id class, which i dont seem to manage to get the correct one too
**** =/
think there is another way to hold down ctrl in the background?
08/20/2009, 00:32
#700
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
bocasz @
i know how to produce a ctrl + right/left click, but not ctrl alone
example for Ctrl+Left:
Code:
WinGet,id, ID,[C
X=100
Y=100
gosub, leftclick
return
leftclick:
hwnd := ControlFromPoint(X, Y, "ahk_id " id,"", cX, cY)
PostMessage, 0x204, 0x8 | 0x1, cX & 0xFFFF | (cY & 0xFFFF) << 16,, ahk_id %hwnd%
PostMessage, 0x205, 0x8 , cX & 0xFFFF | (cY & 0xFFFF) << 16,, ahk_id %hwnd%
return
ControlFromPoint(X, Y, WinTitle="", WinText="", ByRef cX="", ByRef cY="", ExcludeTitle="", ExcludeText="")
{
if !(hwnd := WinExist(WinTitle, WinText, ExcludeTitle, ExcludeText))
return false
VarSetCapacity(pt,8)
VarSetCapacity(wi,60), NumPut(60,wi)
DllCall("GetWindowInfo","uint",hwnd,"uint",&wi)
NumPut(X + (w:=NumGet(wi,4,"int")) - (cw:=NumGet(wi,20,"int")), pt,0)
NumPut(Y + (h:=NumGet(wi,8,"int")) - (ch:=NumGet(wi,24,"int")), pt,4)
Loop {
child := DllCall("ChildWindowFromPointEx","uint",hwnd,"int64",NumGet(pt,0,"int64"),"uint",0x5)
if !child or child=hwnd
break
DllCall("MapWindowPoints","uint",hwnd,"uint",child,"uint",&pt,"uint",1)
hwnd := child
}
cX := NumGet(pt,0,"int")
cY := NumGet(pt,4,"int")
return hwnd
}
08/20/2009, 03:57
#701
elite*gold: 0
Join Date: Jan 2009
Posts: 10
Received Thanks: 0
Quote:
Originally Posted by
Alexios
@thenrique87
1.You(the program/the programmer) either have has to "play" with some memory addresses
2.or needs some time more to make the program+you will do more time to get the blade
I had searched about it. I can even make a simple program which will do that quest but it is not worthing my time.
If you want the theory/theoritical(?) part of the program just tell me and I will post it here.
@Evan_Lim
Hi Evan!
It's been a while since my last log-in here :P
It seems that you are helping lot people ^^
I've been almost always wondering, how could a program do something and check something at the same time. For example I have the following script:
Code:
loop
{
Click %x%,%y%
Sleep, 500
Click %xa%,%xy%
}
and at the same time,while the program is clicking or waiting,I want it to check something like that:
Code:
loop
{
ImageSearch,xb,yb,200,200,400,400,%A_ScriptDir%\Search.bmp
if ErrorLevel = 0
{
Click
Sleep,500
Beep,650,500
}
else
if ErrorLevel = 1
{
Beep,400,200
}
}
Is it something like that possible?
Thanks in advance,
Alexios
ooooookay... let me c if i get it: you can make a bot/macro that will do the "deliver the letter" quest but you wont because it is not worth your time? Are you evan? Cuz I thought it was anounced that this person was looking to help others.
Which brings me to think... either you cant do it and ur bsing me, or your a lazy programmer. Next time dont waste your time writing such useless response. Either way, Evan, could you please let me know if its possible to accomplish such thing?
Thank you
08/20/2009, 05:23
#702
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
thenrique87 @
the problem is how to deliver the letter
unless its within one of the path function, macros are not that intelligent to go there and click the npc, unlike proxy can actually enter the coordinates character is going and send packets to npc
even i spend time on this, the results wont be good (or maybe i should say it simply wont work)
for example, even i get to the same screen as the npc is, how the bot is suppose to know where to click. image search definately doesnt work, as the image of npc is not static. color search also wont work, as the npc doesnt have a unique color.
obviously, human can determine the location of the npc and send a click there, but not programs
in short, 2 major problems
1. cant get to the npc screen
2. cant determine where the npc is to click even in the same screen
08/20/2009, 10:16
#703
elite*gold: 12
Join Date: Mar 2009
Posts: 383
Received Thanks: 1,317
Quote:
Originally Posted by
thenrique87
Are you evan? Cuz I thought it was anounced that this person was looking to help others.
Which brings me to think... either you cant do it and ur bsing me, or your a lazy programmer. Next time dont waste your time writing such useless response.
I am not Evan... and I believe that everyone can contribute to any thread and not only the person who starts the thread.
Bingo! It would take me pretty much time and I am lazy
that's the reason that I did not post the theoritical/theory/how the bot will work part in my previous post.
I am sorry,but and the next time I can help people I will do it. I have found a way to do the Windbell quest and after finishing the program I was glad to give it away to my friends, unfortunately the next day TQ patched it so I did not release the program/code in public.
Now.. let's fullfil your wish!
I'll telll you the how to and if you or anyone else wants do it!
Things we will need:
DatCryptor (thanks to high6/high7 for that little awesome program)
Some programming knowledge
A little brain
How to:
The most important think is for travelling is Path-Finding
(its abbreviation from now on will be PF) and understand how it works/how we can add/remove targets. The targets of PF are saved in a .dat file that we can read it using DatCryptor and make it .txt
Here is a complete old version of the file
if you look closely,you will see I have added some targets/locations I wanted/needed like [1011-9])
Code:
/////////////////////////////////////////////////////////Birth Village////////////////////////////////////////////////////////////////
[1010-1]
title=New~Skill~Learning
id=01
mapid=1010
posx=97
posy=45
radius=2
npcid=425
mark=Trojans~and~warriors~may~learn~skills~from~Old~General\bYang.~In~addition,~he~will~tell~you~how~to~learn~more\bskills~and~where~to~buy~weapons.
[1010-2]
title=New~Spell~Learning
id=02
mapid=1010
posx=75
posy=40
radius=2
npcid=10055
mark=The~Taoist~Star~will~teach~you~some~elementary~spells.
[1010-3]
title=Feature~Introduction
id=03
mapid=1010
[1010-3-1]
title=Class~Introduction
parentid=03
posx=70
posy=40
radius=2
npcid=10004
mark=Consult~Mr.Zeal~for~the~advantages~and~characteristics\bof~your~own~class.
[1010-3-2]
title=Weapon~Introduction
parentid=03
posx=68
posy=44
radius=2
npcid=10005
mark=The~Blacksmith~explains~how~to~buy,~repair~and~use\bweapons,~as~well~as~differences~in~the~quality~of~wapons.
[1010-3-3]
title=Warehouse~Introduction
parentid=03
posx=74
posy=49
radius=2
npcid=10006
mark=The~Warehouseman~explains~how~to~retrieve~and~store~your\bmoney~and~items~in~the~warehouse~for~free.
[1010-3-4]
title=Armor~Introduction
parentid=03
posx=78
posy=54
radius=2
npcid=10006
mark=The~Armorer~teaches~you~how~to~buy,~repair~and~use~armor,\bas~well~as~differences~in~the~quality~of~armor.
[1010-3-5]
title=Drug~Introduction
parentid=03
posx=82
posy=60
radius=2
npcid=10008
mark=The~Pharmacist~will~introduce~all~kinds~of~potions~to~you\band~tell~you~where~to~buy~them.
[1010-4]
title=Novice~Tips
id=04
mapid=1010
posx=84
posy=43
radius=2
npcid=10009
mark=Mr.Nosy~will~give~you~a~lot~of~useful~tips~such~as~the\bjob~promotion~etc.
[1010-5]
title=Leave~Here
id=05
mapid=1010
posx=88
posy=33
radius=2
npcid=10010
mark=KnowItAll~will~give~you~some~weapons~and~drugs,~then~he\bwill~send~you~to~Twin~City~to~start~your~new~journey.
////////////////////////////////////////////////////////////////Twin City////////////////////////////////////////////////////////////////
[1002-1]
title=Requisite~purchase
id=10
mapid=1002
[1002-1-1]
title=Purchase~weapons
parentid=10
posx=452
posy=332
npcid=5
radius=2
mark=The~Balcksmith~in~Twin~City~sells~weapons~of~level~1~-~30\band~arrows.
[1002-1-2]
title=Purchase~skill~books
parentid=10
posx=414
posy=361
radius=2
npcid=423
mark=The~Pedlar~sells~all~kinds~of~skill~books~and~spell~books\bat~a~reasonable~price.
[1002-1-3]
title=Buy~drugs~and~scrolls
parentid=10
posx=466
posy=330
npcid=3
radius=2
mark=There~are~drugs~and~Twin~City~portal~scroll~sold~in\bPharmasict`s~shop.
[1002-1-4]
title=Buy~Armor
parentid=10
posx=414
posy=366
npcid=04
radius=2
mark=There~are~armor~and~head~gear~from~level~1~-~30~available\bin~the~Armor`s~shop.
[1002-1-5]
title=Buy~accessories
parentid=10
posx=415
posy=354
radius=2
npcid=1
mark=The~Storekeeper~sells~earrings,~rings,~bags,~necklaces,\bboots~of~level~1~-~30,~pick~axe,~and~dyes.
[1002-2]
title=Money~and~item~deposit
id=011
mapid=1002
[1002-2-1]
title=Deposit/Withdraw
parentid=11
posx=409
posy=353
radius=2
npcid=8
mark=Talk~with~the~Warehouseman~to~access~your~warehouse.
[1002-2-2]
title=Create~warehouse~pw
parentid=11
posx=411
posy=394
radius=2
npcid=1061
mark=Talk~with~the~WhsGuardian~to~create~a~password~for~your\bwarehouse~to~protect~your~property\bbetter.
[1002-3]
title=Hunting~areas
id=12
mapid=1002
[1002-3-1]
title=Pheasant~zone
parentid=012
posx=453
posy=452
radius=2
npcid=0
mark=For~level~1~-~5~players
[1002-3-2]
title=Turtledove~zone
parentid=012
posx=565
posy=536
radius=2
npcid=0
mark=For~level~5~-~10~players
[1002-3-3]
title=Robin~zone
parentid=012
posx=575
posy=688
radius=2
npcid=0
mark=For~level~10~-~15~players
[1002-3-4]
title=Apparition~zone
parentid=012
posx=330
posy=596
radius=2
npcid=0
mark=For~level~15~-~20~players
[1002-3-5]
title=Poltergeist~zone
parentid=012
posx=124
posy=461
radius=2
npcid=0
mark=For~level~20~-~25~players
[1002-4]
title=Go~to~Market/TwinCity
id=013
mapid=1002
posx=437
posy=441
radius=2
npcid=10080
mark=The~Conductress~may~teleport~you~to~the~Market~where~is\bthe~most~properous~place~in~the~game.~Thousands~of\bpeople~gather~here~to~trade~rare~treasure~from~different\bcities.~In~addition,~there~are~a~few~NPCs~providing~a\bvariety~of~services.
[1002-5]
title=Quest~and~PK~tournament
id=14
mapid=1002
[1002-5-1]
title=Monster~Hunter~quest
parentid=14
posx=437
posy=438
radius=2
npcid=2001
mark=Take~Monster~Hunter~quest~for~level~1~-~level~22~players\bfrom~TCCaptain.~You~will~gain~EXP~worth~1/4~EXPBall~every\btime~you~finish~it.~You~can~do~this~quest~3~times~at~most\bper~day.
[1002-5-3]
title=Exchange~gem~for~meteor
parentid=14
posx=397
posy=236
radius=2
npcid=1611
mark=Help~General~Judd~find~his~lost~items~back,~and\bhe~will~reward~you.
[1002-5-4]
title=Moon~box~quest
parentid=14
posx=339
posy=722
radius=2
npcid=600050
mark=If~you~are~level~70+,~Fortuneteller~may~teleport~you~to\bthe~entrance~of~Eight-Diagram~tactics.~Finish~this~quest,\byou~may~gain~Moon~box~as~reward,~which~can~be~used~to~get\brandom~items.~In~addition,~Moon~box~is~a~required~item~in\blevel~110~promotion.
[1002-5-5]
title=Treasure~labyrinth~quest
parentid=14
posx=393
posy=238
radius=2
npcid=1152
mark=Simon~will~send~you~to~treature~labyrinth~if~you~have\b2000~virtue~points~or~more.~There~are~many~monsters~you\bhave~never~met~before.~Furthermore,~monsters~here~spawn\bextremely~fast,~so~it`s~a~great~hunting~area~for~archers\band~warriors.
[1002-5-6]
title=Make~celestial~stone
parentid=14
posx=368
posy=95
radius=2
npcid=20005
mark=Celestine~can~make~celestial~stone,~the~required~item~for\bfirst~rebirth~for~you~if~you~prepare~7~normal~gems~and~a\bbottle~of~clean~water.
[1002-5-7]
title=Weekly/monthly~PK~war
parentid=14
posx=451
posy=294
radius=2
npcid=0031
mark=On~every~Saturday~and~the~first~day~of~every~month.~The\btournament~starts~at~8:30~pm~and~finishes~at~9:30.~Join\bit~and~win~gran~prizes!
[1002-6]
title=Job~promotion
id=15
mapid=1002
posx=401
posy=387
radius=0
npcid=0
mark=Trainers~of~different~professions~in~the~job~center~will\bteach~you~skills~of~your~job~and~bhelp~you~take~job\bpromotion.
[1002-7]
title=Guild~administrating
id=16
mapid=1002
posx=398
posy=394
radius=2
npcid=10003
mark=You~can~create~a~guild,~create~branch,~reconcile~or~ally\bwith~a~guild~etc.~with~the~help~of~Guild~Director.
[1002-8]
title=Character~customization
id=17
mapid=1002
[1002-8-1]
title=More~hairstyles
parentid=017
posx=414
posy=376
radius=2
npcid=10002
mark=The~Barber~offer~a~broad~selection~of~good~hairstyles.
[1002-8-2]
title=More~faces
parentid=017
posx=460
posy=334
radius=2
npcid=10020
mark=The~beautician~provides~you~with~hundreds~of~cool~faces.
[1002-8-3]
title=Change~color~of~clothes
parentid=017
posx=426
posy=351
radius=2
npcid=10063
mark=Shopboy~will~charge~you~a~meteor~to~send~you~to~the\bTinter~who~will~help~you~dye~your~armor.
[1002-8-4]
title=House~building
parentid=017
posx=403
posy=287
radius=2
npcid=30157
mark=The~house~agent~may~build~and~upgrade~a~house~for~you\bso~that~you~will~have~your~own~home.
[1002-8-5]
title=Furniture~purchase
parentid=017
posx=411
posy=369
radius=2
npcid=30161
mark=Purchase~furniture~from~the~furniture~NPC~and~decorate\byour~house~with~it.
[1002-9]
title=Go~to~somewhere~else
id=018
mapid=1002
[1002-9-1]
title=Mine~cave
parentid=18
posx=47
posy=395
radius=0
npcid=4293
mark=Buy~a~pickaxe~from~storekeeper,~go~to~the~mine~cave~on\bwind~plain~to~dig~iron~ores,~euxenite~ores,~dragon~gem,\bphoenix~gem,~fury~gem~and~tortoise~gem.
[1002-9-2]
title=Maple~forest
parentid=18
posx=963
posy=557
radius=0
npcid=0
mark=Phoenix~castle~is~the~center~of~maple~forest,~where~is~a\bhunting~area~for~players~of~level~25~-~45.~You~can~reach\bWaterfall,~new~forest~Love~Canyon~and~through~maple\bforest.
[1002-9-3]
title=Love~canyon
parentid=18
posx=556
posy=964
mark=The~grand~Ape~City~is~located~on~the~cliff~of~Love~Canyon.\bIt`s~a~good~hunting~area~for~players~from~level~45~to~65.\bPeople~can~reach~new~canyon~and~Dream~Land~through~Love\bCanyon.
[1002-9-4]
title=Desert
parentid=18
posx=63
posy=464
radius=0
npcid=10054
mark=General~Peace~on~Wind~Plain~may~teleport~you~to~the\bdesert~city,~where~is~the~center~of~desert,~a~good~area\bfor~players~from~level~65~to~level~85.~People~may~reach\bnew~desert~and~the~Mystic~Castle~through~the~desert~map.
[1002-9-5]
title=Bird~Island
parentid=18
posx=223
posy=196
radius=0
npcid=0
mark=The~bird~island~is~the~center~of~islands,~where~is~for\bplayers~from~level~85~to~100.
[1002-9-6]
title=Arena
parentid=18
posx=459
posy=293
radius=2
npcid=10021
mark=Speak~with~General~Bravery~to~be~admitted~to~the~Arena\bto~join~the~PK~tournament.~During~the~tournament,~items\bare~not~lost,~fights~are~honorable,~and~there~is~no\bpenalty~for~losing.~Players~can~fight~each~other~within\bthe~safety~of~the~arena.
[1002-9-7]
title=Training~ground
parentid=18
posx=352
posy=335
radius=2
npcid=0805
mark=Speak~with~the~Boxer~to~enter~the~training~ground.\bPlayers~can~train~without~consuming~any~HP,~MP~or~item\bdurability~in~the~training~ground.
[1002-9-8]
title=Guild~area
parentid=18
posx=352
posy=337
radius=2
npcid=0380
mark=Guild~Controller~may~send~you~to~the~guild~area.~The\bguild~war~is~held~in~the~guild~area~every~Friday~14:00\bto~Saturday~20:00.
////////////////////////////////////////////////////////////////Market////////////////////////////////////////////////////////////////
[1036-1]
title=Functional~Spots
id=20
mapid=1036
[1036-1-1]
title=Start~vending
parentid=20
posx=163
posy=177
radius=2
npcid=0
mark=Click~on~vacant~shopflag~and~start~vending.
[1036-1-2]
title=Head~to~CP~Admin
parentid=20
posx=178
posy=182
radius=2
npcid=2017
mark=Exchange~DBs~for~CPs.
[1036-1-3]
title=Deposit~/~Withdraw
parentid=20
posx=182
posy=180
radius=2
npcid=0044
mark=Warehouseman~helps~deposit~/~withdraw~items~and\bmoney.
[1036-1-4]
title=Head~to~PrizeNPC
parentid=20
posx=185
posy=170
radius=2
npcid=0047
mark=Claim~prize~after~receiving~system~message~when~you\bcan~get~a~prize.
[1036-1-5]
title=Get~married
parentid=20
posx=192
posy=193
radius=2
npcid=0390
mark=Propose~to~your~lover~by~clicking~Love~Stone.
[1036-1-6]
title=Get~divorced
parentid=20
posx=73
posy=173
radius=2
npcid=600055
mark=Starlit~helps~you~get~divorced.
[1036-1-7]
title=Buy~/~Upgrade~house
parentid=20
posx=199
posy=087
radius=2
npcid=30156
mark=HouseAdmin~helps~buy,~enter~and~upgrade~house.
[1036-1-8]
title=Leave~Market
parentid=20
posx=215
posy=220
radius=2
npcid=0045
mark=Teleport~you~out~of~the~market.
[1036-1-9]
title=Change~size
parentid=20
posx=252
posy=242
radius=2
npcid=3381
mark=Change~your~body~size.
[1036-1-10]
title=Pack~Meteors~/~DBs
parentid=20
posx=242
posy=242
radius=2
npcid=5004
mark=Pile~up~Meteors~and~Dragon~Balls.
[1036-1-11]
title=Remove~Free~Attribute
parentid=20
posx=279
posy=251
radius=2
npcid=0434
mark=Pay~DBs~to~remove~the~free~attribute~\bfrom~your~free~items.
[1036-2]
title=Daily~Function
id=21
mapid=1036
[1036-2-1]
title=Gain~Experience
parentid=21
posx=212
posy=188
radius=2
npcid=3825
mark=Gain~a~lot~of~experience~every~day~by~giving~DBs.
[1036-2-2]
title=Head~to~Lottery
parentid=21
posx=212
posy=188
radius=2
npcid=0923
mark=You~may~have~a~chance~to~get~good~items~by~Lottery.
[1036-2-3]
title=Head~to~Gamble
parentid=21
posx=139
posy=139
radius=2
npcid=9999
mark=Play~Gamble.
[1036-2-4]
title=Change~ores~to~timber
parentid=21
posx=141
posy=107
radius=2
npcid=30158
mark=Exchange~5~ores~for~a~piece~of~timber.
[1036-2-5]
title=Rosewood/Tim.Voucher
parentid=21
posx=168
posy=099
radius=2
npcid=30159
mark=A~Rosewood~Voucher~for~10~pieces~of~timber,\ba~Timber~Voucher~for~10~Rosewood~Vouchers.
[1036-2-6]
title=Copper~/~Ore~Voucher
parentid=21
posx=184
posy=103
radius=2
npcid=30160
mark=Exchange~for~Copper~Ore~Voucher~or~Ore~Voucher.
[1036-2-7]
title=Sell~items~for~CPs
parentid=21
posx=212
posy=184
radius=2
npcid=2070
mark=You~can~sell~DisguiseAmulets,~LifeFruitBasket,\bor~PenitenceAmulets~for~CPs.
[1036-2-8]
title=Manage~Virtue~Points
parentid=21
posx=240
posy=249
radius=2
npcid=300000
mark=Check~your~virtue~points~and~claim~prize.
[1036-3]
title=Upgrade~item~quality
id=22
mapid=1036
[1036-3-1]
title=Upgrade~by~100%
parentid=22
posx=179
posy=208
radius=2
npcid=10062
mark=Require~certain~meteors,~meteor~tears~or~dragon~balls~to\bupgrade~items~quality.~His~chance~of~success~is~100%.
[1036-4]
title=Upgrade~item~level
id=23
mapid=1036
[1036-4-1]
title=Upgrade~by~100%
parentid=23
pos=179,208
posx=179
posy=208
radius=2
npcid=10062
mark=Require~certain~meteors,~meteor~tears~or~dragon~balls~to\bupgrade~itmes~level.~His~chance~of~success~is~100%.
[1036-4-2]
title=Upgrade~item~above~120
parentid=23
posx=178
posy=192
radius=2
npcid=7050
mark=Only~Weapon~Master~can~upgrade~weapon~to~level~120~or\babove.
[1036-5]
title=Socketing~Items
id=24
mapid=1036
[1036-5-1]
title=Non-weapon~item
parentid=24
posx=212
posy=211
radius=2
npcid=1550
mark=Blacksmith~Lee~helps~the~first~and~the~second~socket~of\bnon-weapon~items.
[1036-6]
title=Compose~Items
id=25
mapid=1036
[1036-6-1]
title=Compose~Items
parentid=25
posx=320
posy=224
radius=2
npcid=35016
mark=Compose~items~by~Composition~Points~gained~from~minor~items.
[1036-7]
title=Enchant~Items
id=26
mapid=1036
[1036-7-1]
title=Bless~and~upgrade
parentid=26
posx=320
posy=228
radius=2
npcid=35015
mark=Ethereal~can~bless~equipments~and~upgrade~it~so~it~can\breduce~damages~taken.
[1036-7-2]
title=Enchanted~effects
parentid=26
posx=320
posy=224
radius=2
npcid=35016
mark=Enchant~HP~to~the~item~by~using~gems.
[1036-8]
title=Composition
id=27
mapid=1036
[1036-8-1]
title=Gem~Composition
parentid=27
posx=240
posy=256
radius=2
npcid=2065
mark=Jeweler~composes~all~kinds~of~gems~to~upgrade~their\bqualities~by~charging~a~lot~of~silvers.
[1036-9]
title=Quest
id=28
mapid=1036
[1036-9-1]
title=Demon~Exterminators
parentid=28
posx=206
posy=213
radius=2
npcid=2000
mark=Quest~for~level~120~and~above.~Gain~Exp~ball~as~reward.\bYou~can~do~the~quest~once~each~day.
[1036-9-2]
title=First~ReBirth
parentid=28
posx=298
posy=217
radius=2
npcid=300500
mark=Get~reborn~quest~through~Eternity~after~level~120\b(level~110~for~water~tao).
[1036-9-3]
title=Re-allot~Attri.~Points
parentid=28
posx=291
posy=200
radius=2
npcid=350050
mark=Celestial~Tao~helps~re-allot~attribute~points~after\blevel~70,~reborn.
[1036-10]
title=Other~function
id=29
mapid=1036
[1036-10-1]
title=Purchase~spell~books
parentid=29
posx=198
posy=181
radius=2
npcid=0141
mark=Pharmacist~sells~HP~potions,~fireworks~and~spell~books,\brepairs~items.
[1036-10-2]
title=Upgrade~proficiency
parentid=29
posx=189
posy=212
radius=2
npcid=0941
mark=Proficiency~God~upgrades~proficiency~of~weapons~quickly.
[1036-10-3]
title=Purchase~garments
parentid=29
posx=204
posy=179
radius=2
npcid=0433
mark=Costumer~Chen~sells~garments.
[1036-10-4]
title=Repair~items
parentid=29
posx=192
posy=212
radius=2
npcid=10065
mark=Godly~Artisan~repairs~your~items.
[1036-10-5]
title=Shopping~Mall
parentid=29
posx=212
posy=179
radius=2
npcid=0432
mark=Sell~RareItems,~Gems~and~QuestItem.
[1036-10-6]
title=Equip~Redeemed
parentid=29
posx=206
posy=225
radius=2
npcid=4450
mark=Redeem~your~detained~equipment~or~get~rewards~from~him.
//////////////////////////////////////////////////////////////////Job Center//////////////////////////////////////////////////////////////////
[1004-1]
title=Ninja~skill/Promote
id=30
mapid=1004
posx=36
posy=41
radius=2
npcid=4972
mark=Ninjas~can~find~the~Wind~Sage~to~get\bpromoted~and~learn~corresponding~skills.
[1004-2]
title=Trojan~skill/Promote
id=31
mapid=1004
posx=44
posy=33
radius=2
npcid=10022
mark=Trojan~Star~teaches~trojans~skills~and~helps~them\bget~promoted.
[1004-3]
title=Warrior~skill/Promote
id=32
mapid=1004
posx=35
posy=65
radius=2
npcid=10001
mark=Warrior~God~teaches~warriors~skills~and~helps~them\bget~promoted.
[1004-4]
title=Archer~skill/Promote
id=33
mapid=1004
posx=33
posy=53
radius=2
npcid=0400
mark=Archer~God~teaches~archers~skills~and~helps~them\bget~promoted.
[1004-5]
title=Taoist~skill/Promote
id=34
mapid=1004
posx=56
posy=33
radius=2
npcid=10000
mark=Taoist~Moon~teaches~taoist~skills~and~helps~them\bget~promoted.
[1004-6]
title=Taoist~(advanced)spell
id=35
mapid=1004
posx=60
posy=33
radius=2
npcid=0030
mark=Taoist~Star~teaches~taoist~basic~and\badvanced~skills.
[1004-7]
title=Summon~Skill~Learning
id=36
mapid=1004
posx=66
posy=33
radius=2
npcid=35500
mark=Mighty~Tao~can~teach~you~a~spell~to~summon\bthe~guards~or~monsters~after~you~have~been~reborn.
[1004-8]
title=Leave~Job~Center
id=37
mapid=1004
posx=51
posy=70
radius=0
npcid=0
mark=Head~to~Twin~City.
//////////////////////////////////////////////////////////////////Phoenix City//////////////////////////////////////////////////////////////////
[1011-1]
title=Monster~Hunter
id=40
mapid=1011
posx=227
posy=257
radius=2
npcid=2002
mark=Monster~hunter~quest~is~for~people~whose~level~are\bbetween~26~and~45,~which~can~be~done~3~times~once~a\bday.~PCCaptain~will~reward~you~exprerience~worth~half\bof~an~EXP~ball~and~a~meteor~after~you~finish~it.
[1011-2]
title=Requisite~purchase
id=41
mapid=1011
[1011-2-1]
title=Purchase~Equipment
parentid=41
posx=202
posy=242
radius=2
npcid=11
mark=Armorer~sells~coronets/helmets/hats/caps,~shields,~and\barmors/coats/robes~of~which~level~are~between~30\band~50.
[1011-2-2]
title=Purchase~weapons
parentid=41
posx=197
posy=226
radius=2
npcid=10013
mark=Blacksmith~sells~weapons~and~arrows~of~which~level\bare~between~30~and~50.
[1011-2-3]
title=Buy~accessories/boots
parentid=41
posx=168
posy=238
radius=2
npcid=4356
mark=Storekeeper~sells~earings,~rings,~bracelets,~necklace,\btaoist's~bags~and~boots~of~which~level~are~between~30\band~50.~Besides,~she~sells~pickaxe~and~dyestuff.
[1011-2-4]
title=Buy~drugs~and~scrolls
parentid=41
posx=189
posy=252
radius=2
npcid=10014
mark=Pharmacist~sells~drugs~and~CastleGate~scrolls.
[1011-3]
title=Deposite/Withdraw
id=42
mapid=1011
posx=227
posy=246
radius=2
npcid=10012
mark=Warehouseman~helps~deposite/withdraw~money\band~items.
[1011-4]
title=Head~to~levelup
id=43
mapid=1011
[1011-4-1]
title=Snake~area
parentid=043
posx=343
posy=88
radius=2
npcid=0
mark=Suitable~for~people~whose~level~are~between\b25~and~30~to~levelup.
[1011-4-2]
title=Bandit~area
parentid=43
posx=320
posy=338
radius=2
npcid=0
mark=Suitable~for~people~whose~level~are~between\b30~and~35~to~levelup.
[1011-4-3]
title=Ratling~area
parentid=43
posx=557
posy=364
radius=2
npcid=0
mark=Suitable~for~people~whose~level~are~between\b35~and~40~to~levelup.
[1011-4-4]
title=FireSpirit~area
parentid=43
posx=592
posy=785
radius=2
npcid=0
mark=Suitable~for~people~whose~level~are~between\b40~and~45~to~levelup.
[1011-5]
title=Daily~Function
id=44
mapid=1011
[1011-5-1]
title=Head~to~market
parentid=44
mapid=1011
posx=228
posy=255
radius=2
npcid=10052
mark=Conductress~can~teleport~you~to~Twin~City~or~market.\bThe~market~is~the~most~prosperous~place~in~conquer,\bwhere~you~can~buy~or~sell~lots~of~things~and~get~service\bfrom~NPCs.
[1011-5-2]
title=Socket/Remove~Gems
parentid=44
mapid=1011
posx=242
posy=237
radius=2
npcid=0035
mark=Artisan~Cloud~can~socket~a~gem~into~your~equipment\bor~remove~a~gem~from~your~socketed~equipment.
[1011-5-3]
title=Exchange~Gem~to~Meteor
parentid=44
posx=907
posy=546
radius=2
npcid=1610
mark=Use~normal~Dragon~Gem,~Phoenix~Gem,~Kylin~Gem,~or~Rainbow\bGem~in~exchange~for~a~Silver~Needle,~or~use~normal~Fury\bGem,~Moon~Gem~or~Violet~Gem~in~exchange~for~a~Gold\bNeedle.
[1011-5-4]
title=Siege~Bomb
parentid=44
posx=810
posy=458
radius=2
npcid=0421
mark=Norbert~can~make~a~Bomb~for~you,~which~enormous\bdamage~to~the~guild~gate~when~you~use~it~in~the~guild\bwar~time.
[1011-6]
title=Quests
id=45
mapid=1011
[1011-6-1]
title=Alchemist~Quest
parentid=45
posx=178
posy=224
radius=2
npcid=0040
mark=The~alchemist~will~give~you~a~reward~based~on\byour~performance.
[1011-6-2]
title=Windbell~Quest
parentid=45
posx=783
posy=456
radius=2
npcid=20000
mark=Find~her~to~start~or~finish~the~quest.
[1011-6-3]
title=Coach~Li~Quest
parentid=45
posx=178
posy=271
radius=2
npcid=30081
mark=Coach~Lin~will~ask~you~some~in-game~questions.~If~you\banswer~correctly,~he~will~give~you~a~refined~weapon.
[1011-6-4]
title=Deliver~the~Drug~Quest
parentid=45
posx=774
posy=414
radius=2
npcid=30083
mark=Take~the~Invigorant,~given~from~Druggist~in~the~Twin\bCity,~to~Killer~Maple,~he~will~award~you~2000~silver.
[1011-6-5]
title=Army~Token~Quest
parentid=45
posx=233
posy=271
radius=2
npcid=30086
mark=NPC~for~Army~Token~Quest.
[1011-6-6]
title=Rat~Fang~Quest
parentid=45
posx=779
posy=467
radius=2
npcid=30088
mark=Take~the~Rat~Fang~to~Old~Man~Tang~and~he~will~reward\byou~either~a~purple~bag~or~a~Brass~Heavy~Ring.
[1011-6-7]
title=Deliver~Letters~Quest
parentid=45
posx=724
posy=484
radius=2
npcid=30114
mark=You~need~to~give~General~Wu~the~recommendation~and\bofficial~letter.~He~answers~the~letter~and~wants~you\bto~take~it~to~General~Chen.
[1011-6-8]
title=Meteor~Tear~Quest
parentid=45
posx=804
posy=461
radius=2
npcid=600000
mark=Finish~the~quest,~and~you~will~get~meteor~tears.
[1011-6-9]
title=Moon~Gem~Quest
parentid=45
posx=211
posy=195
radius=2
npcid=600065
mark=William~will~distinguish~the~authenticity~of~the~letter.
[1011-6-10]
title=Joy`s~Mission~Quest
parentid=45
posx=324
posy=187
radius=2
npcid=30163
mark=Joy~will~give~you~an~Elite~Leopard~Coat~after~you~bring\ba~bow~back~to~her.
[1011-6-11]
title=Peace~Jade~Quest
parentid=45
posx=182
posy=214
radius=2
npcid=30167
mark=Roy~can~identify~the~blade~after~charging~a~meteor.
[1011-7]
title=Change~haristyles
id=46
mapid=1011
posx=154
posy=238
radius=2
npcid=3216
mark=You~can~use~LuckyAmulet~to~get~new~hairstyle~via~Mr.Free.
[1011-8]
title=Head~to~other~places
id=047
mapid=1011
[1011-8-1]
title=Maple~Forest~Village
parentid=047
posx=787
posy=477
radius=1
npcid=0
mark=Some~villagers~are~in~trouble.~You~can~go~there~to\bhelp~them.
[1011-8-2]
title=Wind~Plain
parentid=047
posx=11
posy=376
radius=0
npcid=0
mark=Wind~Plain~is~suitable~for~people~whose~level~are~between\b1~and~27~to~levelup.~Twin~City~is~located~in~the~center\bof~the~plain.~You~can~go~to~Love~Canyon,~Desert,\bBird~Island~and~Guild~map~via~the~plain.
[1011-8-3]
title=Love~Canyon
parentid=47
posx=453
posy=819
radius=0
npcid=0
mark=Love~Canyon~is~suitable~for~people~whose~level~are\bbetween~45~and~65~to~levelup.~Ape~City~is~located~at\bthe~edge~of~it.~You~can~go~to~New~Canyon~via\bLove~Canyon.
[1011-8-4]
title=New Forest
parentid=047
posx=850
posy=485
radius=0
npcid=0
mark=It~is~the~most~mysterious~place~of~Maple~Forest,~suitable\bfor~people~whose~level~are~between~25~and~45~to~levelup.
[1011-8-5]
title=Tiger~Cave
parentid=47
posx=379
posy=28
radius=0
npcid=0
mark=Lots~of~HawKings~(lvl.92)~and~Bandits~(lvl.97)~are\bliving~there.~You~can~go~to~Dragon~Pool~via~Tiger~Cave.
[1011-8-6]
title=Copper~Mine
parentid=47
posx=934
posy=562
radius=2
npcid=0125
mark=When~reach~level~40~or~above,~you~can~go~to~Copper~Mine\bvia~Assistant.~There~are~plentiful~Copper~Ore.~You~have\ba~chance~to~dig~out~gems,~such~as~KylinGem,~RainbowGem,\bPhoenixGem~and~DragonGem.
[1011-8-7]
title=Training~Ground
parentid=47
posx=208
posy=257
radius=2
npcid=1001
mark=BoxerLi~can~teleport~you~to~the~training~ground,~where\byou~can~gain~experience~and~levelup~your~proficiency.
[1011-9]
title=WINDBELL~QUEST
id=048
mapid=1011
[1011-9-1]
title=Windbell~QUEST
parentid=48
posx=783
posy=456
radius=2
npcid=20000
mark=FIND~her~to~start~or~finish~the~quest.
[1011-9-2]
title=LOVE~Canyon
parentid=48
posx=449
posy=821
radius=0
npcid=0
mark=LOVE~Canyon~is~suitable~for~people~whose~level~are\bbetween~45~and~65~to~levelup.~Ape~City~is~located~at\bthe~edge~of~it.~You~can~go~to~New~Canyon~via\bLove~Canyon.
////////////////////////////////////////////////////////Ape City////////////////////////////////////////////////////////
[1020-1]
title=Special~Quest
id=70
mapid=1020
[1020-1-1]
title=Monster~Hunter
posx=566
posy=620
radius=2
npcid=2003
mark=Monster~hunter~quest~is~for~people~whose~level~are\bbetween~46~and~65,~which~can~be~done~3~times~once~a\bday.~ACCaptain~will~reward~you~exprerience~worth~half\bof~an~EXP~ball~and~a~meteor~after~you~finish~it.
[1020-1-2]
title=Second~Rebirth~NPC1
parentid=70
posx=436
posy=311
radius=2
npcid=3600
mark=If~you~are~level~120~or~above~after~first~rebirth,\bAlex~will~help~you~get~second~rebirth~quest.
[1020-1-3]
title=Second~Rebirth~NPC2
parentid=70
posx=369
posy=309
radius=2
npcid=3610
mark=If~you~are~level~120~or~above~after~first~rebirth,\bCarl~will~help~you~on~second~rebirth~quest.
[1020-1-4]
title=Dis~City
parentid=70
posx=532
posy=480
radius=2
npcid=3215
mark=Solar~Saint~will~help~those~whose~level~are~110~or\babove~join~Dis~City~Quest~on~Mon~&~Wed~8:00pm-9:30pm\bor~Tues~&~Thurs~12:00pm-1:30pm.
[1020-2]
title=Requisite~purchase
id=71
mapid=1020
[1020-2-1]
title=Purchase~equipment
parentid=71
posx=557
posy=559
radius=2
npcid=4352
mark=Armorer~sells~coronets/helmets/hats/caps,~shields,~and\barmors/coats/robes~of~which~level~are~between~40\band~70.
[1020-2-2]
title=Purchase~weapons
parentid=71
posx=560
posy=508
radius=2
npcid=10029
mark=Blacksmith~sells~weapons~and~arrows~of~which~level\bare~between~40~and~70.
[1020-2-3]
title=Buy~accessories/boots
parentid=71
posx=531
posy=512
radius=2
npcid=4357
mark=Storekeeper~sells~earings,~rings,~bracelets,~necklace,\btaoist's~bags~and~boots~of~which~level~are~between~40\band~70.~Besides,~she~sells~pickaxe~and~dyestuff.
[1020-2-4]
title=Buy~drugs~and~scrolls
parentid=71
posx=550
posy=542
radius=2
npcid=10030
mark=Pharmacist~sells~drugs~and~ApeCityGate~scrolls.
[1020-3]
title=Deposite/Withdraw
id=72
mapid=1020
posx=576
posy=542
radius=2
npcid=10028
mark=Warehouseman~helps~deposite/withdraw~money\band~items.
[1020-4]
title=Head~to~levelup
id=73
mapid=1020
[1020-4-1]
title=Macaque~Area
parentid=73
posx=608
posy=556
radius=2
npcid=0
mark=Suitable~for~people~whose~level~are~between\b45~and~50~to~levelup.
[1020-4-2]
title=GiantApe~Area
parentid=73
posx=436
posy=243
radius=2
npcid=0
mark=Suitable~for~people~whose~level~are~between\b50~and~55~to~levelup.
[1020-4-3]
title=ThunderApe~Area
parentid=73
posx=310
posy=290
radius=2
npcid=0
mark=Suitable~for~people~whose~level~are~between\b55~and~60~to~levelup.
[1020-4-4]
title=Snakeman~Area
parentid=73
posx=232
posy=460
radius=2
npcid=0
mark=Suitable~for~people~whose~level~are~between\b60~and~65~to~levelup.
[1020-5]
title=Head~to~market
id=074
mapid=1020
posx=566
posy=622
radius=2
npcid=10053
mark=Conductress~can~teleport~you~to~Twin~City~or~market.\bThe~market~is~the~most~prosperous~place~in~Conquer,\bwhere~you~can~buy~or~sell~lots~of~things~and~get~service\bfrom~NPCs.
[1020-6]
title=Quests
id=75
mapid=1020
[1020-6-1]
title=Stone~Spirit
parentid=75
posx=566
posy=509
radius=2
npcid=30111
mark=Find~Blacksmith~Li.~Finish~the~quest,~you~will~get\ba~refined~soft~shield~as~reward.
[1020-6-2]
title=HeresySnakeman~NPC1
parentid=75
posx=441
posy=451
radius=2
npcid=30105
mark=Heresy~Leaderman.~Finish~the~quest,~you~will~get\b3000~silvers~as~reward.
[1020-6-3]
title=HeresySnakeman~NPC2
parentid=75
posx=88
posy=387
radius=2
npcid=30101
mark=Snakeman~Leader.~Finish~the~quest,~you~will~get\b3000~silvers~as~reward.
[1020-6-4]
title=HeresySnakeman~NPC3
parentid=75
posx=543
posy=544
radius=2
npcid=30100
mark=Mountain~King.~Finish~the~quest,~you~will\bget~3000~silvers~as~reward.
[1020-6-5]
title=Moon~Gem
parentid=75
posx=535
posy=533
radius=2
npcid=600068
mark=Old~General.~Finish~the~quest,~you~will~get\ba~refined~Moon~Gem~as~reward.
[1020-6-6]
title=Water~Ring
parentid=75
posx=381
posy=33
radius=2
npcid=30121
mark=Hades.~Finish~the~quest,~you~will~get\ba~refined~Moon~Gem~as~reward.
[1020-6-7]
title=The~Windbell
parentid=75
posx=448
posy=396
radius=2
npcid=20001
mark=Take~jade~to~the~Soldier~Leader.
[1020-6-8]
title=Siege~Bomb
parentid=75
posx=568
posy=527
radius=2
npcid=422
mark=To~get~five~pieces~of~Saltpeter~from~Old~Quarrier.
[1020-7]
title=Head~to~other~maps
id=076
mapid=1020
[1020-7-1]
title=Wind~Plain
parentid=76
posx=381
posy=021
radius=0
npcid=0
mark=Wind~Plain~is~suitable~for~people~whose~level~are~between\b1~and~27~to~levelup.~Twin~City~is~located~in~the~center\bof~the~plain.~You~can~go~to~Love~Canyon,~Desert,\bBird~Island~and~Guild~map~via~the~plain.
[1020-7-2]
title=Maple~Forest
parentid=76
posx=919
posy=559
radius=0
npcid=0
mark=Maple~Forest~is~suitable~for~people~whose~level~are\bbetween~25~and~45.~Pheonix~Castle~is~located~there.\bYou~can~go~to~Wonder~Land,~New~Forest~and~Love~Canyon\bvia~Maple~Forest.
[1020-7-3]
title=New~Canyon
parentid=76
posx=607
posy=870
radius=0
npcid=0
mark=It~is~in~the~west~of~Love~Canyon,~suitable~for\b~people~whose~level~are~between~45~and~65.
[1020-7-4]
title=Silver~Mine
parentid=76
posx=523
posy=886
radius=0
npcid=126
mark=When~reach~level~70~or~above,~you~can~go~to\bSilver~Mine~via~Assistant.~There~are~plentiful\bSilver~Ore.~You~have~a~chance~to~dig~out~gems,\bsuch~as~MoonGem~and~VioletGem.
[1020-7-5]
title=Training~Ground
parentid=76
posx=552
posy=559
radius=2
npcid=1002
mark=BoxerWang~can~teleport~you~to~the~training~ground,~where\byou~can~gain~experience~and~levelup~your~proficiency.
[1020-7-6]
title=Dreamland
parentid=76
posx=23
posy=382
radius=0
npcid=0
mark=Go~there~to~have~Sky~Pass~quest.
[1020-8]
title=WINDBELL~QUEST
id=077
mapid=1020
[1020-8-1]
title=THE~Windbell
parentid=77
posx=448
posy=396
radius=2
npcid=20001
mark=TAKE~jade~to~the~Soldier~Leader.
[1020-8-2]
title=MAPLE~Forest
parentid=77
posx=925
posy=558
radius=0
npcid=0
mark=MAPLE~Forest~is~suitable~for~people~whose~level~are\bbetween~25~and~45.~Pheonix~Castle~is~located~there.\bYou~can~go~to~Wonder~Land,~New~Forest~and~Love~Canyon\bvia~Maple~Forest.
As you see the 4 digits number changes for each map. Each map has his unique code. I am almost sure that I could write the [1011-9] under there it writes Twin City and the result would be the same.
The second number is where/in which tab/category it will go. I had made a completely new category that I used for the quest,so I wrote the next number of the last existed.
The next(3rd) number is again something like the second one,but this time the tab/category it will create will be in another one.
Let's continue to the inside.
The id I haven't completed understand what it is, just make sure it is unique.
The title of course is the title,the name we will see in PF.
The parentid should be the same with the id you have the tab at.For example look [1020-8] and [1020-8-1]. [1020-8-1] is "inside" [1020-8] so the parentid must be the id of [1020-8].
posx and posy are the coordinates of the location you will go at if you click on that tab/PF button.
radius is the radius/range, how far you can go from the exact coordinates you given.For example: I give 200,200 and radius 2. If I click on the button it may takes me from 200+/-20,200+/-20.
Mark is the exaplanation,what it will write if you move your mouse over the button.
npcid is the id of the NPC you will talk to if you are in "talking range".
Code:
[1011-6-7]
title=Deliver~Letters~Quest
parentid=45
posx=724
posy=484
radius=2
npcid=30114
mark=You~need~to~give~General~Wu~the~recommendation~and\bofficial~letter.~He~answers~the~letter~and~wants~you\bto~take~it~to~General~Chen.
After you make the MapDestination file however you like with all the NPCs of the quest included all you need after that... is some clicks!
Evan,I hope I must not tell what exactly have to click...
The whole idea is that the character will have 5 scrolls of Twin,Ape,PC in 3 F-slots, when it goes to a town, it will talk to pharmacist or whatever is called and buy another scroll. Then go at the quest's NPC.Click next,yes,ok whatever is needed at the NPC. Teleporting to other location and do the same.
How you will save the blades? Take a REALLY small screenshot of them,or an unique color of them.
Ask me for anything you want.
EDIT:
Added DatCryptor. Thank high6 for the great program.
Attached Files
DatCryptor.rar
(51.1 KB, 27 views)
08/21/2009, 16:00
#704
elite*gold: 0
Join Date: Feb 2009
Posts: 211
Received Thanks: 74
there is a quest easyer ... on pc is a quest where u get rf ears .... and less work to do only 2 npc to talk to.. one in pc and one in ape... anyway if someone alse makes a boot for it i don't think theyre gone release it .... alot of programs made already but theyre for underground ... so no use talking about it...
08/21/2009, 16:14
#705
elite*gold: 0
Join Date: Jun 2009
Posts: 1
Received Thanks: 0
Hi bro i want an aimbot for arabic virsion . plz
Similar Threads
Tailer-made Tools thread - make ur dreams come true
10/28/2008 - Conquer Online 2 - 1577 Replies
Closed
Thread discontinued due to personal reasons
Thanks for the previous support
Hi elite users,
I am Evan. Not quite well-known in forum due to the fact i only release wicky and unpopular programs...Thx for a1 and others to scan/explain when others flame or questioned me. anyhow, i am a AHK (autohotkey) user, and i like programming more than games.
Lets get to the main point:
Tell me your ideas, i will try to create a tool that satisfy ur needs
Please be specific, examples:
Packet Crafter/CO2/CO 2/Hacks/Tools/Programs
06/27/2007 - CO2 Exploits, Hacks & Tools - 13 Replies
================================================== ==================
TCP/IP Packet Injector
====-v1.4-======================================= ===================
This Project is designed to be a command line based, portable human IP
stack for UNIX-like and Windows systems. The suite is broken down by protocol,
and should allow for useful scripting of injected packets from simple shell
scripts.
Net Tools /EXE Binder/CO2/Tools/Hacks/Programs
06/26/2007 - CO2 Exploits, Hacks & Tools - 22 Replies
Net Tools is cutting-edge security and network monitoring software for the Internet and Local Area Networks, providing clients with the ability and confidence to meet the challenges of tomorrow's technology. Keeping pace with the industry trends, we offer professional tools that support the latest standards, protocols, software, and hardware for both wired and wireless networks. The main goal is the creation of high quality software. Net Tools is a very strong combination of network scanning,...
All times are GMT +1. The time now is 11:19 .