Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] GM Commands

Newbie Spellweaver
Joined
Nov 8, 2006
Messages
15
Reaction score
0
Re: [REQ] GM Commands

GM Commands

How to enter commands

This is really easy. All commands must be entered into the chat-field. And you must add a leading & to the command. For example:




&addmoney 1000000; gives you a million gold
IMPORTANT: All commands that use char-names (like &kick, &call, ...) are case-sensitive !!!



The commands

Command Description Level Example

addcess <points> Changes your commerce rate. Setting this to 10000 gives you a 0.01% commerce rate. ?? &addcess 1000000

addsailexp <exp> gives your current ship EXP. ?? &addsailexp 5000000

setcesslevel <level> Changes your commerce level. ?? &setcesslevel 3

addexp <exp> Adds exp to your experience ?? &addexp 1000000

addmoney <gold> Gives your char some gold ?? &addmoney 1000000

attr <param>, <value> Set a certain "attribute" of your char (see below for more infos) ?? &attr 4,9

call <CharName> Teleports the given Char to your position ?? &call AnotherUser

goto <CharName> Teleports you to the position of the given Char ?? &goto AnotherUser

hide Hides your char from other players ?? &hide

unhide The opposite of hide?? &unhide

kick <CharName> Kicks the given user ?? &kick AnotherUser

kill <Name> Kill the given Mob (to be confirmed: can be used to kill players, too) ?? &kill Soul Of Goddess

make <item-id>, <count> Gives you a certain item ?? &make 1092,99

move <x>, <y>, <map> Moves your char to the given position. The map is optional!. 1 &move 2000,2000 or
&move 2700,2200,garner

notice <text> Displays "text" in the sysmte-notice windows ?? &notice Hello World

qcha <CharName> Returns informations about the given char (coords, etc.) ?? &qcha AnotherUser

summon <mob-id> Summons the given character ?? &summon 789

summonex <mob-id>, <count> Summons the given character multiple times ?? &summon 789, 10



@@ Command
Ok, there are some additional commands with a slightly different sysntax (all credits go to jgreever for finding these) -- [Octie] Don't really get these examples, I'll try to make it clear enough to understand.


Command Description Level Example

@@ bbs <interval x 10 secs>, <time>, <content> similar to &notice, but timed ?? @@ bbs 5,5,blabla

@@ estop <charname>, <time> Mutes the given character for <time> seconds (?) ?? @@ estop SnowMan,60

@@ delestop <charname> Unmutes the given character ?? @@ delestop SnowMan

@@ getuserconnection <charname> Shows connection-info for the given character ?? @@ getuserconnection SnowMan
@@ getusernum+ Displays number of users online and number of logins ?? @@ getusernum+

@@ getlastconnection Displays your last connection info ?? @@ getlastconnection

@@ ping <charname> Pings the given character ?? @@ ping SnowMan




The &attr-Command
This seems to be one of the most important commands in the game. Its syntax is:



Code:
&attr param, value

The following values for param are confirmed until now:

Value Description Remarks / Example
0 - Level
1 - HP > You can't set a higher value than the max. HP your char has - so &attr 1,999999 will only give you as much HP as your char actually has
2 - SP > same rules apply as for HP
4 - Class Use this to change your class. The following values are possible:


1 - Swordsman
2 - Hunter
4 - Explorer
5 - Herbalist
8 - Cahmpion
9 - Crusader
12 - Sharpshooter
13 - Cleric
14 - Seal Master
16 - Voyager

5 - Reputation
6 - Attribute Points
7 - Skill Points
8 - Gold
11 - SLV
12 - Life-Skill Level
13 - Life-Skill Points
19 - SEXP
50 - STR
51 - ACC
52 - AGI
53 - CON
54 - SPR
69 - Movement-Speed Don't use values much higher than 2000!
96 - Strenght
97 - Agility
98 - Accuracy
99 - Constituction
100 - Spirit
102 - Attack Speed
104 - Minimal Attack
105 - Maximal Attack
106 - Defence
107 - Max HP Sets your max. number of HP
108 - Max SP
109 - Dodge
110 - Hit-Rate


itemattr commands can be found in the ItemAttrType.lua file and &attr commands can be found in the AttrType.lua file, there are a tonne there, some will work and some wont, as they need to be called as part of a function or something like that.

as an example:

Code:
ATTR_COUNT_BASE2 = 50;
ATTR_BSTR = ATTR_COUNT_BASE2 + 0; -- basic strength --- STR
ATTR_BDEX = ATTR_COUNT_BASE2 + 1; -- basic focus --- ACC
ATTR_BAGI = ATTR_COUNT_BASE2 + 2; -- basic Agile --- AGI
ATTR_BCON = ATTR_COUNT_BASE2 + 3; -- basic physical --- CON
ATTR_BSTA = ATTR_COUNT_BASE2 + 4; -- basic energy --- SPR
ATTR_BLUK = ATTR_COUNT_BASE2 + 5; -- basic fortunate --- luck
ATTR_BMXHP = ATTR_COUNT_BASE2 + 6; -- basic largest HP
ATTR_BMXSP = ATTR_COUNT_BASE2 + 7; -- the largest basic SP
ATTR_BMNATK = ATTR_COUNT_BASE2 + 8; -- basic Cuoxiaogongjili
ATTR_BMXATK = ATTR_COUNT_BASE2 + 9; -- the largest attack of the basic
ATTR_BDEF = ATTR_COUNT_BASE2 + 10; -- basic defense force
ATTR_BHIT = ATTR_COUNT_BASE2 + 11; -- basic shooting
ATTR_BFLEE = ATTR_COUNT_BASE2 + 12; -- evade the basic rate

so above u can see they are some of the &ATTR commands, so take your base rate of 50 and add the number to it for the one you want to use

eg:
&attr 50 is the base strength attribute modifier
&attr 53 is the base spirit attribute modifier

next example:

Code:
ATTR_COUNT_BASE4 = 96;
ATTR_ITEMV_STR = ATTR_COUNT_BASE4 + 0; -- numerical strength props (item value) Addition
ATTR_ITEMV_AGI = ATTR_COUNT_BASE4 + 1; -- Agile props numerical Addition
ATTR_ITEMV_DEX = ATTR_COUNT_BASE4 + 2; -- Focus on props numerical Addition
ATTR_ITEMV_CON = ATTR_COUNT_BASE4 + 3; -- Numerical physical props Addition
ATTR_ITEMV_STA = ATTR_COUNT_BASE4 + 4; -- Numerical energy props Addition
ATTR_ITEMV_LUK = ATTR_COUNT_BASE4 + 5; -- lucky props numerical Addition
ATTR_ITEMV_ASPD = ATTR_COUNT_BASE4 + 6; -- Addition attack numerical interval props
ATTR_ITEMV_ADIS = ATTR_COUNT_BASE4 + 7; -- props numerical range of attack Addition
ATTR_ITEMV_MNATK = ATTR_COUNT_BASE4 + 8; -- Cuoxiaogongjili props numerical Addition
ATTR_ITEMV_MXATK = ATTR_COUNT_BASE4 + 9; -- the largest attack of props numerical Addition
ATTR_ITEMV_DEF = ATTR_COUNT_BASE4 + 10; -- defense of props numerical Addition
ATTR_ITEMV_MXHP = ATTR_COUNT_BASE4 + 11; -- the largest numerical HP props Addition
ATTR_ITEMV_MXSP = ATTR_COUNT_BASE4 + 12; -- the largest numerical SP props Addition
ATTR_ITEMV_FLEE = ATTR_COUNT_BASE4 + 13; -- Ducking rate props numerical Addition
ATTR_ITEMV_HIT = ATTR_COUNT_BASE4 + 14; -- Numerical shot props Addition
ATTR_ITEMV_CRT = ATTR_COUNT_BASE4 + 15; -- Numerical explosion hit rate props Addition
ATTR_ITEMV_MF = ATTR_COUNT_BASE4 + 16; -- treasure of props numerical Addition
ATTR_ITEMV_HREC = ATTR_COUNT_BASE4 + 17; -- hp speed of recovery props numerical Addition
ATTR_ITEMV_SREC = ATTR_COUNT_BASE4 + 18; -- sp speed of recovery props numerical Addition
ATTR_ITEMV_MSPD = ATTR_COUNT_BASE4 + 19; -- Mobile speed props numerical Addition
ATTR_ITEMV_COL = ATTR_COUNT_BASE4 + 20; -- Numerical resources acquisition speed props Addition
ATTR_ITEMV_PDEF = ATTR_COUNT_BASE4 + 21; -- Numerical physical resistance props Addition


these control you bonus temporary atttributes kidna of like when you eat a spring roll or seomthing, they will wear off if you logout, die or teleport
so for example to alter these you take ur base count 96 and add the modifier to it
so :
&attr 104 adjusts your minimum damage
&attr 105 adjusts your maximum damage
&attr 107 adjust you maximum HP

and so on..

next example:
this also moves into the item attributes not just char attributes, so this would be for the &itemattr command with data from the ItemAttrType.lua file.

Code:
ITEMATTR_COUNT_BASE1 = 25;
ITEMATTR_VAL_STR = ITEMATTR_COUNT_BASE1 + 1; -- 薯講都杅樓傖ㄗstrength valueㄘ
ITEMATTR_VAL_AGI = ITEMATTR_COUNT_BASE1 + 2; -- 鏗豎都杅樓傖
ITEMATTR_VAL_DEX = ITEMATTR_COUNT_BASE1 + 3; -- 蚳蛁都杅樓傖
ITEMATTR_VAL_CON = ITEMATTR_COUNT_BASE1 + 4; -- 极窐都杅樓傖
ITEMATTR_VAL_STA = ITEMATTR_COUNT_BASE1 + 5; -- 儕薯都杅樓傖
ITEMATTR_VAL_LUK = ITEMATTR_COUNT_BASE1 + 6; -- 倷堍都杅樓傖
ITEMATTR_VAL_ASPD = ITEMATTR_COUNT_BASE1 + 7; -- 馴僻薹都杅樓傖
ITEMATTR_VAL_ADIS = ITEMATTR_COUNT_BASE1 + 8; -- 馴僻擒燭都杅樓傖
ITEMATTR_VAL_MNATK = ITEMATTR_COUNT_BASE1 + 9; -- 郔苤馴僻薯都杅樓傖
ITEMATTR_VAL_MXATK = ITEMATTR_COUNT_BASE1 + 10; -- 郔湮馴僻薯都杅樓傖
ITEMATTR_VAL_DEF = ITEMATTR_COUNT_BASE1 + 11; -- 滅郘都杅樓傖
ITEMATTR_VAL_MXHP = ITEMATTR_COUNT_BASE1 + 12; -- 郔湮Hp都杅樓傖
ITEMATTR_VAL_MXSP = ITEMATTR_COUNT_BASE1 + 13; -- 郔湮Sp都杅樓傖
ITEMATTR_VAL_FLEE = ITEMATTR_COUNT_BASE1 + 14; -- 匢旌薹都杅樓傖
ITEMATTR_VAL_HIT = ITEMATTR_COUNT_BASE1 + 15; -- 韜笢薹都杅樓傖
ITEMATTR_VAL_CRT = ITEMATTR_COUNT_BASE1 + 16; -- 惇僻薹都杅樓傖
ITEMATTR_VAL_MF = ITEMATTR_COUNT_BASE1 + 17; -- 扆惘薹都杅樓傖
ITEMATTR_VAL_HREC = ITEMATTR_COUNT_BASE1 + 18; -- hp閥葩厒僅都杅樓傖
ITEMATTR_VAL_SREC = ITEMATTR_COUNT_BASE1 + 19; -- sp閥葩厒僅都杅樓傖
ITEMATTR_VAL_MSPD = ITEMATTR_COUNT_BASE1 + 20; -- 痄雄厒僅都杅樓傖
ITEMATTR_VAL_COL = ITEMATTR_COUNT_BASE1 + 21; -- 訧埭粒摩厒僅都杅樓傖
ITEMATTR_VAL_PDEF = ITEMATTR_COUNT_BASE1 + 22; -- 昜燴萋蕨都杅樓傖


so, drop watever into your inventory, if its slot 2 where ur pet is u use &itemattr 2,1 if its in slot 3 u use &itemattr 3,1 if its second row slot 2 you would use &itemattr 2,2 and so on.
so an example would be like adjusting the level on ur pet,
&itemattr 2,1,30,100 to make it have 100 spirit, remeber BASE COUNT + Modifier
these values will change some items and not others so its trial and error as nobody has tested every item

next example:

Code:
ITEMATTR_COUNT_BASE2 = 49;
ITEMATTR_LHAND_VAL = ITEMATTR_COUNT_BASE2 + 1; -- 耋撿酘忒樓傖
ITEMATTR_MAXURE = ITEMATTR_COUNT_BASE2 + 2; -- 郔湮騵壅僅
ITEMATTR_MAXFORGE = ITEMATTR_COUNT_BASE2 + 3; -- 郔湮儕褻脹撰
ITEMATTR_MAXENERGY = ITEMATTR_COUNT_BASE2 + 4; -- 郔湮夔講
ITEMATTR_URE = ITEMATTR_COUNT_BASE2 + 5; -- 絞騵壅僅
ITEMATTR_FORGE = ITEMATTR_COUNT_BASE2 + 6; -- 絞儕褻脹撰
ITEMATTR_ENERGY = ITEMATTR_COUNT_BASE2 + 7; -- 絞夔講

an example here following the principles as outlined above, base count and modifier,
&itemattr 2,1,54,500 will feed your pet 500 points of stamina
&itemattr 2,1,51,96000 will give your pet around 600 stamania points, 96000 is around the highest u can get roughly if you go over you go into the negative, if you dont go high enough you go into the negative.

and so ends my brief guide on ATTR and ITEM ATTR, enjoy

Cya
 
Upvote 0
Newbie Spellweaver
Joined
Dec 22, 2007
Messages
12
Reaction score
0
Re: [REQ] GM Commands

help gm comands msg error
xcaliboper - [Help] GM Commands - RaGEZONE Forums
 
Last edited:
Upvote 0
Initiate Mage
Joined
Nov 2, 2008
Messages
1
Reaction score
0
0001 Windslash Attacks target with up to 300% bonus damage
0002 Searing Slash Adds fire damage to attack
0003 Illusion Slash Attack target without them noticing
0004 Phoenix Slash Attack target with the powers of a Phoenix
0005 Fiery Arrow Imbues arrows with additional damage Fire damage
0006 Icy Arrow Imbues arrows with ice. Able to freeze or slow target
0007 Shot Array Fire multiple arrows, attack radius increases with each level
0008 Fissure Shot Damage all targets surrounding target within radius
0009 Flare Shield Fire protective flares to reduce damage done to ship body
0010 Great Cannonball Fragments will deal damage to targets within range
0011 Cannon Barrage Release a volley of cannon attacks at target
0012 Sound Burst Release a force that damages target from a distance
0013 Summon Summons a monster to fight for you
0014 Disguise Morph into summoned monster
0015 Water Surge Attacks target with a gush of water
0016 Cyclone Create whirlpools that damages any targets within contact
0017 Sacred Ray Heals a small amount of HP and damages undead
0018 Guardian Angel Summon an angel to fight for you. Appearances change with skill level
0019 Benediction Bring an area of friendly targets out of abnormal status
0020 Invoke Recover TP of friendly targets within a certain area while stationary
0022 Fallen Pharaoh Morph into a Mummy Pharaoh
0023 Venom Cloud Create an area of poisonous cloud that slows and poisons
0024 Fireshield Create a burning shield that damages targets within contact
0025 Bare Hand 0
0026 Dual Implosion 0
0027 Cannon Shot Fragments will deal damage to targets within range
0028 Sword 0
0029 Greatsword 0
0030 Bow 0
0031 Firegun 0
0032 Blade 0
0033 Boxing Gloves 0
0034 Dagger 0
0035 Gold Pouch 0
0036 Short Staff 0
0037 Hammer 0
0038 Dual Weapon 0
0039 Login 0
0040 Set Sail 0
0042 Ink Blast 0
0043 Tempest Slash 0
0044 Gun Research 0
0045 Angel Blessing 0
0046 Parlay Hit 0
0047 Phantom Slash 0
0048 Cure 0
0049 Blind 0
0050 Protective Shield 0
0051 Frost Shield 0
0052 Refined Gunpowder 0
0053 Attack Weakness 0
0054 Angel Blessing 0
0055 Benediction 0
0056 Inferno Wings 0
0057 Holy Beam 0
0058 Holy Heraldry 0
0059 Ray of Luck 0
0060 Traversing 0
0061 Inferno Blast 0
0062 Sword Mastery Atk increases when sword is equipped.
0063 Will of Steel Increase Defense
0064 Strengthen Increase max HP
0065 Deftness Increase Dodge rate
0066 Concentration Increase hit rate
0067 Greatsword Mastery Increase 2-Handed sword damage
0068 Blood Bull Increase Max HP and Defense when equipped with tattoo.
0069 Evasion 0
0070 Blood Frenzy Increase atk speed when equipped with dual swords.
0071 Beast Strength 0
0072 Recuperate 0
0073 Shield Mastery 0
0074 Range Mastery increasse atk of long-ranged weapons
0075 Windwalk Increase speed
0076 Ranger 0
0077 Hunter Disguise 0
0078 Firegun Mastery Increase the atk of guns
0079 Vigor Increases Max SP
0080 Divine Grace Increases SP recovery rate.
0081 Illusion Slash Generate a air wave and damages target at a distance
0082 Mighty Strike Damage nearby target with full force
0083 Primal Rage Damages nearby target after equipping tattoo
0084 Berserk Put character into Berserk mode to increase attack speed
0085 Backstab 0
0086 Shadow Slash Wield two swords continuously, attacking and stun nearby target.
0087 Poison Dart Shoots a dart which poisons target.
0088 Numb 0
0089 Eagle's Eye Increase character Hit Rate
0090 Dual Shot Damage target twice continuously
0091 Hunter Strike 0
0092 Astro Strike 0
0093 Frozen Arrow Shoots a chill arrow at far-away target, damaging and slowing down its s
0094 Cripple Decreases movement speed and dodge rate of target
0095 Enfeeble Decreases target's attack power and disable target from using skill
0096 Headshot Precise shot, causes direct damage to the head area. Ignore Defense and
0097 Heal Restores target's HP and gains some EXP
0098 Recover Use medical means to remove target's abnormal status.
0099 Spiritual Bolt Use spiritual powers to damage target, ignoring defense
0100 Spiritual Fire Increases Atk
0101 Tempest Boost Increase atk spd
0102 Tornado Swirl Increases Critical Rate upon usage
0103 Angelic Shield Increases Defense after use
0104 Seal of Elder Prevent target from using skill.
0105 Shadow Insignia Prevent target from using normal atk.
0106 Energy Shield Activate to convert Damage taken into SP absorbed
0107 Howl Using war cry to damage surrounding targets
0108 Barbaric Crush 0
0109 Dual Sword Mastery Increases attack of dual wield weapons
0110 Shield of Thorns 0
0111 Parry 0
0112 Meteor Shower Rain arrows from the sky in an area, causing group damage
0113 Magma Bullet Ignite a wall of flames in an area. Burn and cause damage to targets.
0114 Dispersion Bullet 0
0115 Penetrating Bullet 0
0116 True Sight Detect hidden unit upon usage. All hidden unit in range will be uncovere
0117 Greater Heal 0
0118 Greater Recover 0
0119 Cursed Fire Decreases the Defense of multiple targets in an area.
0120 Counterguard 0
0121 Abyss Mire Decreases movement speed of hostile targets within a certain range upon
0122 Healing Spring Create an area that heals friendly targets continuously
0123 Stealth Become invisible to others
0124 Revival Revive dead character
0125 Totem's Worship 0
0126 Gunpowder Research 0
0127 Tiger Roar Decreases attack and movement speed of targets within range
0128 Saliva of Lizard 0
0129 Needle of Stramonium 0
0130 Stone of Treant 0
0131 Panda's Bamboo Shoot 0
0132 Bolt of Terra Elder 0
0133 Bolt of Naiad 0
0134 Oyster 0
0135 Bubble Clam 0
0136 Baby Icy Dragon 0
0137 Icy Dragoon 0
0138 Shadow Quiver 0
0139 Mist of Snow Lady 0
0140 Fireball of Chieftain 0
0141 Werewolf Quiver 0
0142 Fireball of Giant Slug 0
0143 Icecube of King Penguin 0
0144 Dart of Ninja Mole 0
0145 Heart of Mermaid 0
0146 Relic Protector 0
0147 Wave of King Tortoise 0
0148 Bubble of Water Dancer 0
0149 Mud of Mudman 0
0150 Hand of Stramonium 0
0151 Guardian Angel 0
0152 Soul of Goddess 0
0153 Mist of Snow Queen 0
0154 Lump of Mud King 0
0200 Woodcutting Equip an Axe to harvest wood
0201 Mining Equip a Pickaxe to mine ore
0202 Sit Rests your character to regain HP
0210 Diligence Increases SP recovery rate of character
0211 Current Increases sailing speed of ship
0212 Conch Armor Increases defense of ship
0213 Tornado Equip Wind Coral to twirl target up into the air
0214 Lightning Bolt Equip Thunder Coral to strike target with lightning
0215 Algae Entanglement Uses seaweed to bind and damage target
0216 Conch Ray Uses Strike Coral to damage targets in a straight line
0217 Tail Wind Uses Wind Coral to summon wind to boost sailing speed of ships in an are
0218 Whirlpool Creates a whirlpool to decrease movement speed of hostile ships within r
0219 Fog Uses Fog Coral to decrease attack of enemies within range
0220 Lightning Curtain Uses Thunder Coral to create a thunderstorm that damages targets in rang
0222 Break Armor Decreases defense of target
0223 Rousing Increases attack speed of character
0224 Venom Arrow Shoots a dart which poisons target
0225 Harden Increases defense of character
0226 Cannon Mastery Increases attack of ship
0227 Toughen Wood Increases defense of ship
0228 Sail Mastery Increases sailing speed of ship
0229 Reinforce Ship Increases durability of ship
0230 Oil Tank Upgrade Increases fuel capacity of ship
0231 Fishing Available if ship has fishing capabilities
0232 Salvage Available if ship has salvaging capabilities
0233 Bombardment Fragments will deal damage to targets within range
0234 Death Shriek Boss Skill
0235 Blood Fury Boss Skill
0236 Lair Boss Skill
0237 Earthquake Boss Skill
0238 Colossus Smash Boss Skill
0239 Kiss of Frost Boss Skill
0240 Tempest Blade Boss Skill
0241 Set Stall Please do not affect others while setting stall on the streets
0242 Taunt Lures a single target to attack over a duration
0243 Roar Lures multiple targets to attack over a duration
0244 Replicate 0
0245 Alga Ambush 0
0246 Jellyfish Electric Bolt 0
0247 Squid Whirlstrike 0
0248 Shark Attack 0
0249 Polliwog Self Explode 0
0250 Primal Skill 1 0
0251 Primal Rage 2 0
0252 Water Mine Explosion Damages targets within range
0253 Cannon Strike Fragments will deal damage to targets within range
0254 Repair Equips a Hammer to repair ship or machinery
0255 Crystalline Blessing Makes target immune to melee and skill attacks
0256 Intense Magic Increases magical damage of target
0257 Corpse Attack Increases magical damage of target
0258 Corpse Range Attack Increases magical damage of target
0259 Fox Taoist Sorcery Boss Skill
0260 Fox Spirit Sorcery Boss Skill
0261 Fascinate Boss Skill
0262 Fox Immortal Sorcery Boss Skill
0263 Fox Immortal Area Spell Boss Skill
0264 Ritual Boss Skill
0265 Sachem's Witchcraft Boss Skill
0266 Whirling Hook Boss Skill
0267 Dog Howl Decreases attack and movement speed of targets within range
0268 Corpse Venom Boss Skill
0269 Icy Dragon Strike Boss Skill
0270 Cyborg Blockade Monster Skill
0271 Crab Binding Monster Skill
0272 Curse of Kelpie Monster Skill
0273 Frost Breath Monster Skill
0274 Dance of Icy Dragon Monster Skill
0275 Black Dragon Terror Monster Skill
0276 Black Dragon Roar Monster Skill
0277 Black Dragon Flight Monster Skill
0278 Black Dragon Breath Monster Skill
0279 Resurrect Monster Skill
0280 Fairy body Character Skill
0281 Black Dragon Roar Monster Skill
0282 Black Dragon Lightning Bolt Monster Skill
0283 Black Dragon Illusion Slash Monster Skill
0284 Black Dragon Fireball Monster Skill
0285 Black Dragon Summon Monster Skill
0286 Deathsoul Magma Bullet Monster Skill
0287 Deathsoul Acceleration Monster Skill
0288 Firegun Attack Monster Skill
0289 Deathsoul Roquet Monster Skill
0290 Laser Beam Monster Skill
0291 Deathsoul Poison Dart Monster Skill
0292 Deathsoul Summon Monster Skill
0293 Ranged Blast Monster Skill
0294 Cloud Attack Monster Skill
0295 Encumbered Skeleton Monster Skill
0296 Mytho Teleportation Monster Skill
0297 Skeletar Shielding Monster Skill
0298 Evil Attack Monster Skill
0299 Deathsoul Slice Monster Skill
0301 Roar of Deathsoul Monster Skill
0302 Deathsoul Taunt Monster Skill
0303 Cursed Blood Monster Skill
0304 Moonlight Recovery Monster Skill
0305 Deathsoul Water Arrow Monster Skill
0306 Deathsoul Whirlpool Monster Skill
0307 Deathsoul Lightning Curtain Monster Skill
0308 Bomb Throwing Monster Skill
0309 Spiritual Dart Monster Skill
0310 Physical Dart Monster Skill
0311 Self Destruct Fairy skill
0312 Skill - Defecate Fairy skill
0313 Skill - Undergarment Fairy skill
0314 Skill - Garment Fairy skill
0315 Skill - Coin Shower Fairy skill
0316 Skill - Fool Fairy skill
0317 Skill - Snooty Fairy skill
0318 Skill - Dumb Fairy skill
0319 Skill - Dumb Fairy skill
0320 Shoe Barrage Monster Skill


Solo usen GM Comands :

&skill 281,10
 
Upvote 0
Initiate Mage
Joined
Dec 4, 2008
Messages
2
Reaction score
0
Dunno what u mean by I guess u mean this right ?

let me know if this is right
 
Upvote 0
Newbie Spellweaver
Joined
Mar 16, 2009
Messages
74
Reaction score
0
hot77 if you mean title, writing words on top client of tales of pirates, its this

press alt+p and write than press enter and wen finish press alt+p again to go back to chat.

but make sure you are a GM
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Mar 16, 2009
Messages
74
Reaction score
0
Not really. If yor are a GM in any server, you can use these commands.

But only GM's can use.
 
Upvote 0
Newbie Spellweaver
Joined
Mar 16, 2009
Messages
74
Reaction score
0
all the monster id's will be in Resource\CharacterInfo.txt
 
Upvote 0
Joined
Aug 7, 2010
Messages
1
Reaction score
0
thit are the most commands, i don't know more.





The Complete Guide:

addexp: addexp number ex: &addexp 1000000
addinventoryslots: &addkb number ex: &addkb 48
addmoney: &addmoney number ex: &addmoney 100000000
addsailexp: &addsailexp number ex: &addsailexp 100000000
call someone: &call <CharName> ex: &call Nekko
goto someone: &goto <CharName> ex:&goto Nekko
hide: &hide ex: &hide
move: &move (x,y),mapname ex: &move 200,200,garner
make item: &make itemnumber,quantity ex: &make 1,1

OK, now depending on what job you want:

&attr 4, X

replace X with:

1 - Swordsman
2 - Hunter
4 - Explorer
5 - Herbalist
8 - Cahmpion
9 - Crusader
12 - Sharpshooter
13 - Cleric
14 - Seal Master
16 - Voyager

Other useful values for &attr:

5-Reputation
6-Attribute Points
7-Skill Points
8-Gold
11-SLV
12-Life-Skill Level
13-Life-Skill Points
19-SEXP
50-STR
51-ACC
52-AGI
53-CON
54-SPR
69-Movement-Speed
Don't use values much higher than 2000!
96-Strenght
97-Agility
98-Accuracy
99-Constituction
100-Spirit
102-Attack Speed
104-Minimal Attack
105-Maximal Attack
106-Defence
107-Max HP
Sets your max. number of HP
108-Max SP
109-Dodge
110-Hit-Rate

for example: &attr 69, 2000 ----> and you'll be FAST

After that, you can use &make to create items:

&make ID,number of items

where ID can be one of the IDs you can find in the attached file (items.txt).

You can then use

&summon X

to summon the monster with ID X. Again: IDs can be found in the attached file (monsters.txt)

Other GM-commands:

&hide
&unhide

(hide yourself)

&move XP,YP

(move to given coords)

&notice TEXT

(display TEXT in the sys-window)

&kick CHARNAME

(kicks CHARNAME)

Pet lvling command:

&itemattr 2,1,26,amount of stats you want
26-Strength
27-Agility
28-Accuracy
29-Constitution
30-Spirit

Stat Points: &attr stat number, amount ex: &attr 50,100
Stat Numbers:
50-Str
51-Agi
52-Acc
53-Con
54-Spr

_______________________________

1 -> Short Sword
2 -> Long Sword
3 -> Fencing Sword
4 -> Serpentine Sword
5 -> Dazzling Sword
6 -> Wyrm Sword
7 -> Sacro Sword
8 -> Newbie Knife
9 -> Newbie Sword
10 -> Short Metal Sword
11 -> Steel Sword
12 -> Striking Sword
13 -> Two Handed Sword
14 -> Warrior Sword
15 -> Criss Sword
16 -> Paladin Sword
17 -> Bone Sword
18 -> Thunder Blade
19 -> Onyx Sword
20 -> Rebel Sword
21 -> Charging Sword
22 -> Crescent Sword
23 -> Delusion Sword
24 -> Chest of Cabal
25 -> Short Bow
26 -> Long Bow
27 -> Tribal Bow
28 -> Meteor Bow
29 -> Recca Bow
30 -> Bow of Dawn
31 -> Bow of Dusk
32 -> Hunter Bow
33 -> Battle Bow
34 -> Marksman Bow
37 -> Firegun
38 -> Fire-Rifle
39 -> Exquisite Pistol
40 -> Exquisite Rifle
41 -> Laser Gun
42 -> Venom Gun
43 -> Firegun of Sol
44 -> Token Pistol
45 -> Gattling Firegun
46 -> Cabal Voucher
49 -> Falchion
50 -> Long Falchion
51 -> Katana
52 -> Tulwar
53 -> Crystal Falchion
54 -> Phantom Falchion
55 -> Nefarious Falchion
61 -> Plaster Gloves
62 -> Brawler Gloves
63 -> Master Gloves
64 -> Jagged Blade
65 -> Cosmo Blade
66 -> Tiger Gloves
67 -> Hands of Death
73 -> Dagger
74 -> Kris
75 -> Trident
76 -> Moon Kris
77 -> Hyena Dagger
78 -> Dagger of Hydra
79 -> Trident of Poseidon
80 -> Sharp Dagger
81 -> Swift Kris
82 -> Pointed Kris
83 -> Crystalline Kris
84 -> Vampiric Kris
88 -> Black Market Equipment
89 -> Black Market Equipment
97 -> Mystic Branch
98 -> Wooden Stick
99 -> Magical Staff
100 -> Grace Wand
101 -> Beastly Wand
102 -> Thundorian Staff
103 -> Staff of Life
104 -> Wooden Stave
105 -> Hand Stave
106 -> Blessing Stave
107 -> Battle Stave
108 -> Lotus Staff
109 -> Staff of Wonders
110 -> Revered Staff
111 -> Demon Bane Rod
112 -> Crimson Rod
113 -> Draco
114 -> Drakan
115 -> Crag
116 -> Colossus
117 -> Rainbow
118 -> Twilight
119 -> Meteor Pearl
120 -> Blitz Thunderbolt
121 -> Husk Shield
122 -> Steel Shield
123 -> Tower Shield
124 -> Feather Shield
125 -> Crevice Shield
126 -> Blessed Shield
127 -> Wyrm Shield
128 -> Rebirth Wings
129 -> Rebirth Wings
130 -> Rebirth Wings
131 -> Rebirth Wings
132 -> Rebirth Wings
133 -> Rebirth Wings
134 -> Rebirth Wings
135 -> Arrow 01
136 -> Rebirth Wings
137 -> Rebirth Wings
138 -> Rebirth Wings
139 -> Rebirth Wings
140 -> Rebirth Wings
141 -> Ebony Dragon Wings
142 -> Rainbow Wings
149 -> Gunpowder 01
150 -> Visceral
151 -> Riven Soul
152 -> Robbery Permit
153 -> Torn Navigation Map
154 -> Northern Sailor Emblem
155 -> Northern Sailor Bandana
156 -> Northern Fighter Emblem
157 -> Northern Fighter Dagger
158 -> Northern Militia Emblem
159 -> Northern Militia Sword
160 -> Coarse Fox Skin
161 -> Exquisite Fox Skin
163 -> Totem of Evil
164 -> Night Eye
165 -> Fox Tail
166 -> Quality Lizardman Belt
167 -> Hugh Lizard Tooth
168 -> Tribal Warrior Mask
169 -> Tribal Chieftain Mask
170 -> Timeless Machine Core
172 -> Mahjong Tile 'Pong'
173 -> Mahjong Tile 'Jiang'
174 -> Mahjong Tile 'Hu'
175 -> Immortal Fox Skin
176 -> Torn Corpse Wrap
177 -> Damaged Corpse Wrap
178 -> Intact Corpse Wrap
179 -> Timeless Machine
180 -> Soul of Black Dragon

182 -> Dragon Key
183 -> Fairy of Life
184 -> Fairy of Darkness
185 -> Fairy of Virtue
186 -> Fairy of Kudos
187 -> Fairy of Faith
188 -> Fairy of Valor
189 -> Fairy of Hope
190 -> Fairy of Woe
191 -> Fairy of Love
192 -> Chest of Kylin
193 -> Map Switching 1
194 -> G
195 -> Tax
196 -> Axe
197 -> Pickaxe
198 -> Repair Hammer
199 -> Fairy of Heart
200 -> Left Plaster Glove
201 -> Left Brawler Glove
202 -> Left Master Glove
203 -> Left Jagged Blade
204 -> Left Cosmo Blade
205 -> Left Tiger Glove
206 -> Left Hand of Death
207 -> Gold Axe
208 -> Gold Pickaxe
209 -> Relic Armor Box (Night)
210 -> Relic Armor Box (Hercules)
211 -> Relic Armor Box (Progeny)
212 -> Relic Armor Box (Wise/Panda)
213 -> Relic Armor Box (Fairy/Gold Fish)
214 -> Relic Armor Box (Tidal/Dragon)
215 -> Relic Weapon Box (Wonders)
216 -> Relic Weapon Box (Demon Bane)
217 -> Relic Weapon Box (Draco)
218 -> Relic Weapon Box (Crag)
219 -> Relic Weapon Box (Rainbow)
220 -> Relic Weapon Box (Meteor)
221 -> Relic Weapon Box (Visceral)
222 -> Snow Dragon Fruit
223 -> Icespire Plum
224 -> Zephyr Fish Floss
225 -> Argent Mango
226 -> Shaitan Biscuit
227 -> Fairy Ration
228 -> Raging Bull Tattoo
229 -> Savage Bull Tattoo
230 -> Primal Tattoo
231 -> Fairy of Luck
232 -> Fairy of Strength
233 -> Fairy of Constitution
234 -> Fairy of Spirit
235 -> Fairy of Accuracy
236 -> Fairy of Agility
237 -> Fairy of Evil
238 -> Open Sesame
239 -> Novice Fairy Possession
240 -> Reincarnation Pagoda
241 -> Level 65 Boss Equipment Box
243 -> Novice Protection
244 -> Standard Protection
245 -> Expert Protection
246 -> Novice Berserk
247 -> Standard Berserk
248 -> Expert Berserk
249 -> Novice Magic
250 -> Standard Magic
251 -> Expert Magic
252 -> Novice Recover
253 -> Standard Recover
254 -> Expert Recover
255 -> Smile 1
256 -> Stare 1
257 -> Grimace 1
258 -> Sad 1
259 -> Novice Meditation
260 -> Standard Meditation
261 -> Expert Meditation
262 -> Fairy Box
263 -> Dumpling
264 -> Festive Wine
265 -> Ether Clover
266 -> Black Dragon Altar
267 -> Power of Flame
268 -> Power of Wind
269 -> Power of Thunder
270 -> Power of Frost
271 -> Angelic Dice
272 -> Grand Prize
273 -> First Prize
274 -> Second Prize
275 -> Third Prize
276 -> Great Snow Dragon Fruit
277 -> Great Icespire Plum
278 -> Great Zephyr Fish Floss
279 -> Great Argent Mango
280 -> Great Shaitan Biscuit
281 -> Final Perseverance
282 -> Bandit Scoop
283 -> Hunter's Strength
284 -> Followers Loop
285 -> Spirit Loop
286 -> Ancient Tree Tuber
287 -> May Breeze
288 -> Fairy's Adulation
289 -> Newbie Vest
290 -> Husk Armor
291 -> Thick Armor
292 -> Leather Armor
293 -> Rhino Hide Armor
294 -> Tiger Hide Armor
295 -> Breast Plate
296 -> Soft Leather Armor
297 -> Heavy Leather Armor
298 -> Strong Leather Armor
299 -> Mithril Platemail
300 -> Chain Mail
301 -> Strong Platemail
302 -> Light Platemail
303 -> Silver Platemail
304 -> Ceremonial Platemail
305 -> Coarse Vest
306 -> Canvas Vest
307 -> Exquisite Vest
308 -> Leather Vest
309 -> Warrior Frock
310 -> Feather Vest
311 -> Safari Vest
312 -> Emerald Vest
313 -> Hunter Vest
314 -> Slick Vest
315 -> Peacock Vest
316 -> Ringdove Vest
317 -> Raptor Vest
318 -> Nightmare Vest
319 -> Monster Summoning Scoll
320 -> Seaman Vest
321 -> Saint Loop
322 -> Lv 70 Seal Master Chest of Magenta
323 -> Shark Hide Armor
324 -> Seal of Strength
325 -> Sailor Vest
326 -> Navy Vest
327 -> Spectral Wolf Button
328 -> Ring of Dragon Wing
329 -> Unicorn's Blessing
330 -> Angel's Grief
331 -> Captain's Jacket
332 -> Ticket to Spring
333 -> Unique Gem Voucher
334 -> Hammer of Thunder
335 -> Cloth Shirt
336 -> Tough Vest
337 -> Explorer Vest
338 -> Adventure Vest
339 -> Helmsman Vest
340 -> Oarsman Vest
341 -> Deckman Vest
342 -> Mastman Vest
343 -> Hurricane Vest
344 -> Whirlpool Vest
345 -> Wind Vest
346 -> Eye of Lightning
347 -> Wings of Light
348 -> Morning Bell
349 -> Nature's Whisper
350 -> Crabby Costume
351 -> Rooroo Costume
352 -> Playful Racoon Costume
353 -> Duckling Costume
354 -> Big Crab Costume
355 -> Lobster Costume
356 -> Ducky Costume
357 -> Prawn Costume
358 -> Pincer Costume
359 -> Sheepy Costume
360 -> Meowy Costume
361 -> Owl Costume
362 -> Hopperoo Costume
363 -> Clever Otter Costume
364 -> Lucky Otter Costume
365 -> Medic Robe
366 -> Foster Robe
367 -> Travel Robe
368 -> Nurse Robe
369 -> Garcon Robe
370 -> Holy Robe
371 -> Follower Robe
372 -> Attendant Robe
373 -> Scholar Robe
374 -> Emergency Robe
375 -> Passage Robe
376 -> Healer Robe
377 -> Protector Robe
378 -> Piety Robe
379 -> Blessed Robe
380 -> Mousey Costume
381 -> Kitty Costume
382 -> Loopy Bunny Costume
383 -> Goaty Costume
384 -> Deer Costume
385 -> Otter Costume
386 -> Racoon Costume
387 -> Peter's Call
388 -> Happy Bunny Costume
389 -> Night Owl Costume
390 -> Kangaroo Costume
391 -> Joyful Bunny Costume
392 -> Bunny Baby Costume
393 -> Lucky Bunny Costume
394 -> Heavenly Vest
395 -> Armor of Night
396 -> Armor of Secrets
397 -> Armor of Hercules
398 -> Armor of Olympus
399 -> Vest of Marksmanship
400 -> Vest of Apollo
401 -> Robe of the Wise
402 -> Robe of the Sage
403 -> Happy Panda Costume
404 -> Mystic Panda Costume
405 -> Fairy Robe
406 -> Faerie Robe
407 -> Gold Fish Costume
408 -> Fish Fairy Costume
409 -> Tidal Robe
410 -> Bear Costume
411 -> Tsunami Robe
412 -> Dragon Costume
413 -> Dragon Lord Costume
414 -> Kiss of Nic
415 -> Ray's Fury
416 -> Daniel's Regret
417 -> Consecration of Priestess
418 -> Pendant of Sunstone
419 -> Platinum Necklace
420 -> Nebulous Ray
421 -> Messenger of the Wind
422 -> Egg of Life
423 -> Egg of Darkness
424 -> Egg of Virtue
425 -> Egg of Kudos
426 -> Egg of Faith
427 -> Egg of Valor
428 -> Egg of Hope
429 -> Egg of Woe
430 -> Egg of Love
431 -> Egg of Heart
432 -> Mystery Piece 1
433 -> Mystery Piece 2
434 -> Mystery Piece 3
435 -> Mystery Piece 4
436 -> Newbie Chest
437 -> Winged Chest
438 -> Flowery Chest
439 -> Researching Chest
440 -> Smelting Chest
441 -> Exploring Chest
442 -> Guiding Chest
443 -> Advancement Chest
444 -> Tier 1 Promotion Manual
445 -> Ticket Manual
446 -> Emoticon Manual
447 -> Heaven's Berry Manual
448 -> Forging Manual
449 -> Forsaken City Manual
450 -> Dark Swamp Manual
451 -> Tier 2 Promotion Manual
452 -> May Day Card
453 -> Fusion Scroll
454 -> Fusion Catalyst
455 -> Strengthening Scroll
456 -> Strengthening Crystal
457 -> Emerald Parrot
458 -> Crimson Parrot
459 -> Tempest Chest
460 -> Champion's Chest
461 -> Crystal Naiad
462 -> Nimble Venturer
463 -> Labyrinth Wanderer
464 -> Transparent Clothes
465 -> Newbie Gloves
466 -> Husk Gloves
467 -> Thick Gloves
468 -> Leather Gloves
469 -> Rhino Hide Gloves
470 -> Tiger Hide Gloves
471 -> Gauntlets
472 -> Soft Leather Gloves
473 -> Heavy Leather Gloves
474 -> Strong Leather Gloves
475 -> Mithril Gauntlets
476 -> Chain Gauntlets
477 -> Strong Gauntlets
478 -> Light Gauntlets
479 -> Silver Gauntlets
480 -> Ceremonial Gauntlets
481 -> Coarse Gloves
482 -> Canvas Gloves
483 -> Exquisite Gloves
484 -> Leather Gloves
485 -> Warrior Gloves
486 -> Feather Gloves
487 -> Safari Gloves
488 -> Emerald Gloves
489 -> Hunter Gloves
490 -> Slick Gloves
491 -> Peacock Gloves
492 -> Ringdove Gloves
493 -> Raptor Gloves
494 -> Nightmare Gloves
495 -> Soul Generator
496 -> Seaman Gloves
497 -> Blessed Davao
498 -> Novice Thunder Coral
499 -> Shark Hide Gloves
501 -> Sailor Gloves
502 -> Navy Gloves
503 -> Common Thunder Coral
504 -> Standard Thunder Coral
505 -> Expert Thunder Coral
506 -> Thunder Coral of Thor
507 -> Captain's Gloves
508 -> Novice Wind Coral
509 -> Common Wind Coral
510 -> Standard Wind Coral
511 -> Cloth Gloves
512 -> Tough Gloves
513 -> Explorer Gloves
514 -> Adventure Gloves
515 -> Helmsman Gloves
516 -> Oarsman Gloves
517 -> Deckman Gloves
518 -> Mastman Gloves
519 -> Hurricane Gloves
520 -> Whirlpool Gloves
521 -> Wind Gloves
522 -> Expert Wind Coral
523 -> Wind Coral of Fujin
524 -> Meditating Monk
525 -> Lv 70 Champion Chest of Magenta
526 -> Crabby Gloves
527 -> Rooroo Muffs
528 -> Playful Racoon Muffs
529 -> Duckling Muffs
530 -> Big Crab Muffs
531 -> Lobster Muffs
532 -> Ducky Muffs
533 -> Prawn Muffs
534 -> Pincer Muffs
535 -> Sheepy Muffs
536 -> Meowy Muffs
537 -> Owl Muffs
538 -> Hopperoo Muffs
539 -> Clever Otter Muffs
540 -> Lucky Otter Muffs
541 -> Medic Gloves
542 -> Foster Gloves
543 -> Travel Gloves
544 -> Nurse Gloves
545 -> Garcon Gloves
546 -> Holy Gloves
547 -> Follower Gloves
548 -> Attendant Gloves
549 -> Scholar Gloves
550 -> Emergency Gloves
551 -> Passage Gloves
552 -> Healer Gloves
553 -> Protector Gloves
554 -> Piety Gloves
555 -> Blessed Gloves
556 -> Mousey Muffs
557 -> Kitty Muffs
558 -> Loopy Bunny Muffs
559 -> Goaty Muffs
560 -> Deer Muffs
561 -> Otter Muffs
562 -> Racoon Muffs
563 -> Pass to Summer
564 -> Happy Bunny Muffs
565 -> Night Owl Muffs
566 -> Kangaroo Muffs
567 -> Joyful Bunny Muffs
568 -> Bunny Baby Muffs
569 -> Lucky Bunny Muffs
570 -> Heavenly Gloves
571 -> Egg of Luck
572 -> Egg of Constitution
573 -> Egg of Strength
574 -> Egg of Spirit
575 -> Egg of Accuracy
576 -> Egg of Agility
577 -> Egg of Evil
578 -> Fruit of Growth
580 -> Unique Ring Voucher
581 -> Unique Necklace Voucher
582 -> Unique Coral Voucher
583 -> Pass to Autumn
584 -> Super Lollipop
585 -> Huge Chocolate
586 -> Bear Gloves
587 -> Gloves of Night
588 -> Gloves of Secrets
589 -> Gloves of Marksmanship
590 -> Gloves of Apollo
591 -> Gloves of the Wise
592 -> Gloves of the Sage
593 -> Happy Panda Gloves
594 -> Mystic Panda Gloves
595 -> Fairy Gloves
596 -> Faerie Gloves
597 -> Gold Fish Muffs
598 -> Fish Fairy Muffs
599 -> Tidal Gloves
600 -> Tsunami Gloves
601 -> Dragon Muffs
602 -> Dragon Lord Muffs
603 -> Gauntlets of Hercules
604 -> Gauntlets of Olympus
605 -> Movie Ticket Chip
606 -> Ice Cube
607 -> Birthday Candle
608 -> Standard Fairy Possession
609 -> Expert Fairy Possession
610 -> Novice Self Destruct
611 -> Standard Self Destruct
612 -> Expert Self Destruct
613 -> Lv 70 Crusader Chest of Magenta
614 -> Lv 70 Sharpshooter Chest of Magenta
615 -> Lv 70 Voyager Chest of Magenta
616 -> Lv 70 Cleric Chest of Magenta
617 -> Lv 50 Crusader Chest
618 -> Lv 60 Crusader Chest
619 -> Lv 70 Crusader Chest
620 -> Lv 50 Champion Chest
621 -> Lv 60 Champion Chest
622 -> Lv 70 Champion Chest
623 -> Lv 50 Cleric Chest
624 -> Lv 60 Cleric Chest
625 -> Lv 70 Cleric Chest
626 -> Lv 50 Ami Cleric Chest
627 -> Lv 60 Ami Cleric Chest
628 -> Lv 70 Ami Cleric Chest
629 -> Lv 50 Ami Seal Master Chest
630 -> Lv 60 Ami Seal Master Chest
631 -> Lv 70 Ami Seal Master Chest
632 -> Lv 50 Ami Voyager Chest
633 -> Lv 60 Ami Voyager Chest
634 -> Lv 70 Ami Voyager Chest
635 -> Lv 1 Strike Coral
636 -> Lv 2 Strike Coral
637 -> Lv 3 Strike Coral
638 -> Lv 4 Strike Coral
639 -> Lv 5 Strike Coral
640 -> Transparent Gloves
641 -> Newbie Shoes
642 -> Husk Boots
643 -> Thick Boots
644 -> Leather Boots
645 -> Rhino Hide Boots
646 -> Tiger Hide Boots
647 -> Greaves
648 -> Soft Leather Boots
649 -> Heavy Leather Boots
650 -> Strong Leather Boots
651 -> Mithril Greaves
652 -> Chain Greaves
653 -> Strong Greaves
654 -> Light Greaves
655 -> Silver Greaves
656 -> Ceremonial Greaves
657 -> Coarse Boots
658 -> Canvas Boots
659 -> Exquisite Boots
660 -> Leather Boots
661 -> Warrior Boots
662 -> Feather Boots
663 -> Safari Boots
664 -> Emerald Boots
665 -> Hunter Boots
666 -> Slick Boots
667 -> Peacock Boots
668 -> Ringdove Boots
669 -> Raptor Boots
670 -> Nightmare Boots
671 -> Lv 50 Sharpshooter Chest
672 -> Seaman Boots
673 -> Lv 60 Sharpshooter Chest
674 -> Lv 70 Sharpshooter Chest
675 -> Shark Hide Boots
676 -> Lv 50 Voyager Chest
677 -> Sailor Boots
678 -> Navy Boots
679 -> Egg of Mordo
680 -> Mordo
681 -> Mordo Junior
682 -> Caribbean Treasure Map
683 -> Captain's Boots
684 -> New Sheepskin Scroll
685 -> Emblem of Richie
686 -> Lv 60 Voyager Chest
687 -> Cloth Boots
688 -> Tough Boots
689 -> Explorer Boots
690 -> Adventure Boots
691 -> Helmsman Boots
692 -> Oarsman Boots
693 -> Deckman Boots
694 -> Mastman Boots
695 -> Hurricane Boots
696 -> Whirlpool Boots
697 -> Wind Boots
698 -> Lv 70 Voyager Chest
699 -> Lv 50 Seal Master Chest
700 -> Lv 60 Seal Master Chest
701 -> Lv 70 Seal Master Chest
702 -> Crabby Shoes
703 -> Rooroo Shoes
704 -> Playful Racoon Shoes
705 -> Duckling Shoes
706 -> Big Crab Shoes
707 -> Lobster Shoes
708 -> Ducky Shoes
709 -> Prawn Shoes
710 -> Pincer Shoes
711 -> Sheepy Shoes
712 -> Meowy Shoes
713 -> Owl Shoes
714 -> Hopperoo Shoes
715 -> Clever Otter Shoes
716 -> Lucky Otter Shoes
717 -> Medic Boots
718 -> Foster Boots
719 -> Travel Boots
720 -> Nurse Boots
721 -> Garcon Boots
722 -> Holy Boots
723 -> Follower Boots
724 -> Attendant Boots
725 -> Scholar Boots
726 -> Emergency Boots
727 -> Passage Boots
728 -> Healer Boots
729 -> Protector Boots
730 -> Piety Boots
731 -> Blessed Boots
732 -> Mousey Shoes
733 -> Kitty Shoes
734 -> Loopy Bunny Shoes
735 -> Goaty Shoes
736 -> Deer Shoes
737 -> Otter Shoes
738 -> Racoon Shoes
739 -> Onslaught
740 -> Happy Bunny Shoes
741 -> Night Owl Shoes
742 -> Kangaroo Shoes
743 -> Joyful Bunny Shoes
744 -> Bunny Baby Shoes
745 -> Lucky Bunny Shoes
746 -> Heavenly Shoes
747 -> Boots of Night
748 -> Boots of Secrets
749 -> Boots of Marksmanship
750 -> Boots of Apollo
751 -> Boots of the Wise
752 -> Boots of the Sage
753 -> Happy Panda Shoes
754 -> Mystic Panda Shoes
755 -> Fairy Shoes
756 -> Faerie Shoes
757 -> Gold Fish Shoes
758 -> Fish Fairy Shoes
759 -> Tidal Shoes
760 -> Tsunami Shoes
761 -> Dragon Shoes
762 -> Bear Shoes
763 -> Armor of Revenant
764 -> Tattoo of the Cursed Warrior
765 -> Tattoo of Evanescence
766 -> Tattoo of Enigma
767 -> Platemail of the Cursed Soul
768 -> Armor of Evanescence
769 -> Armor of Enigma
770 -> Sword of Grief
771 -> Greatsword of Incantation
772 -> Roar of Evanescence
773 -> Judgment of Enigma
774 -> Blade of Incantation
775 -> Dance of Evanescence
776 -> Blade of Enigma
777 -> Robe of Death
778 -> Corset of Incantation
779 -> Coat of Evanescence
780 -> Mantle of Enigma
781 -> Touch of Death
782 -> Kiss of the Cursed
783 -> Bellow of Evanescence
784 -> Rifle of Enigma
785 -> Staff of the Avenger
786 -> Staff of Incantation
787 -> Staff of Evanescence
788 -> Staff of Enigma
789 -> Robe of the Venom Witch
790 -> Coat of Invocation
791 -> Robe of the Arcane
792 -> Robe of Enigma
793 -> Staff of Abraxas
794 -> Staff of Mirage
795 -> Staff of the Sphinx
796 -> Robe of Abraxas
797 -> Robe of Malediction
798 -> Robe of the Sphinx
799 -> Tooth of Specter
800 -> Tooth of the Cursed
801 -> Tooth of Evanescence
802 -> Kris of the Sphinx
803 -> Mantle of the Naga
804 -> Mantle of the Cursed Flame
805 -> Cloak of Evanescence
806 -> Mantle of the Sphinx
807 -> Gauntlets of Evanescence
808 -> Greaves of Evanescence
809 -> Gloves of Evanescence
810 -> Shoes of Evanescence
811 -> Gloves of Malediction
812 -> Gloves of the Arcane
813 -> Boots of Malediction
814 -> Boots of the of the Arcane
815 -> Heavy Gloves of Evanescence
816 -> Transparent Shoes
817 -> Lv 1 Wind Coral
818 -> Lv 2 Wind Coral
819 -> Lv 3 Wind Coral
820 -> Lv 4 Wind Coral
821 -> Lv 5 Wind Coral
822 -> Medal of Honor
823 -> Medal of Wealth
824 -> Dragon Lord Shoes
825 -> Kylin Armor
826 -> Kylin Gloves
827 -> Kylin Boots
828 -> Kylin Cap
829 -> Greaves of Hercules
830 -> Greaves of Olympus
831 -> Lance Kylin Armor
832 -> Lance Kylin Gloves
833 -> Lance Kylin Boots
834 -> Carsise Kylin Armor
835 -> Carsise Kylin Gloves
836 -> Carsise Kylin Boots
837 -> Phyllis Kylin Armor
838 -> Phyllis Kylin Gloves
839 -> Phyllis Kylin Boots
840 -> Ami Kylin Armor
841 -> Ami Kylin Gloves
842 -> Ami Kylin Boots
843 -> Ami Kylin Cap
844 -> Exorcism Bell
845 -> Black Dragon Torso
846 -> Black Dragon Claw
847 -> Black Dragon Wing
848 -> Black Dragon Helm
849 -> Party EXP Fruit
850 -> Weightless Potion
851 -> Battle Array
852 -> Full Body Armor
853 -> Happy Holiday Magazine
854 -> Million Dollar Note
855 -> Fairy Coin
856 -> Fiery Gem Voucher
857 -> Furious Gem Voucher
858 -> Explosive Gem Voucher
859 -> Lustrious Gem Voucher
860 -> Gem of the Wind
861 -> Gem of Striking
862 -> Gem of Colossus
863 -> Gem of Rage
864 -> Eye of Black Dragon
865 -> Soul of Black Dragon
866 -> Heart of Black Dragon
867 -> Lv 1 Thunder Coral
868 -> Lv 2 Thunder Coral
869 -> Lv 3 Thunder Coral
870 -> Lv 4 Thunder Coral
871 -> Lv 5 Thunder Coral
872 -> Lv 1 Fog Coral
873 -> Lv 2 Fog Coral
874 -> Lv 3 Fog Coral
875 -> Lv 4 Fog Coral
876 -> Lv 5 Fog Coral
877 -> Boots of Evanescence
878 -> Fiery Gem
879 -> Furious Gem
880 -> Explosive Gem
881 -> Lustrious Gem
882 -> Glowing Gem
883 -> Shining Gem
884 -> Shadow Gem
885 -> Refining Gem
886 -> Gem Composition Scroll
887 -> Spirit Gem
888 -> Lv 1 Gem Voucher
889 -> Lv 2 Gem Voucher
890 -> Equipment Stabilizer
891 -> Equipment Catalyst
892 -> Weed Killer
893 -> Potion of Monkey
894 -> Potion of Eagle
895 -> Potion of Bull
896 -> Potion of Soul
897 -> Potion of Lion
898 -> Mystical Fruit
899 -> Book of Strength Reset
900 -> Book of Consitution Reset
901 -> Book of Agility Reset
902 -> Book of Accuracy Reset
903 -> Book of Spirit Reset
904 -> Vampiric Wings
905 -> Dragon Wings
906 -> Devil Wings
907 -> Emerald Demon
908 -> Silver Dolphin
909 -> Great White Shark
910 -> Egg of Mordo Junior
911 -> Spirit Gem Voucher
912 -> Torrent
913 -> Goddess
914 -> Glowing Gem Voucher
915 -> Shining Gem Voucher
916 -> Shadow Gem Voucher
917 -> Swordfish
918 -> Gem of the Wind Voucher
919 -> Gem of Striking Voucher
920 -> Gem of Colossus Voucher
921 -> Gem of Rage Voucher
922 -> Ark
923 -> Attack Boat 1
924 -> Attack Boat 2
925 -> Defense Boat 1
926 -> Defense Boat 2
927 -> Speed Boat 1
928 -> Speed Boat 2
929 -> Concentration Solvent
930 -> Extraction Solvent
931 -> Lance Trendy Hairstyle Book
932 -> Carsise Trendy Hairstyle Book
933 -> Phyllis Trendy Hairstyle Book
934 -> Ami Trendy Hairstyle Book
935 -> Elven Wings
936 -> Butterfly Wings
937 -> Angelic Wings
938 -> Goddess's Favor
939 -> Lv 50 Crusader Chest of Magenta
940 -> Lv 50 Champion Chest of Magenta
941 -> Lv 50 Sharpshooter Chest of Magenta
942 -> Lv 50 Voyager Chest of Magenta
943 -> Lv 50 Cleric Chest of Magenta
944 -> Lv 50 Seal Master Chest of Magenta
945 -> Lv 60 Crusader Chest of Magenta
946 -> Lv 60 Champion Chest of Magenta
947 -> Lv 60 Sharpshooter Chest of Magenta
948 -> Sang Di Account Book
949 -> Herbal Pouch
950 -> Lv 60 Voyager Chest of Magenta
951 -> Lv 60 Cleric Chest of Magenta
952 -> Lv 60 Seal Master Chest of Magenta
953 -> Eye of the Black Dragon Gem Voucher
954 -> Soul of the Black Dragon Gem Voucher
955 -> Heart of Black Dragon Gem Voucher
956 -> Urgent Package
957 -> My rebirth history
958 -> Sealed information
959 -> Lucky card A
960 -> Lucky card B
961 -> Lucky Card C
962 -> Lucky Card D
963 -> Lucky Card E
964 -> Lucky Card F
965 -> Lucky Card G
966 -> Lucky Card H
967 -> Lucky Card I
968 -> Lucky Card J
969 -> Lucky card K
970 -> Lucky card L
971 -> Lucky card M
972 -> Lucky card N
973 -> Lucky card O
974 -> Lucky card P
975 -> Lucky Card Q
976 -> Lucky card R
977 -> Lucky card S
978 -> Lucky Card T
979 -> Lucky Card U
980 -> Lucky Card V
981 -> Lucky Card W
982 -> Lucky Card X
983 -> Lucky Card Y
984 -> Lucky Card Z
985 -> 35 Ultimate Chest
986 -> 45 Ultimate Chest
987 -> 55 Ultimate Chest
988 -> 65 Grand Chest
989 -> Emerald Demon Bow
990 -> Silver Dolphin Bow
991 -> White Shark Bow
992 -> Growth Fast Food
993 -> Super Booster
994 -> Torrent Bow
995 -> Goddess Bow
999 -> Swordfish Bow
1000 -> Blurry Blueprint
1001 -> Encrypted Blueprint
1002 -> Sealed Blueprint
1003 -> Invocation Blueprint
1004 -> Ark Bow
1005 -> Flower's Letter
1006 -> Loveless Tear
1007 -> Golden Jade Bottle
1008 -> Reverse Love Potion
1009 -> Heart of Innocence
1010 -> Withered Heart
1011 -> Grandiose Salute
1012 -> Gem of Soul
1013 -> Heart of Reborn
1014 -> Goddess Summon Scroll
1015 -> Mysterious Pet Egg
1016 -> Goddess's Pouch
1017 -> Chest of Ascaron
1018 -> Sewing Scroll
1019 -> Mini Black Dragon Bag
1020 -> Blacksmith Pliers
1021 -> Kara's Victory
1022 -> Rechargeable Battery
1023 -> Sewing Thread Ball
1024 -> Super Rechargeable Battery
1025 -> Mask of Zorro
1026 -> Argent Medical Report
1027 -> Blury Medical Report
1028 -> Morph Runestone
1029 -> Red High Heels
1030 -> Bloodied High Heels
1031 -> Saint of the Ring Emblem
1032 -> King of the Ring Emblem
1033 -> Star of Unity Chest
1034 -> Star of Unity
1035 -> Enchanting Card Chest
1036 -> Enchanting Goddess Card
1037 -> Skill - Defecate
1038 -> Skill - Undergarment
1039 -> Skill - Garment
1040 -> Bloodstone
1041 -> Invitation Letter
1042 -> Restoration Potion
1043 -> Memory Soup
1044 -> Letter of Merman Prince
1045 -> Moonstone
1046 -> Recommendation Letter
1047 -> Eyedrop
1048 -> Sunstone
1049 -> Enchanted Pouch
1050 -> Memory Capsule
1051 -> Evil Soul Necklace
1052 -> Sacred Soul Amulet
1053 -> Piety Treasure Map
1054 -> Lotus Clover
1055 -> Novice Pet Manufacturing
1056 -> Standard Pet Manufacturing
1057 -> Expert Pet Manufacturing
1058 -> Novice Pet Crafting
1059 -> Standard Pet Crafting
1060 -> Expert Pet Crafting
1061 -> Novice Pet Analyze
1062 -> Standard Pet Analyze
1063 -> Expert Pet Analyze
1064 -> Novice Pet Cooking
1065 -> Standard Pet Cooking
1066 -> Expert Pet Cooking
1067 -> Crystal Cauldron
1068 -> Black Hole Crystal
1069 -> Anti Matter Crystal
1070 -> Particle Crystal
1071 -> Demon Engine
1072 -> Silver Engine
1073 -> White Shark Engine
1074 -> Seed of Love
1076 -> Torrent Engine
1077 -> Goddess Engine
1078 -> Steam Bun
1079 -> Bun
1080 -> Biscuit
1081 -> Swordfish Engine
1082 -> Fried Dough
1083 -> Spring Roll
1084 -> Maiden Wine
1085 -> Scholar Wine
1086 -> Ark Engine
1087 -> Mao Wine
1088 -> Dukan Wine
1089 -> Ginseng Wine
1090 -> Tiger Bone Tonic
1091 -> Heart of Black Dragon
1092 -> Old Sheepskin Scroll
1093 -> Ancient Pirate Treasure Map
1094 -> Lucky Gift Parcel
1095 -> 99 Parcel
1096 -> Anniversary Chest
1097 -> Cake Sampling Voucher
1115 -> Grandiose Helm
1116 -> Grandiose Armor
1117 -> Grandiose Gauntlets
1118 -> Grandiose Boots
1119 -> Paradise Pouch
1120 -> Snowdoll Mask
1121 -> Pumpkin Mask
1122 -> Deathsoul Mask
1123 -> Chaos Manual
1124 -> Chaos Framestone
1125 -> Chaos Clawstone
1126 -> Chaos Pawstone
1127 -> Chaos Crownstone
1128 -> Mini Amplifier of Strive
1129 -> Skill - Coin Shower
1130 -> Skill - Fool
1131 -> Skill - Snooty
1132 -> Skill - Dumb
1133 -> Skill - Dumb
1134 -> Chaos Chest
1135 -> Grenade Lv1
1136 -> Flash Bomb Lv1
1137 -> Radiation Lv1
1138 -> Soul Detector Lv1
1139 -> Ship Accelerator Lv1
1140 -> Ship Atomizer Lv1
1141 -> Ship Penetrator Lv1
1142 -> Ship Impaler Lv1
1143 -> Ship Flamer Lv1
1144 -> Evil Generator Lv1
1145 -> Sand Bag Lv1
1146 -> Carrion Ball Lv1
1147 -> Noise Polluter Lv1
1148 -> Earthquake Generator Lv1
1149 -> Time Bomb Lv1
1150 -> Hull Repair Lv1
1151 -> Food Generation Lv1
1152 -> Carrion Bullet Lv1
1153 -> Demon Propeller 01
1154 -> Silver Propeller 01
1155 -> Silver Propeller 02
1156 -> Silver Propeller 03
1157 -> Silver Propeller 04
1158 -> White Shark Propeller 01
1159 -> White Shark Propeller 02
1160 -> Torrent Propeller 01
1161 -> Torrent Propeller 02
1162 -> Torrent Propeller 03
1163 -> Goddess Propeller 01
1164 -> Goddess Propeller 02
1165 -> Goddess Propeller 03
1166 -> Goddess Propeller 04
1167 -> Swordfish Propeller 01
1168 -> Swordfish Propeller 02
1169 -> Swordfish Propeller 03
1170 -> Swordfish Propeller 04
1171 -> Ark Propeller 01
1172 -> Ark Propeller 02
1173 -> Ark Propeller 03
1174 -> Ancient Merman Necklace
1175 -> Ancient Siren Ornaments
1176 -> Massive Speckled Fish Scale
1177 -> Strong Dolphin Tail
1178 -> Ancient Dark Blue Long Spear
1179 -> Great Shark Tooth
1180 -> Glaring Dolphin Tail
1181 -> Evil Spear
1182 -> Razor Sharp Shark Tooth
1183 -> Keen Shark Tooth
1184 -> Sakira Pirate Direction Chart
1185 -> Jack the Pirate's Direction Chart
1186 -> Northern Pirate Direction Chart
1187 -> Beardy Pirate Direction Chart
1188 -> Fishy Smelling Squid Meat
1189 -> Dark Black Squid Meat
1190 -> Old Sakura Pirate Sail
1191 -> Rusty Sakura Pirate Cannon
1192 -> Thorny Rotten Water Shrub
1193 -> White Sea Jelly Tentacle
1194 -> Stretchy Fish Meat
1195 -> Fatty Squid Meat
1196 -> Arabic Pearl Fragment
1197 -> Electrifying Sea Jelly Tentacle
1198 -> Devilish Polliwog Tail
1199 -> Defiled Merman Scale
1200 -> Tempest Sea Jelly Tentacle
1201 -> Mysterious Topaz Fragment
1202 -> Long Fish Bone
1203 -> Rigid Polliwog Tail
1204 -> Glimmering Scale
1205 -> Mysterious Amethyst Fragment
1206 -> Siren Arrow Pouch
1207 -> Cracked Merman Card
1208 -> Cracked Siren Card
1209 -> Salted Octopus Meat
1210 -> Old Jack the Pirate Sail
1211 -> Rusty Jack the Pirate Cannon
1212 -> Thorny Wild Water Shrub
1213 -> Bloody Sea Jelly Tentacle
1214 -> Black Fish Meat
1215 -> Shadow Squid Meat
1216 -> Devilish Arabic Pearl Fragment
1217 -> High Voltage Tentacle
1218 -> Gigantic Polliwog Tail
1219 -> Intact Merman Scale
1220 -> Hurricane Tentacle
1221 -> Thick Fish Bone
1222 -> Evilish Polliwog Tail
1223 -> Blue Ray Scale
1224 -> Strong Ray Scale
1225 -> Corrupted Merman Card
1226 -> Corrupted Siren Card
1227 -> Smelly Octopus Meat
1228 -> Old Northern Pirate Sail
1229 -> Rusty Northern Pirate Cannon
1230 -> Thorny Floating Water Shrub
1231 -> Virulent Sea Jelly Tentacle
1232 -> Rotten Fish Meat
1233 -> Stretchy Squid Meat
1234 -> Arabic Dark Pearl Fragment
1235 -> Electric Tentacle
1236 -> Transparent Polliwog Tail
1237 -> Shadow Merman Scale
1238 -> Strong Sea Jelly Tentacle
1239 -> Large Ruby Fragment
1240 -> Rotten Small Fish Bone
1241 -> Sturdy Polliwog Tail
1242 -> Ancient Scale
1243 -> Big Shark Dorsal Fin
1244 -> Ancient Arrow Quiver
1245 -> Chipped Merman Card
1246 -> Chipped Siren Card
1247 -> Old Beardy Pirate Sail
1248 -> Rusty Beardy Pirate Cannon
1249 -> Cursed Thorny Water Shrub
1250 -> Heavily Scarred Tentacle
1251 -> Evil Fish Meat
1252 -> Flavoured Squid Meat
1253 -> Sparkling Arabic Pearl Fragment
1254 -> Sturdy Sea Jelly Tentacle
1255 -> Bloody Polliwog Tail
1256 -> Cursed Merman Tail
1257 -> Powerful Sea Jelly Tentacle
1258 -> Flawed Mysterious Ruby
1259 -> Razor Sharp Fish Bone
1260 -> Thick Transparent Polliwog Tail
1261 -> Ancient Glimmering Scale
1262 -> White Shark Dorsal Fin
1263 -> Flawed Mysterious Crystal
1264 -> Shadowy Scale
1265 -> Ancient Merman Card
1266 -> Ancient Siren Card
1267 -> High Quality Tasty Fishmeat
1268 -> Small Mysterious Ruby
1269 -> Ancient Blue Scale
1270 -> Gigantic Shark Dorsal Fin
1271 -> Small Mysterious Crystal
1272 -> Wicked Scale
1273 -> Black Shark Dorsal Fin
1274 -> Razor Sharp Dorsal Fin
1275 -> Sakura Pirate Banner
1276 -> Jack the Pirate's Banner
1277 -> Northern Pirate Banner
1278 -> Beardy Pirate Banner
1279 -> Black Squid Tentacle
1280 -> Tough Squid Tentacle
1281 -> Sakura Pirate Badge
1282 -> Sakura Militia Badge
1283 -> Rotten Grass
1284 -> White Heart of Squid
1285 -> Caviar
1286 -> Fatty Squid Tentacle
1287 -> Arabic Silk
1288 -> Lightning Crystal
1289 -> Evil Polliwog Blood
1290 -> Defiled Merman Hair
1291 -> Heart of Temptest Sea Jelly
1292 -> Topaz Dolphin Dorsal Fin
1293 -> Spikey Fish Bone Rack
1294 -> Fresh Polliwog Blood
1295 -> Bewitching Siren Crystal
1296 -> Amethyst Dolphin Dorsal Fin
1297 -> Bewitching Crystal
1298 -> Mermaid Protector Emblem
1299 -> Siren Guard Emblem
1300 -> Soggy Octopus Tentacle
1301 -> Jack the Pirate's Badge
1302 -> Jack's Militia Badge
1303 -> Wild Grass
1304 -> Bloody Sea Jelly Heart
1305 -> Black Caviar
1306 -> Shadowy Squid Tentacle
1307 -> Evil Arabic Silk Cloth
1308 -> High Voltage Lightning Crystal
1309 -> Thick Polliwog Blood
1310 -> Intact Mermaid Hair
1311 -> Hurricane Sea Jelly Heart
1312 -> Strong Fish Rack
1313 -> Wicked Polliwog Blood
1314 -> Azure Bewitching Crystal
1315 -> Sparkling Bewitching Crystal
1316 -> Tanned Mermaid Protector Badge
1317 -> Tanned Siren Protector Badge
1318 -> Smelly Octopus Tentacle
1319 -> Nothern Pirate Badge
1320 -> Northen Militia Badge
1321 -> Floating Root
1322 -> Posioned Sea Jelly Heart
1323 -> Rotten Caviar
1324 -> Elastic Octopus Tentacle
1325 -> Dark Arabic Silk
1326 -> Strong Eletrical Crystal
1327 -> Transparent Polliwog Blood
1328 -> Shadow Merman Hair
1329 -> Shining Cyclonic Sea Jelly Heart
1330 -> Large Dolphin Dorsal Fin
1331 -> Rotten Bone Rack
1332 -> Slimy Polliwog Blood
1333 -> Ancient Ghana Siren Crystal
1334 -> Shark Cartilage
1335 -> Ancient Siren Crystal
1336 -> Tattered Merman Emblem
1337 -> Tattered Siren Emblem
1338 -> Red Beardy Pirate Badge
1339 -> Red Beardy Militia Badge
1340 -> Cursed Root
1341 -> Shattered Sea Jelly Heart
1342 -> Evil Fish Sauce
1343 -> Flavored Octopus Tentacle
1344 -> Quality Arabic Silk
1345 -> Lightning Crystal
1346 -> Raw Polliwog Blood
1347 -> Cursed Mermaid Hair
1348 -> Large Cyclonic Sea Jelly Heart
1349 -> Huge Dolphin Dorsal Fin
1350 -> Shining Fish Bone Rack
1351 -> Murky Polliwog Blood
1352 -> Antique Siren Crystal
1353 -> White Shark Cartilage
1354 -> Shining Dolphin Dorsal Fin
1355 -> Dark Shadow Crystal
1356 -> Ancient Merman Symbol
1357 -> Ancient Siren Symbol
1358 -> Quality Caviar
1359 -> Glimmering Dorsal Fin
1360 -> Ancient Spirit Crystal
1361 -> Large Fish Cartilage
1362 -> Strong Dorsal Fin
1363 -> Evil Siren Crystal
1364 -> Black Shark Cartilage
1365 -> Dangerous Shark Cartilage
1366 -> Sakura Ringleader Emblem
1367 -> Jack's Ringleader Emblem
1368 -> Northern Ringleader Emblem
1369 -> Red Beardy Ringleader Emblem
1370 -> Two-Edged Sword
1371 -> Fearsome Sword
1372 -> Righteous Sword
1373 -> Cavalier Saber
1374 -> Grey Sword of Darkan
1375 -> Primal Axe of Rage
1376 -> Vampiric Bat King
1377 -> Common Rebel Sword
1378 -> Fiery Sword of Darkan
1379 -> Heavy Sword
1380 -> Vehemence Sword
1381 -> Protector Sword
1382 -> Invader Sword
1383 -> Soul Sword of Darkan
1384 -> Winds of Death
1385 -> Wings of Death
1386 -> Enhanced Rebel Sword
1387 -> Rustle Sword
1388 -> Short Blade
1389 -> Light Sword
1390 -> Fine Blade
1391 -> Emerald Blade
1392 -> Steel Saber
1393 -> Hymn Sword of Darkan
1394 -> Sword of Dawn
1395 -> Small Steel Sword
1396 -> Common Steel Sword
1397 -> Assassin Sword
1398 -> Tribal Sword
1399 -> Amber Sword
1400 -> Mini Bow
1401 -> Common Bow
1402 -> Tribal Short Bow
1403 -> Shikar Bow
1404 -> Soldier Bow
1405 -> Marksman Bow
1406 -> Old Firegun
1407 -> Enhanced Firegun
1408 -> Pocket Pistol
1409 -> Battle Rifle
1410 -> Holy Judgment
1411 -> Kiss of the Serpent
1412 -> Lightning Taser
1413 -> Steel Pistol
1414 -> Spectar Firegun
1415 -> Small Dagger
1416 -> Impact Spike
1417 -> Dagger of Ripple
1418 -> Comet Spike
1419 -> Blade of Torment
1420 -> Venom Soul Spike
1421 -> Tooth of Fury
1422 -> Piercing Dagger
1423 -> Guerrilla Dagger
1424 -> Sword of Ripple
1425 -> Quartz Dagger
1426 -> Nightmare Dagger
1427 -> Blessed Staff
1428 -> Battle Staff
1429 -> Arcane Staff
1430 -> Wand of Holiness
1431 -> Feral Wand
1432 -> Staff of Thunderbolt
1433 -> Hearten Wand
1434 -> Fine Stave
1435 -> Scholar Stave
1436 -> Vehemence Stave
1437 -> Restraining Staff
1438 -> Fury Staff
1439 -> Staff of Wrath
1440 -> Elegant Staff
1441 -> Staff of Gaia
1442 -> Tears of Angel
1443 -> Thesis Dagger
1444 -> Bandit Spike
1445 -> Dagger of Haste
1446 -> Spike of Feint
1447 -> Pirate Dagger
1448 -> Sovereign Kris
1449 -> Clarity Dagger
1450 -> Sharp Blade
1451 -> Light Dagger
1452 -> Refined Dagger
1453 -> Ship Logo 01
1454 -> Ship Logo 02
1455 -> Ship Logo 03
1456 -> Ship Logo 04
1457 -> Ship Logo 05
1458 -> Ship Logo 06
1459 -> Ship Logo 07
1460 -> Gemmed Dagger
1461 -> Cursed Dagger
1462 -> Arcane Branch
1463 -> Thick Stave
1464 -> Ceremonial Staff
1465 -> Brilliance Wand
1466 -> Wand of Vigor
1467 -> Protector Staff
1468 -> Staff of High Priest
1469 -> Grained Stave
1470 -> Enhanced Stave
1471 -> Beautiful Stave
1472 -> Staff of Endeavor
1473 -> Staff of Flame
1474 -> Staff of Sun
1475 -> Spiritual Staff
1476 -> Staff of Binding
1477 -> Eye of Sorrow
1478 -> Sashimi
1479 -> Shadow Spear
1480 -> Fake Navy Documentation
1481 -> Broken Navy Emblem
1482 -> Hugh Rock Fragment
1483 -> Arcane Metal
1484 -> Rusty Terra Battleaxe
1485 -> Piece of Icy Dragon Bone
1486 -> Torn White Bobcat Wing
1487 -> Rusty Terra Earrings
1488 -> Terra Spanner
1489 -> Damaged Terra Battleaxe
1490 -> Torn Black Bobcat Wing
1491 -> Robot Clamp
1492 -> Robot Wheel
1493 -> Heart of Giant
1494 -> Small Magnet
1495 -> Rusty Terra Battle Armor
1496 -> Piece of Crystalline Heart
1497 -> Broken Golden Kitty Bell
1498 -> Broken terra smoking pipe
1499 -> Terra Glasses
1500 -> Damaged Terra Battle Armor
1501 -> Broken Black Bobcat Bell
1502 -> Piece of Armor Plate
1503 -> Metal Funnel
1504 -> Damaged Lizardman Belt
1505 -> Damaged Lizardman Blade
1506 -> Mad Tribal Witchdoctor Card
1507 -> Frenzied Lizardman Card
1508 -> Nimble Forest Hunter Card
1509 -> Nimble Bloodthirsty Hunter Card
1510 -> Terra Soldier Leader Card
1511 -> Elite Lizardman Warrior Card
1512 -> Lizard Warrior Leader Card
1513 -> Elite Terra Warrior Card
1514 -> Terra Warrior Leader Card
1515 -> Vicious Terra Elder Card
1516 -> Terra Artificer Leader Card
1517 -> Elite Shadow Hunter Card
1518 -> Feral White Bobcat Card
1519 -> Deadly Werewolf Archer Card
1520 -> Feral Black Bobcat
1521 -> Frost Chimera Card
1522 -> Evil Guardian Angel Card
1523 -> Cursed White Bobcat Card
1524 -> Evil Tribal Shaman Card
1525 -> Frantic Lizardman Card
1526 -> Ruthless Forest Hunter Card
1527 -> Cursed Black Bobcat Card
1528 -> Ruthless Bloodthirsty Hunter Card
1529 -> Anubis Card
1530 -> Dharma Pharaoh Card
1531 -> Beardy Pirate Sailor Card
1532 -> Beardy Pirate Fighter Card
1533 -> Beardy Pirate Militia Card
1534 -> Decaying Fish Bone Card
1535 -> Big Eyed Polliwog Card
1536 -> Evil Great Polliwog Card
1537 -> Great Feral Polliwog Card
1538 -> Northern Pirate Command Ship Card
1539 -> Swift Cyclonic Sea Jelly Card
1540 -> Cursed Mermaid Card
1541 -> Raging Cyclonic Sea Jelly Card
1542 -> Old Ruby Dolphin Card
1543 -> Feral Fish Bone Card
1544 -> Great Prowling Polliwog Card
1545 -> Feral Ruby Dolphin Card
1546 -> Bewitching Siren Card
1547 -> Amethyst Dolphin Card
1548 -> Old Diamond Dolphin Card
1549 -> Dark Blue Siren Card
1550 -> Siren Archer Card
1551 -> Beardy Pirate Support Ship Card
1552 -> Beardy Pirate Warship Card
1553 -> Feral Diamond Dolphin Card
1554 -> Frenzied Siren Card
1555 -> Berserk Mermaid Protector Card
1556 -> Berserk Siren Guard Card
1557 -> Ancient Siren Card
1558 -> Beardy Pirate Command Ship Card
1559 -> Ancient Siren Archer Card
1560 -> Tanned Mermaid Protector Card
1561 -> Tanned Siren Guard Card
1562 -> Horrific Mermaid Protector Card
1563 -> Horrific Siren Guard Card
1564 -> Feral Siren Card
1565 -> Shadow Siren Card
1566 -> Ancient Bewitching Siren Card
1567 -> Ancient Dark Blue Siren Card
1568 -> Ancient Mermaid Protector Card
1569 -> Ancient Siren Guard Card
1573 -> Shriveled Leaf
1574 -> Green Leaf
1575 -> Sparkling Leaf
1576 -> Leaf Bud
1577 -> Three Leaf Clover
1578 -> Four Leaf Clover
1579 -> Flower Bud
1580 -> Shriveled Flower
1581 -> Fully Bloomed Flower
1582 -> Spike
1583 -> Sharp Thorn
1584 -> Poisoned Thorn
1585 -> Grass Juice
1586 -> Tree Sap
1587 -> Nectar
1588 -> Pollen
1589 -> Fruit Juice
1590 -> Cirrus
1591 -> Young Branch
1592 -> Split Branch
1593 -> Magical Branch
1594 -> Unripe Fruit
1595 -> Poisoned Fruit
1596 -> Tasty Fruit
1597 -> Seed
1598 -> Seedling
1599 -> Magical Seed
1600 -> Corm
1601 -> Green Corm
1602 -> Mystical Corm
1603 -> Hair
1604 -> Mane
1605 -> Tail Hair
1606 -> Beard
1607 -> Beast Leather
1608 -> Animal Skin
1609 -> Beautiful Skin
1610 -> Broken Horn
1611 -> Animal Horn
1612 -> Sharp Horn
1613 -> Carapace Fragment
1614 -> Hard Shell
1615 -> Claw
1616 -> Sharp Claw
1617 -> Tooth
1618 -> Sharp Tooth
1619 -> Feather
1620 -> Wing
1621 -> Shining Feather
1622 -> Insect Hind Leg
1623 -> Bone Fragment
1624 -> Bone
1625 -> Sharp Bone
1626 -> Magical Bone
1627 -> Animal Sweat
1628 -> Animal Saliva
1629 -> Animal Blood
1630 -> Life Stone Fragment
1631 -> Life Stone
1632 -> Life Crystal
1633 -> Crystal Fragment
1634 -> Small Crystal
1635 -> Perfect Crystal
1636 -> Ruby Fragment
1637 -> Flaw Ruby
1638 -> Perfect Ruby
1639 -> Sapphire Fragment
1640 -> Flaw Sapphire
1641 -> Perfect Sapphire
1642 -> Emerald Fragment
1643 -> Flaw Emerald
1644 -> Perfect Emerald
1645 -> Pill Fragment
1646 -> Small Pill
1647 -> Chaos Pill
1648 -> Murky Water
1649 -> Pure Water
1650 -> Healing Water
1651 -> Counteragent
1652 -> Extender
1653 -> Smelly Gas
1654 -> Strong Gas
1655 -> Hypnotic Gas
1656 -> Purify Gas
1657 -> Special Gas
1658 -> Earthen Element Fragment
1659 -> Earthen Element Sequence
1660 -> Earthen Element Array
1661 -> Scrap Iron
1662 -> Iron
1663 -> Iron Part
1664 -> Strong Alloy Part
1665 -> Alloy Power Device
1666 -> Iron Fragment
1667 -> Crude Iron Ore
1668 -> Pure Iron Ore
1669 -> Cinder
1670 -> Coal Ore
1671 -> Burning Coal
1672 -> Strange Metal
1673 -> Strange Metal Fragment
1674 -> Strange Metal Ore
1675 -> Grass Fruit
1676 -> Honey
1677 -> Snail Shell
1678 -> Cashmere
1679 -> Pure Wool
1680 -> Pig Tail
1681 -> Tear
1682 -> Canine Tooth
1683 -> Tortoise Shell Fragment
1684 -> Hard Tortoise Shell
1685 -> Bamboo Leaf
1686 -> Bamboo Shoot
1687 -> Kangaroo Sunglasses
1688 -> Tusk
1689 -> Crab Pincer
1690 -> Snail Feeler
1691 -> Cactus Hairball
1692 -> Cactus Blossom
1693 -> Scorpion Shell
1694 -> Magical Root
1695 -> Camel Eyelash
1696 -> Wolf Claw
1697 -> Lizard Skin
1698 -> Wind Mirror
1699 -> Quartz Crystal
1700 -> Water Bag
1701 -> Courage Bandana
1702 -> Devotee's Heart
1703 -> Charmed Cloth
1704 -> Octopus Tentacle
1705 -> Octopus Ink
1706 -> Naiad Stone
1707 -> Kingfisher Feather
1708 -> Bat Wing
1709 -> Antler
1710 -> Boar Tusk
1711 -> Bloody Wolf Tooth
1712 -> White Bear Fur
1713 -> Multi Edge Tortoise Shell
1714 -> Hairdo 2
1715 -> Conch
1716 -> Vampire Tooth
1717 -> Mole Claw
1718 -> Halloween Pumpkin Head
1719 -> Little Snow Ball
1720 -> Fish Bone
1721 -> Yeti Chest Hair
1722 -> Bear Paw
1723 -> Snowman Earring
1724 -> Snow Yeti Accessory
1725 -> Poison Mushroom
1726 -> Stramonium Juice
1727 -> Exploding Spore
1728 -> Spider Web
1729 -> Owl Feather
1730 -> Ornament Feather
1731 -> Rusty Spearhead
1732 -> Stramonium Spike
1733 -> Tribal Charm
1734 -> Chieftain Feather
1735 -> Stone Egg
1736 -> Cigar
1737 -> Little Devil Wings
1738 -> Werewolf Jewelry
1739 -> Lizardman Bangle
1740 -> Lizardman Belt
1741 -> Terra Tools
1742 -> Terra Backpack
1743 -> Kitty Bell
1744 -> Gear
1745 -> Diary Fragment
1746 -> Royal Jelly
1747 -> Fake Documentation
1748 -> Bandit Waist Plate
1749 -> Berserk Mark
1750 -> Golden Belt
1751 -> Mud Crystal
1752 -> Strange Mask
1753 -> Knight Attest
1754 -> Tempest Mark
1755 -> Gold Reserve
1756 -> Possessed Crystal Ball
1757 -> Lizard Crown
1758 -> Crystal Conch
1759 -> Mud Doll
1760 -> Spectral Wind Lamp
1761 -> Ginseng Doll
1762 -> Fairy Brooch
1763 -> Pumping Metal Heart
1764 -> Guard Captain Mark
1765 -> Undead Soul
1766 -> Terra Coin
1767 -> Devil Gem
1768 -> Feline Soul Grass
1769 -> Compelling Crystal
1770 -> Fog of Conviction
1771 -> Soul Stone
1772 -> Angel Wings
1773 -> Teary Ice Stone
1774 -> Dragon Scale
1775 -> Icy Crystal
1776 -> Icy Dragon Egg
1777 -> Glass
1778 -> Rainbow Glass
1779 -> Bottle
1780 -> Stone of Oath
1781 -> Terra Gold Fragment
1782 -> Terra Gold Ore
1783 -> Terra Gold
1784 -> Clarion Sand
1785 -> Clarion Fragment
1786 -> Clarion Crystal
1787 -> Red Dye
1788 -> Orange Dye
1789 -> Yellow Dye
1790 -> Green Dye
1791 -> Cyan Dye
1792 -> Blue Dye
1793 -> Purple Dye
1794 -> Aluminum Bottle
1795 -> Silver Crystalline Bottle
1796 -> Catalyst
1797 -> Red Colorant
1798 -> Orange Colorant
1799 -> Yellow Colorant
1800 -> Green Colorant
1801 -> Cyan Colorant
1802 -> Blue Colorant
1803 -> Purple Colorant
1804 -> Scissor
1805 -> Comb
1806 -> Hair Gel
1807 -> Hairstyling Voucher
1808 -> Lance Hairstyle Book
1809 -> Carsise Hairstyle Book
1810 -> Phyllis Hairstyle Book
1811 -> Ami Hairstyle Book
1812 -> Ancient Generator
1813 -> Ancient Generator Fragment
1814 -> Mystic Chest
1815 -> Beautiful Chest
1816 -> Hairstyle Book 9
1817 -> Hairstyle Book 10
1818 -> Hairstyle Book 11
1819 -> Hairstyle Book 12
1820 -> Hairstyle Book 13
1821 -> Hairstyle Book 14
1822 -> Hairstyle Book 15
1823 -> Hairstyle Book 16
1824 -> Hairstyle Book 17
1825 -> Hairstyle Book 18
1826 -> Hairstyle Book 19
1827 -> Hairstyle Book 20
1828 -> Hairstyle Book 21
1829 -> Hairstyle Book 22
1830 -> Hairstyle Book 23
1831 -> Hairstyle Book 24
1832 -> Hairstyle Book 25
1833 -> Hairstyle Book 26
1834 -> Hairstyle Book 27
1835 -> Hairstyle Book 28
1836 -> Hairstyle Book 29
1837 -> Hairstyle Book 30
1838 -> Coagulated Liquid
1839 -> Squirt Handkerchief
1840 -> Squidy Cap
1841 -> Bandit Necklace
1842 -> Razor Tooth
1843 -> Animal Sharp Horn
1844 -> Tortoise Blood
1845 -> Wolf Skin
1846 -> Phantom Tree Branch
1847 -> Apple
1848 -> Bread
1849 -> Cake
1850 -> Parcel
1851 -> Item Chest
1852 -> Whammy Chest
1853 -> Cannon Base 00
1854 -> Bull Potion
1855 -> Battle Potion
1856 -> Berserk Potion
1857 -> Energy Potion
1858 -> Harden Potion
1859 -> Accurate Potion
1860 -> Blessed Potion
1861 -> High Grade Wood Bundle
1863 -> Cannon Tower 00
1864 -> Crystal Ball
1873 -> Cannon Tube 00
1883 -> Cannon Logo 00
1884 -> Undead Sealed Armor of Revenant
1885 -> Earth Sealed Tattoo of the Cursed Warrior
1886 -> Fire Sealed Tattoo of Evanescence
1887 -> Ice Sealed Tattoo of Enigma
1888 -> Earth Sealed Platemail of the Cursed Soul
1889 -> Fire Sealed Armor of Evanescence
1890 -> Ice Sealed Armor of Enigma
1891 -> Undead Sealed Sword of Grief
1892 -> Earth Sealed Greatsword of Incantation
1893 -> Fire Sealed Roar of Evanescence
1894 -> Ice Sealed Judgment of Enigma
1895 -> Earth Sealed Blade of Incantation
1896 -> Fire Sealed Dance of Evanescence
1897 -> Ice Sealed Blade of Enigma
1898 -> Undead Sealed Robe of Death
1899 -> Earth Sealed Corset of Incantation
1900 -> Fire Sealed Coat of Evanescence
1901 -> Ice Sealed Mantle of Enigma
1902 -> Undead Sealed Touch of Death
1903 -> Earth Sealed Kiss of the Cursed
1904 -> Fire Sealed Bellow of Evanescence
1905 -> Ice Sealed Rifle of Enigma
1906 -> Undead Sealed Staff of the Avenger
1907 -> Earth Sealed Staff of Incantation
1908 -> Fire Sealed Staff of Evanescence
1909 -> Ice Sealed Staff of Enigma
1910 -> Undead Sealed Robe of the Venom Witch
1911 -> Earth Sealed Coat of Invocation
1912 -> Fire Sealed Robe of the Arcane
1913 -> Ice Sealed Robe of Enigma
1914 -> Earth Sealed Staff of Abraxas
1915 -> Fire Sealed Staff of Mirage
1916 -> Ice Sealed Staff of the Sphinx
1917 -> Earth Sealed Robe of Abraxas
1918 -> Fire Sealed Robe of Malediction
1919 -> Ice Sealed Robe of the Sphinx
1920 -> Undead Sealed Tooth of Specter
1921 -> Earth Sealed Tooth of the Cursed
1922 -> Fire Sealed Tooth of Evanescence
1923 -> Ice Sealed Kris of the Sphinx
1924 -> Undead Sealed Mantle of the Naga
1925 -> Earth Sealed Mantle of the Cursed Flame
1926 -> Fire Sealed Cloak of Evanescence
1927 -> Ice Sealed Mantle of the Sphinx
1928 -> Battle Armor of Crimson Flame
1929 -> Battle Armor of the Tempest
1930 -> Battle Armor of Sistine
1931 -> Battle Armor of the Kylin
1932 -> Battle Armor of Nature
1933 -> Tattoo of Gallon
1934 -> Tattoo of the Tortoise
1935 -> Gauntlets of Crimson Flame
1936 -> Gauntlets of the Tempest
1937 -> Gauntlets of Sistine
1938 -> Gauntlets of the Kylin
1939 -> Greaves of Crimson Flame
1940 -> Greaves of the Tempest
1941 -> Greaves of Sistine
1942 -> Greaves of the Kylin
1943 -> Vest of Clarion Mist
1944 -> Flaming Coat
1945 -> Mantle of Darwin
1946 -> Coat of the White Tiger
1947 -> Gloves of Clarion Mist
1948 -> Flaming Gloves
1949 -> Gloves of Darwin
1950 -> Gloves of the White Tiger
1951 -> Boots of Clarion Mist
1952 -> Flaming Boots
1953 -> Boots of Darwin
1954 -> Boots of the White Tiger
1955 -> Emerald Vine Robe
1956 -> Coat of Frozen Crescent
1957 -> Coat of Udine
1958 -> Coat of the Peacock
1959 -> Glory Coat
1960 -> Coat of Hope
1961 -> Coat of the Phoenix
1962 -> Emerald Vine Gloves
1963 -> Gloves of Frozen Crescent
1964 -> Gloves of Udine
1965 -> Gloves of the Peacock
1966 -> Glory Gloves
1967 -> Gloves of Hope
1968 -> Gloves of the Phoenix
1969 -> Emerald Vine Boots
1970 -> Boots of Frozen Crescent
1971 -> Boots of Udine
1972 -> Boots of the Peacock
1973 -> Glory Boots
1974 -> Boots of Hope
1975 -> Boots of the Phoenix
1976 -> Robe of the Mist
1977 -> Coat of the Tempest
1978 -> Robe of Forlorn
1979 -> Coat of the Green Dragon
1980 -> Gloves of the Mist
1981 -> Gloves of the Tempest
1982 -> Gloves of Forlorn
1983 -> Gloves of the Green Dragon
1984 -> Boots of the Mist
1985 -> Boots of the Tempest
1986 -> Boots of Forlorn
1987 -> Boots of the Green Dragon
1988 -> Fire Sealed Gauntlets of Evanescence
1989 -> Fire Sealed Greaves of Evanescence
1990 -> Fire Sealed Gloves of Evanescence
1991 -> Fire Sealed Shoes of Evanescence
1992 -> Fire Sealed Gloves of Malediction
1993 -> Fire Sealed Gloves of the Arcane
1994 -> Fire Sealed Boots of Malediction
1995 -> Fire Sealed Boots of the of the Arcane
1996 -> Fire Sealed Heavy Gloves of Evanescence
1997 -> Fire Sealed Boots of Evanescence
1999 -> Lance Failed Hairdo 1
2000 -> Hairdo 1
2001 -> Hairdo 2
2002 -> Hairdo 3
2003 -> Hairdo 4
2004 -> Hairdo 5
2005 -> Hairdo 6
2006 -> Hairdo 7
2007 -> Hairdo 8
2008 -> Event Commissioner
2009 -> Hairdo 1
2010 -> Hairdo 1
2011 -> Hairdo 1
2012 -> Hairdo 1
2013 -> Hairdo 1
2014 -> Hairdo 1
2015 -> Hairdo 2
2016 -> Hairdo 2
2017 -> Hairdo 2
2018 -> Hairdo 2
2019 -> Hairdo 2
2020 -> Hairdo 2
2021 -> Hairdo 3
2022 -> Hairdo 3
2023 -> Hairdo 3
2024 -> Hairdo 3
2025 -> Hairdo 3
2026 -> Hairdo 3
2027 -> Hairdo 4
2028 -> Hairdo 4
2029 -> Hairdo 4
2030 -> Hairdo 4
2031 -> Hairdo 4
2032 -> Hairdo 4
2033 -> Hairdo 5
2034 -> Hairdo 5
2035 -> Hairdo 5
2036 -> Hairdo 5
2037 -> Hairdo 5
2038 -> Hairdo 5
2039 -> Hairdo 5
2040 -> Hairdo 6
2041 -> Hairdo 6
2042 -> Hairdo 6
2043 -> Hairdo 6
2044 -> Hairdo 6
2045 -> Hairdo 6
2046 -> Hairdo 6
2047 -> Hairdo 7
2048 -> Hairdo 7
2049 -> Hairdo 7
2050 -> Hairdo 7
2051 -> Hairdo 7
2052 -> Hairdo 7
2053 -> Hairdo 7
2054 -> Hairdo 8
2055 -> Hairdo 8
2056 -> Hairdo 8
2057 -> Hairdo 8
2058 -> Hairdo 8
2059 -> Hairdo 8
2060 -> Guy 1 Bald Hairdo
2061 -> Lance Failed Hairdo 2
2062 -> Hairdo 1
2063 -> Hairdo 2
2064 -> Hairdo 3
2065 -> Hairdo 4
2066 -> Hairdo 5
2067 -> Hairdo 6
2068 -> Hairdo 7
2069 -> Hairdo 8
2070 -> Event Commissioner
2071 -> Hairdo 1
2072 -> Hairdo 1
2073 -> Hairdo 1
2074 -> Hairdo 1
2075 -> Hairdo 1
2076 -> Hairdo 1
2077 -> Hairdo 1
2078 -
2078 -> Hairdo 2
2079 -> Hairdo 2
2080 -> Hairdo 2
2081 -> Hairdo 2
2082 -> Hairdo 2
2083 -> Hairdo 2
2084 -> Hairdo 3
2085 -> Hairdo 3
2086 -> Hairdo 3
2087 -> Hairdo 3
2088 -> Hairdo 3
2089 -> Hairdo 3
2090 -> Hairdo 4
2091 -> Hairdo 4
2092 -> Hairdo 4
2093 -> Hairdo 4
2094 -> Hairdo 4
2095 -> Hairdo 4
2096 -> Hairdo 4
2097 -> Hairdo 5
2098 -> Hairdo 5
2099 -> Hairdo 5
2100 -> Hairdo 5
2101 -> Hairdo 6
2102 -> Hairdo 6
2103 -> Hairdo 6
2104 -> Hairdo 6
2105 -> Hairdo 6
2106 -> Hairdo 6
2107 -> Hairdo 6
2108 -> Hairdo 7
2109 -> Hairdo 7
2110 -> Hairdo 7
2111 -> Hairdo 7
2112 -> Hairdo 7
2113 -> Hairdo 7
2114 -> Hairdo 8
2115 -> Hairdo 8
2116 -> Hairdo 8
2117 -> Hairdo 8
2118 -> Hairdo 8
2119 -> Hairdo 8
2120 -> Hairdo 8
2121 -> Carsise Failed Hairdo 1
2122 -> Guy 2 Bald Hairdo
2123 -> Carsise Failed Hairdo 2
2124 -> Hairdo 1
2125 -> Hairdo 2
2126 -> Hairdo 3
2127 -> Hairdo 4
2128 -> Hairdo 5
2129 -> Hairdo 6
2130 -> Hairdo 7
2131 -> Hairdo 8
2132 -> Event Commissioner
2133 -> Hairdo 1
2134 -> Hairdo 1
2135 -> Hairdo 1
2136 -> Hairdo 1
2137 -> Hairdo 1
2138 -> Hairdo 1
2139 -> Hairdo 1
2140 -> Hairdo 2
2141 -> Hairdo 2
2142 -> Hairdo 2
2143 -> Hairdo 2
2144 -> Hairdo 2
2145 -> Hairdo 2
2146 -> Hairdo 3
2147 -> Hairdo 3
2148 -> Hairdo 3
2149 -> Hairdo 3
2150 -> Hairdo 3
2151 -> Hairdo 3
2152 -> Hairdo 4
2153 -> Hairdo 4
2154 -> Hairdo 4
2155 -> Hairdo 4
2156 -> Hairdo 4
2157 -> Hairdo 4
2158 -> Hairdo 5
2159 -> Hairdo 5
2160 -> Hairdo 5
2161 -> Hairdo 5
2162 -> Hairdo 5
2163 -> Hairdo 5
2164 -> Hairdo 6
2165 -> Hairdo 6
2166 -> Hairdo 6
2167 -> Hairdo 6
2168 -> Hairdo 6
2169 -> Hairdo 6
2170 -> Hairdo 7
2171 -> Hairdo 7
2172 -> Hairdo 7
2173 -> Hairdo 7
2174 -> Hairdo 7
2175 -> Hairdo 7
2176 -> Hairdo 8
2177 -> Hairdo 8
2178 -> Hairdo 8
2179 -> Hairdo 8
2180 -> Hairdo 8
2181 -> Hairdo 8
2182 -> Phyllis Failed Hairdo 1
2183 -> Phyllis Failed Hairdo 2
2184 -> Girl 1 Bald Hairdo
2185 -> Girl 1 Hair Makeup 01
2186 -> Girl 2 Hair 00
2187 -> Crabby Cap
2188 -> Rooroo Cap
2189 -> Playful Racoon Cap
2190 -> Duckling Cap
2191 -> Big Crab Cap
2192 -> Lobster Cap
2193 -> Ducky Cap
2194 -> Prawn Cap
2195 -> Pincer Cap
2196 -> Sheepy Cap
2197 -> Meowy Cap
2198 -> Owl Cap
2199 -> Hopperoo Cap
2200 -> Clever Otter Cap
2201 -> Lucky Otter Cap
2202 -> Mousey Cap
2203 -> Kitty Cap
2204 -> Loopy Bunny Cap
2205 -> Goaty Cap
2206 -> Deer Cap
2207 -> Otter Cap
2208 -> Racoon Cap
2210 -> Happy Bunny Cap
2211 -> Night Owl Cap
2212 -> Kangaroo Cap
2213 -> Joyful Bunny Cap
2214 -> Bunny Baby Cap
2215 -> Lucky Bunny Cap
2217 -> Event Commissioner
2218 -> Happy Panda Cap
2219 -> Mystic Panda Cap
2220 -> Gold Fish Cap
2221 -> Fish Fairy Cap
2222 -> Dragon Cap
2223 -> Dragon Lord Cap
2224 -> Modern Apparel Chest
2225 -> Morph Clover
2226 -> Baby Rune
2227 -> Roico Rune
2228 -> Leo Rune
2229 -> CiMen Rune
2230 -> Dina Rune
2231 -> Bragi Rune
2232 -> Mel Rune
2233 -> Amon Rune
2234 -> Star Rune
2235 -> Rebirth Stone
2236 -> Repair Tool
2237 -> Pirate Voucher 9
2238 -> Pirate Voucher 8
2239 -> Pirate Voucher 7
2240 -> Pirate Voucher 6
2241 -> Pirate Voucher 5
2242 -> Pirate Voucher 4
2243 -> Pirate Voucher 3
2244 -> Pirate Voucher 2
2245 -> Pirate Voucher 1
2246 -> Girl 2 Bald Hairdo
2247 -> Hairdo 1
2248 -> Hairdo 1
2249 -> Hairdo 1
2250 -> Hairdo 1
2251 -> Hairdo 1
2252 -> Hairdo 1
2253 -> Hairdo 2
2254 -> Hairdo 2
2255 -> Hairdo 2
2256 -> Hairdo 2
2257 -> Hairdo 2
2258 -> Hairdo 2
2259 -> Hairdo 3
2260 -> Hairdo 3
2261 -> Hairdo 3
2262 -> Hairdo 3
2263 -> Hairdo 3
2264 -> Hairdo 3
2265 -> Hairdo 4
2266 -> Hairdo 4
2267 -> Hairdo 4
2268 -> Hairdo 4
2269 -> Hairdo 4
2270 -> Hairdo 4
2271 -> Ami Failed Hairdo 1
2272 -> Ami Failed Hairdo 2
2275 -> Lance Trendy Hairdo 1
2276 -> Lance Trendy Hairdo 2
2277 -> Lance Trendy Hairdo 3
2278 -> Lance Trendy Hairdo 4
2279 -> Carsise Trendy Hairdo 1
2280 -> Carsise Trendy Hairdo 2
2281 -> Carsise Trendy Hairdo 3
2282 -> Carsise Trendy Hairdo 4
2283 -> Phyllis Trendy Hairdo 1
2284 -> Phyllis Trendy Hairdo 2
2285 -> Phyllis Trendy Hairdo 3
2286 -> Phyllis Trendy Hairdo 4
2287 -> Ami Trendy Hairdo 1
2288 -> Ami Trendy Hairdo 2
2289 -> Ami Trendy Hairdo 3
2290 -> Ami Trendy Hairdo 4
2291 -> Hairdo 1
2292 -> Little Angel
2293 -> Hairdo 3
2294 -> Hairdo 4
2295 -> Movement Symbol
2296 -> Attack Symbol
2297 -> Green Exclamation Mark
2298 -> Yellow Exclamation Mark
2299 -> Grey Exclamation Mark
2300 -> Manufacturing Blueprint
2301 -> Crafting Blueprint
2302 -> Cooking Blueprint
2303 -> Amber Tear
2304 -> New Year Firework
2305 -> Number Ticket
2306 -> IPOD Voucher
2307 -> New Year Chest
2312 -> Auto Ration
2313 -> New Lifeskill thread
2314 -> Memory Stone
2315 -> Soup of Rebirth
2323 -> Unknown Rock 1
2324 -> Illusion Fragment
2325 -> Illusion Heart
2326 -> Reality Mask
2327 -> Meteor Bow
2328 -> Recca Bow
2329 -> Bow of Dawn
2330 -> Bow of Dusk
2331 -> Darkness Emissary
2332 -> Darkness Emissary
2333 -> Tear of Hardin
2334 -> Tear of Hardin
2335 -> Penitent of Asura
2336 -> Penitent of Asura
2337 -> Abaddon Vanquisher
2338 -> Abaddon Vanquisher
2339 -> Kiss of Death
2340 -> Kiss of Death
2341 -> Putrescence Bone of Abyss
2342 -> Putrescence Bone of Abyss
2343 -> Vow of Styx
2344 -> Vow of Styx
2348 -> Falchion
2349 -> Long Falchion
2350 -> Katana
2351 -> Tulwar
2352 -> Crystal Falchion
2353 -> Phantom Falchion
2354 -> Nefarious Falchion
2360 -> Plaster Gloves
2361 -> Brawler Gloves
2362 -> Master Gloves
2363 -> Jagged Blade
2364 -> Cosmo Blade
2365 -> Tiger Gloves
2366 -> Hands of Death
2367 -> Corporeal Black Dragon Torso
2368 -> Rightful Black Dragon Claw
2369 -> Rightful Black Dragon Wings
2370 -> Rightful Head of Black Dragon
2371 -> Aladdin Parcel
2372 -> Exploding Lamb Lv1
2373 -> Exploding Lamb Lv2
2374 -> Shield of Medusa
2375 -> Exploding Lamb Lv3
2376 -> Hyena Dagger
2377 -> Dagger of Hydra
2378 -> Trident of Poseidon
2379 -> Exploding Lamb Lv4
2380 -> Exploding Lamb Lv5
2381 -> Guardian Summon Scroll
2382 -> Token of Life & Death
2383 -> Blood Covenant
2384 -> Unique Weapon
2385 -> Captain's Keepsake
2386 -> Soul of Undead
2387 -> Severed Commander's Head
2388 -> Tome Page 1
2389 -> Tome Page 2
2390 -> Tome Page 3
2391 -> Tome Page 4
2392 -> Tome Page 5
2393 -> Tome Page 6
2394 -> Tome Page 7
2395 -> Tome Page 8
2396 -> Magnificient Deer Skin
2403 -> Soul of Kylin
2404 -> Soul of Black Dragon
2408 -> Password AB
2409 -> Password BC
2410 -> Password CD
2411 -> Password DE
2412 -> Password EF
2413 -> Beer of Pirate
2414 -> BBQ Meat of Pirate
2415 -> Elizabeth Necklace
2416 -> Proposal Ring
2417 -> Cursed Treasure
2418 -> Sail
2419 -> Pirate's Bone
2420 -> Husk Shield
2421 -> Steel Shield
2422 -> Tower Shield
2423 -> Feather Shield
2424 -> Crevice Shield
2425 -> Blessed Shield
2426 -> Wyrm Shield
2427 -> Bloodied Coin
2428 -> Captain Gold Plate
2429 -> Captain Token
2430 -> Letter to General Turner
2431 -> Challenge Letter
2432 -> Message of Sparrow
2433 -> Jack's Gift
2434 -> Arrow 02
2435 -> Turner's Gift
2436 -> Holy Bible
2437 -> Treasure Chest
2438 -> Gold Coin
2439 -> Sentry Fragment
2440 -> Lock of Mystic
2441 -> Superglue
2442 -> Sunken Cupboard
2443 -> Sunken Cupboard
2444 -> Heart of Davy Jones
2445 -> Caribbean Tour Ticket
2446 -> Event Pass (Skeletar Isle)
2447 -> Pass to Skeletar Isle?
2448 -> Gunpowder 02
2449 -> Shark Meat
2450 -> Shark Roe
2451 -> Sharkfin
2452 -> Shark Bone
2453 -> Shark Fillet
2454 -> Caviar
2455 -> Sharkfin Porridge
2456 -> Fish Bone Soup
2457 -> Mustard
2458 -> Salt
2459 -> Rice
2460 -> Clear Water
2461 -> Goddess Mudstone
2462 -> Abrade Orestone
2463 -> Demonic Orestone
2464 -> Thaw Finestone
2465 -> Oceanic Soulstone
2466 -> Tear Soothstone
2467 -> Guise Veilstone
2468 -> Myth Flamestone
2469 -> Hervo Bloodstone
2470 -> Dim Jadestone
2471 -> Searing Debstone
2472 -> Beastie Finestone
2473 -> Avow Blotstone
2474 -> Zest Jadestone
2475 -> Worldstone
2476 -> Dark Soothstone
2477 -> Beastie Toothstone
2478 -> Rainbow Soothstone
2479 -> Mirage Shadestone
2480 -> Goddess Tearstone
2481 -> Crystal Zionstone
2482 -> Pearl Soothstone
2483 -> Cadavar Orestone
2484 -> Spirit Orestone
2485 -> Sky Shadestone
2486 -> Oceanic Gutstone
2487 -> Beastie Borestone
2488 -> Bone of Mummy
2489 -> Soul of Corpse Soldier
2490 -> Heart of Pharaoh
2491 -> Pass to Naval Base
2492 -> Map Switching 2
2493 -> Gold
2495 -> Axe
2496 -> Pickaxe
2499 -> Left Plaster Glove
2500 -> Left Brawler Glove
2501 -> Left Master Glove
2502 -> Left Jagged Blade
2503 -> Left Cosmo Blade
2504 -> Left Tiger Glove
2505 -> Left Hand of Death
2527 -> Raging Bull Tattoo
2528 -> Savage Bull Tattoo
2529 -> Primal Tattoo
2530 -> Hephaestus Framestone
2531 -> Hephaestus Clawstone
2532 -> Hephaestus Pawstone
2533 -> Hermes Framestone
2534 -> Hermes Clawstone
2535 -> Hermes Pawstone
2536 -> Apollo Framestone
2537 -> Apollo Clawstone
2538 -> Apollo Pawstone
2539 -> Poseidon Framestone
2540 -> Poseidon Clawstone
2541 -> Poseidon Pawstone
2542 -> Hestia Framestone
2543 -> Hestia Clawstone
2544 -> Hestia Pawstone
2545 -> Athena Framestone
2546 -> Athena Clawstone
2547 -> Athena Pawstone
2548 -> Artemis Crownstone
2549 -> Kylin Armor
2550 -> Kylin Gloves
2551 -> Kylin Boots
2552 -> Kylin Cap
2554 -> Face 1
2555 -> Face 2
2556 -> Face 3
2557 -> Face 4
2558 -> Face 5
2559 -> Face 6
2560 -> Face 7
2561 -> Face 8
2562 -> Soul of Hardin
2563 -> Soul of Darkness
2564 -> Soul of Abaddon
2565 -> Soul of Asura
2566 -> Soul of Abyss
2567 -> Soul of Styx
2588 -> Elven Signet
2589 -> Elven Royal Signet
2590 -> Novice Swordsman Medal
2591 -> Standard Swordsman Medal
2592 -> Expert Swordsman Medal
2593 -> Novice Hunter Medal
2594 -> Standard Hunter Medal
2595 -> Expert Hunter Medal
2596 -> Novice Explorer Medal
2597 -> Standard Explorer Medal
2598 -> Expert Explorer Medal
2599 -> Novice Herbalist Medal
2600 -> Standard Herbalist Medal
2601 -> Expert Chaos Voucher
2602 -> Novice Endeavor Emblem
2603 -> Standard Endeavor Emblem
2604 -> Expert Endeavor Emblem
2605 -> Novice Monster Covenant
2606 -> Standard Monster Covenant
2607 -> Expert Monster Covenant
2608 -> Novice Chaos Voucher
2609 -> Standard Chaos Voucher
2610 -> Expert Chaos Voucher
2611 -> Sailor Commerce Statue
2612 -> First-Mate Commerce Statue
2613 -> Captain Commerce Statue
2614 -> Heart of Sparkle
2615 -> Heart of Glory
2616 -> Heart of Splendor
2617 -> Compressed Energy I
2619 -> Compressed Energy II
2622 -> Compressed Energy III
2624 -> Compressed Energy IV
2625 -> Stone Catalyst
2630 -> Food Catalyst
2634 -> Special Catalyst
2635 -> Bone Catalyst
2636 -> Plant Catalyst
2637 -> Fur Catalyst
2638 -> Liquid Catalyst
2639 -> Wood Catalyst
2640 -> Pressurize Metal
2641 -> Solid Metal
2642 -> Support Metal
2643 -> Tenacious Metal
2644 -> Waterproof Metal
2649 -> Insulating Metal
2650 -> Little Squidy Captain Statue
2651 -> Smuggler Leader Statue
2652 -> Violent Air Porky Statue
2653 -> Berserk Mad Boar Statue
2654 -> Grassland Wolf Champion Statue
2655 -> Malicious Azure Siren Statue
2656 -> Aberrance Hopping Lizard Statue
2657 -> Ancient Sandy Tortoise Statue
2658 -> Man-Eating Spider Queen Statue
2659 -> Elite Tempest Sea Jelly Statue
2660 -> Strong Little Deer Statue
2661 -> Vampiric Elk Statue
2662 -> Snowy Snail Monarch Statue
2663 -> Fearsome Skeletal Archer Statue
2664 -> Aberrance Blood Polliwog Statue
2665 -> Grand Prize Voucher
2666 -> First Prize Voucher
2667 -> Second Prize Voucher
2668 -> Third Prize Voucher
2673 -> Mirage Generator Lv1
2674 -> Illusion Generator Lv1
2675 -> Stealth Lv1
2676 -> Radar Lv1
2677 -> Chain Bullet Lv1
2678 -> Water Mine Lv1
2679 -> Lv1 Manufacturing Guide
2680 -> Lv2 Manufacturing Guide
2681 -> Lv3 Manufacturing Guide
2682 -> Lv4 Manufacturing Guide
2683 -> Lv5 Manufacturing Guide
2684 -> Lv6 Manufacturing Guide
2685 -> Lv7 Manufacturing Guide
2686 -> Lv8 Manufacturing Guide
2687 -> Lv9 Manufacturing Guide
2688 -> Lv10 Manufacturing Guide
2689 -> Lv1 Cooking Guide
2690 -> Lv2 Cooking Guide
2691 -> Lv3 Cooking Guide
2692 -> Lv4 Cooking Guide
2693 -> Lv5 Cooking Guide
2694 -> Lv6 Cooking Guide
2695 -> Lv7 Cooking Guide
2696 -> Lv8 Cooking Guide
2697 -> Lv9 Cooking Guide
2698 -> Lv10 Cooking Guide
2699 -> Lv1 Crafting Guide
2700 -> Lv2 Crafting Guide
2701 -> Lv3 Crafting Guide
2702 -> Lv4 Crafting Guide
2703 -> Lv5 Crafting Guide
2704 -> Lv6 Crafting Guide
2705 -> Lv7 Crafting Guide
2706 -> Lv8 Crafting Guide
2707 -> Lv9 Crafting Guide
2708 -> Lv10 Crafting Guide
2709 -> Lv1 Analyze Guide
2710 -> Lv2 Analyze Guide
2711 -> Lv3 Analyze Guide
2712 -> Lv4 Analyze Guide
2713 -> Lv5 Analyze Guide
2714 -> Lv6 Analyze Guide
2715 -> Lv7 Analyze Guide
2716 -> Lv8 Analyze Guide
2717 -> Lv9 Analyze Guide
2718 -> Lv10 Analyze Guide
2719 -> Grenade Lv2
2720 -> Flash Bomb Lv2
2721 -> Radiation Lv2
2722 -> Soul Detector Lv2
2723 -> Ship Accelerator Lv2
2724 -> Ship Atomizer Lv2
2725 -> Ship Penetrator Lv2
2726 -> Ship Impaler Lv2
2727 -> Ship Flamer Lv2
2728 -> Evil Generator Lv2
2729 -> Lv2
2730 -> Carrion Ball Lv2
2731 -> Noise Polluter Lv2
2732 -> Earthquake Generator Lv2
2733 -> Time Bomb Lv2
2734 -> Hull Repair Lv2
2735 -> Food Generation Lv2
2736 -> Carrion Bullet Lv2
2737 -> Mirage Generator Lv2
2738 -> Illusion Generator Lv2
2739 -> Stealth Lv2
2740 -> Radar Lv2
2741 -> Chain Bullet Lv2
2742 -> Water Mine Lv2
2743 -> Grenade Lv3
2744 -> Flash Bomb Lv3
2745 -> Radiation Lv3
2746 -> Soul Detector Lv3
2747 -> Ship Accelerator Lv3
2748 -> Ship Atomizer Lv3
2749 -> Ship Penetrator Lv3
2750 -> Ship Impaler Lv3
2751 -> Ship Flamer Lv3
2752 -> Evil Generator Lv3
2753 -> Sand Bag Lv3
2754 -> Carrion Ball Lv3
2755 -> Noise Polluter Lv3
2756 -> Earthquake Generator Lv3
2757 -> Time Bomb Lv3
2758 -> Hull Repair Lv3
2759 -> Food Generation Lv3
2760 -> Carrion Bullet Lv3
2761 -> Mirage Generator Lv3
2762 -> Illusion Generator Lv3
2763 -> Stealth Lv3
2764 -> Radar Lv3
2765 -> Chain Bullet Lv3
2766 -> Water Mine Lv3
2767 -> Grenade Lv4
2768 -> Flash Bomb Lv4
2769 -> Radiation Lv4
2770 -> Soul Detector Lv4
2771 -> Ship Accelerator Lv4
2772 -> Ship Atomizer Lv4
2773 -> Ship Penetrator Lv4
2774 -> Ship Impaler Lv4
2775 -> Ship Flamer Lv4
2776 -> Evil Generator Lv4
2777 -> Sand Bag Lv4
2778 -> Carrion Ball Lv4
2779 -> Noise Polluter Lv4
2780 -> Earthquake Generator Lv4
2781 -> Time Bomb Lv4
2782 -> Hull Repair Lv4
2783 -> Food Generation Lv4
2784 -> Carrion Bullet Lv4
2785 -> Mirage Generator Lv4
2786 -> Illusion Generator Lv4
2787 -> Stealth Lv4
2788 -> Radar Lv4
2789 -> Chain Bullet Lv4
2790 -> Water Mine Lv4
2791 -> Grenade Lv5
2792 -> Flash Bomb Lv5
2793 -> Radiation Lv5
2794 -> Soul Detector Lv5
2795 -> Ship Accelerator Lv5
2796 -> Ship Atomizer Lv5
2797 -> Ship Penetrator Lv5
2798 -> Ship Impaler Lv5
2799 -> Ship Flamer Lv5
2800 -> Evil Generator Lv5
2801 -> Sand Bag Lv5
2802 -> Carrion Ball Lv5
2803 -> Noise Polluter Lv5
2804 -> Earthquake Generator Lv5
2805 -> Time Bomb Lv5
2806 -> Hull Repair Lv5
2807 -> Food Generation Lv5
2808 -> Carrion Bullet Lv5
2809 -> Mirage Generator Lv5
2810 -> Illusion Generator Lv5
2811 -> Stealth Lv5
2812 -> Radar Lv5
2813 -> Chain Bullet Lv5
2814 -> Water Mine Lv5
2815 -> Chilling Icy Crystal
2816 -> Book of Honor Bonus
2817 -> Hardin's Bind
2818 -> Hardin's Touch
2819 -> Hardin's Print
2820 -> Darkness's Shadow
2821 -> Darkness's Touch
2822 -> Darkness's Trace
2823 -> Abaddon's Seal
2824 -> Abaddon's Hand
2825 -> Abaddon's Brace
2826 -> Asura's Protection
2827 -> Asura's Caress
2828 -> Asura's Dance
2829 -> Abyss's Possession
2830 -> Hands of Death
2831 -> Abyss's Trail
2832 -> Styx's Torso
2833 -> Styx's Span
2834 -> Styx's Wanderer
2835 -> Crown of Decedent
2836 -> Chest of Hardin
2837 -> Chest of Darkness
2838 -> Chest of Abaddon
2839 -> Chest of Asura
2840 -> Chest of Abyss
2841 -> Chest of Styx
2842 -> Carcass of Death
2843 -> Rightful Chest of Black Dragon
2844 -> Pass to Abandon 4
2845 -> Red Rope
2846 -> Melancholy of Phantom Baron
2847 -> Melancholy of Demon Flame
2848 -> Melancholy of Evil Beast
2849 -> Melancholy of Tyran
2850 -> Melancholy of Phoenix
2851 -> Melancholy of Despair
2852 -> Melancholy of Drakan
2853 -> Melancholy of Tidal
2854 -> Hair of Death
2855 -> Eye of Death
2856 -> Tooth of Death
2857 -> Heart of Death
2858 -> Snuff
2859 -> Eyepatch
2860 -> Otter Muffs
2861 -> Racoon Muffs
2863 -> Happy Bunny Muffs
2864 -> Night Owl Muffs
2865 -> Token of Blood Alliance
2866 -> Joyful Bunny Muffs
2867 -> Bunny Baby Muffs
2868 -> Lucky Bunny Muffs
2869 -> Heavenly Gloves
2878 -> Special Quest Card
2885 -> Bear Gloves
2886 -> Turket Meat
2887 -> Christmas Greeting Card
2888 -> Turkey Summon Scroll
2889 -> Reindeer Summon Scroll
2890 -> Snowman Summon Scroll
2891 -> Santa Summon Scroll
2892 -> Dirty Christmas Box
2893 -> Exquisite Christmas case
2894 -> Christmas Rose
2895 -> Tasty Turkey Meat
2896 -> Little Snow Ball
2897 -> Christmas Surprise Gift
2898 -> Christmas Dinner
2899 -> Christmas Gem Voucher
2900 -> Monster Summon Scroll
2901 -> Chilling Frost Crystal
2902 -> Love Amulet of a Princess
2903 -> Love Amulet of a Prince
2904 -> Gift of the Beauty
2905 -> Gift of the Hunk
2906 -> Wedding Candy
2907 -> Wedding Gift Parcel
2908 -> Lucky Piggy Clover
2909 -> Lucky Piggy Chest
2910 -> PKO Auspicious Bag
2911 -> Challenge Letter
2912 -> Bawcock Letter
2913 -> Marriage Certificate
2914 -> Marriage Certificate
2915 -> Chest of Gown
2916 -> Chest of Fate
2917 -> Oracle
2918 -> Stone of Meng
2919 -> Death's Burden
2920 -> Death's Burden
2921 -> Death's Burden
2922 -> Death's Burden
2923 -> Death's Burden
2924 -> Death's Burden
2925 -> Death's Burden
2926 -> Death's Burden
2927 -> Sealed Soul of Hardin
2928 -> Sealed Soul of Darkness
2929 -> Sealed Soul of Abaddon
2930 -> Sealed Soul of Asura
2931 -> Sealed Soul of Abyss
2932 -> Sealed Soul of Styx
2933 -> Titter of Black Dragon
2934 -> Silhouette of Death
2935 -> Curse of Hardin
2936 -> Curse of Darkness
2937 -> Curse of Abaddon
2938 -> Curse of Asura
2939 -> Curse of Abyss
2940 -> Curse of Styx
2941 -> Rebirth Card
2942 -> Seal of Aries
2943 -> Pass to Tauras Gate
2944 -> Aries Palace Chaos Emblem
2945 -> Aries Palace Renown Emblem
2946 -> Aries Palace Leveling Emblem
2947 -> Aries Palace Honorable Emblem
2948 -> Aries Palace Gatherer Emblem
2949 -> Aries Palace Exploration Emblem
2950 -> Aries Palace Boss Emblem
2951 -> Chaos Bonus Book
2952 -> Special Operation Card
2953 -> Gift of April's Fool
2954 -> Proof of Death
2955 -> Aries Captain Apparel Chest
2956 -> Rebirth Crusader Skill Book
2957 -> Rebirth Champion Skill Book
2958 -> Rebirth Seal Master Skill Book
2959 -> Rebirth Cleric Skill Book
2960 -> Rebirth Voyager Skill Book
2961 -> Rebirth Sharpshooter Skill Book
2964 -> Navy Token
2986 -> Statue Pass
2988 -> Famous Cake
2989 -> Super Sushi
2990 -> Scroll of White Sheep Guardian
2991 -> Oarsman Boots
2992 -> Deckman Boots
2993 -> Mastman Boots
2994 -> Hurricane Boots
2995 -> Whirlpool Boots
2996 -> Wind Boots
3001 -> Pirate Token
3002 -> Tail Grass
3003 -> Playful Racoon Shoes
3004 -> Duckling Shoes
3005 -> Big Crab Shoes
3006 -> Sacred Candle
3007 -> Lighted Sacred Candle
3008 -> Prawn Shoes
3009 -> Pincer Shoes
3010 -> Goddess Statue
3011 -> Lucky Card Chest
3012 -> Lizardman Warrior Commander Summon Scroll
3013 -> Evil Tribal Chieftian summon scroll
3014 -> Pirate Captain 008 Summoning Scroll
3015 -> Fox Spirit summon scroll
3016 -> Black Dragon Phantom summoning scroll
3026 -> Taurus Protector Seal
3027 -> Gemini Gate Ticket
3028 -> Taurus Palace Chaos Emblem
3029 -> Taurus Palace Reputation Emblem
3030 -> Taurus Palace Level Emblem
3031 -> Taurus Palace honor medal
3032 -> Taurus Palace Gathering Emblem
3033 -> Taurus Palace Exploring Emblem
3034 -> Taurus Palace BOSS Emblem
3035 -> Taurus Captain Apparel Chest
3036 -> Taurus Guardian Scroll
3037 -> Warm Dumpling
3039 -> Level pushing Machine
3040 -> Egg yolk dumpling string
3041 -> Red Bean Dumpling String
3042 -> Sticky rice string
3043 -> Egg Yolk Dumpling
3044 -> Bean Paste Dumpling
3045 -> Sticky Rice Dumpling
3046 -> Power Sail
3047 -> Voodoo Puppet
3048 -> Pass to Thundoria Castle
3049 -> Pass to Thundoria Harbor
3050 -> Pass to Sacred Snow Mountain
3051 -> Pass to Andes Forest Haven
3052 -> Pass to Oasis Haven
3053 -> Pass to Icespire Haven
3054 -> Pass to Lone Tower
3055 -> Pass to Barren Cavern
3056 -> Pass to Abandoned Mine 2
3057 -> Pass to Silver Mine 2
3058 -> Pass to Silver Mine 3
3059 -> Ticket to Lone Tower 2
3060 -> Pass to Lone Tower 3
3061 -> Bear Shoes
3062 -> Scrap of Rotten Meat
3063 -> Tooth of Fox Immortal
3064 -> Rotten Meat
3065 -> Voodoo Stick
3067 -> Frozen Dragon Scale
3068 -> Talisman of Curse
3069 -> Chunk of Rotten Meat
3070 -> Pass to Lone Tower 4
3071 -> Pass to Lone Tower 5
3072 -> Pass to Lone Tower 6
3073 -> Pass to Abandon Mine 1
3074 -> Refining Catalyst
3075 -> Composition Catalyst
3076 -> Pass to Spring Town
3077 -> Honey Chocolate
3084 -> Sigil of Anubis
3085 -> Mask of Mummy King
3086 -> Career Lot
3087 -> Fortune Lot
3088 -> 28 Slot Inventory
3089 -> 32 Slot Inventory
3090 -> 36 Slot Inventory
3091 -> 40 Slot Inventory
3092 -> 44 Slot Inventory
3093 -> 48 Slot Inventory
3094 -> Amplifier of Strive
3095 -> Hi-Amplifier of Strive
3096 -> Amplifier of Luck
3097 -> Hi-Amplifier of Luck
3098 -> Constitution Recovery Flask
3099 -> SP Holy Water
3100 -> Elixir of Lion
3101 -> Elixir of Monkey
3102 -> Elixir of Bull
3103 -> Elixir of Eagle
3104 -> Elixir of Soul
3105 -> Skating Potion
3106 -> Battleship Armor
3107 -> lantern festival hurricane lamp
3108 -> Gold Alloy Pickaxe
3109 -> Vial of Strength Reset
3110 -> Vial of Consitution Reset
3111 -> Vial of Agility Reset
3112 -> Vial of Accuracy Reset
3113 -> Vial of Spirit Reset
3114 -> Sea Weed Killer
3115 -> Transparent Shoes
3116 -> Elven Fruit
3117 -> Red Date
3118 -> Mushroom
3119 -> Stramonium Fruit
3120 -> Ice Fruit
3121 -> Rainbow Fruit
3122 -> Elven Fruit Juice
3123 -> Red Date Tea
3124 -> Mushroom Soup
3125 -> Stramonium Fruit Juice
3126 -> Ice Cream
3127 -> Rainbow Fruit Juice
3128 -> Fruity Mix
3129 -> Medicated Grass
3130 -> Fancy Petal
3131 -> Strange Fruit
3132 -> Snowy Grass Bud
3133 -> Liquorice Potion
3134 -> Energetic Tea
3135 -> Special Ointment
3136 -> Snowy Soft Bud
3137 -> Tiamari Fruit
3138 -> Mystery Fruit
3139 -> Agrypnotic
3140 -> Magical Potion
3141 -> Old Ticket
3142 -> Return Ticket
3143 -> Revival Clover
3144 -> Revival Flower
3145 -> Revival Fruit
3146 -> Panacea
3147 -> Incitant
3148 -> Kara Pill
3149 -> Wakening Salt
3150 -> Tropical Fruit
3151 -> Coconut
3152 -> Pet Food
3153 -> Chicken Cutlet
3154 -> Beef Jerky
3155 -> Tombola Box
3156 -> Lottery Ticket
3157 -> Magical Case
3158 -> Unknown Egg
3159 -> Suspicious Egg
3160 -> Sword Mastery
3161 -> Will of Steel
3162 -> Strengthen
3163 -> Deftness
3164 -> Concentration
3165 -> Illusion Slash
3166 -> Mighty Strike
3167 -> Howl
3168 -> Greatsword Mastery
3169 -> Barbaric Crush
3170 -> Berserk
3171 -> Totem's Worship
3172 -> Blood Bull
3173 -> Primal Rage
3174 -> Dual Sword Mastery
3175 -> Evasion
3176 -> Blood Frenzy
3177 -> Stealth
3178 -> Backstab
3179 -> Shadow Slash
3180 -> Poison Dart
3181 -> Numb
3182 -> Beast Strength
3183 -> Recuperate
3184 -> Shield Mastery
3185 -> Shield of Thorns
3186 -> Parry
3187 -> Range Mastery
3188 -> Windwalk
3189 -> Eagle's Eye
3190 -> Dual Shot
3191 -> Adds Dodge
3192 -> Firegun Mastery
3193 -> Meteor Shower
3194 -> Ranger
3195 -> Hunter Strike
3196 -> Astro Strike
3197 -> Frozen Arrow
3198 -> Magma Bullet
3199 -> Penetrating Bullet
3200 -> Dispersion Bullet
3201 -> Gunpowder Research
3202 -> Cripple
3203 -> Enfeeble
3204 -> Headshot
3205 -> Vigor
3206 -> Heal
3207 -> Recover
3208 -> Spiritual Bolt
3209 -> True Sight
3210 -> Spiritual Fire
3211 -> Tempest Boost
3212 -> Divine Grace
3213 -> Greater Heal
3214 -> Greater Recover
3215 -> Revival
3216 -> Tornado Swirl
3217 -> Angelic Shield
3218 -> Seal of Elder
3219 -> Shadow Insignia
3220 -> Cursed Fire
3221 -> Counterguard
3222 -> Abyss Mire
3223 -> Energy Shield
3224 -> Healing Spring
3225 -> Mining
3226 -> Woodcutting
3227 -> Diligence
3228 -> Current
3229 -> Conch Armor
3230 -> Tornado
3231 -> Lightning Bolt
3232 -> Algae Entanglement
3233 -> Conch Ray
3234 -> Tail Wind
3235 -> Whirlpool
3236 -> Fog
3237 -> Lightning Curtain
3238 -> Break Armor
3239 -> Rousing
3240 -> Almighty Gem
3241 -> Venom Arrow
3242 -> Harden
3243 -> Standard warrior study book
3244 -> Novice Hunter Study Book
3245 -> Herbalist novice read
3246 -> Explorer novice read
3247 -> Novice warrior study book
3248 -> Standard Hunter Study Book
3249 -> Herbalist standard read
3250 -> Explorer standard read
3251 -> Expert warrior study book
3252 -> Hunter expert read
3253 -> Expert Herbalist study book
3254 -> Expert Explorer Study Book
3255 -> Novice Crusader Study Book
3256 -> Novice Champion study book
3257 -> Novice SharpShooter study book
3258 -> Novice Cleric study book
3259 -> Novice Sealmaster study book
3260 -> Novice Voyager study book
3261 -> Standard Crusader Study Book
3262 -> Standard Champion study book
3263 -> Standard SharpShooter study book
3264 -> Standard Cleric study book
3265 -> Standard SealMaster study book
3266 -> Standard Voyager study book
3267 -> Crusader expert read
3268 -> Expert Champion Study Book
3269 -> Expert SharpShooter Study Book
3270 -> Expert Cleric study book
3271 -> Expert SealMaster Study book
3272 -> Expert Voyager Study Book
3273 -> Useful tactic information for Crusader
3274 -> Useful skill information for Champion
3275 -> Useful tactic information for SharpShooter
3276 -> Useful skill information for Cleric
3277 -> Useful tactic information for SealMaster
3278 -> Useful tactic information for Voyager
3283 -> pencil
3284 -> abacus
3285 -> Calculator
3286 -> WenQuXing
3287 -> Laptop Computer
3288 -> Study skill book
3289 -> Student card
3290 -> Intelligence fruit
3291 -> Golden Apple
3292 -> Pappa's Letter
3293 -> Tiger Roar
3294 -> Fishing
3295 -> Salvage
3296 -> Set Stall
3297 -> Taunt
3298 -> Roar
3299 -> Repair
3300 -> Intense Magic
3301 -> Crystalline Blessing
3302 -> Black Market Equipment
3303 -> Black Market Equipment
3304 -> Black Market Equipment
3305 -> Black Market Equipment
3306 -> Black Market Equipment
3307 -> Black Market Equipment
3308 -> Black Market Equipment
3309 -> Black Market Equipment
3310 -> Black Market Equipment
3311 -> Black Market Equipment
3312 -> Black Market Equipment
3313 -> Black Market Equipment
3314 -> Black Market Equipment
3315 -> Black Market Equipment
3316 -> Black Market Equipment
3317 -> Black Market Equipment
3318 -> Black Market Equipment
3319 -> Black Market Equipment
3320 -> Black Market Equipment
3321 -> Black Market Equipment
3322 -> Black Market Equipment
3323 -> Black Market Equipment
3324 -> Black Market Equipment
3325 -> Black Market Equipment
3326 -> Black Market Equipment
3327 -> Black Market Equipment
3328 -> Black Market Equipment
3329 -> Black Market Equipment
3330 -> Black Market Equipment
3331 -> Black Market Equipment
3332 -> Black Market Equipment
3333 -> Black Market Equipment
3334 -> Black Market Equipment
3335 -> Fairy March
3336 -> Mystic Clover
3337 -> Fairy Soul
3338 -> Birthday Cake
3339 -> Acceleration Potion
3340 -> Triangle Sail
3341 -> High Grade Armor
3342 -> Lantern
3343 -> Rose
3344 -> Lovers Chocolate
3345 -> Firecracker A
3346 -> Firecracker B
3347 -> Firecracker C
3348 -> Firework A
3349 -> Firework B
3350 -> Firework C
3351 -> Royal Salute A
3352 -> Royal Salute B
3353 -> Royal Salute C
3354 -> Heart Shape I
3355 -> Heart Shape LOVE
3356 -> Heart Shape U
3360 -> Diamond
3361 -> Pearl
3362 -> Black Pearl
3363 -> Pink Pearl
3364 -> Clarity Crystal
3365 -> Pink Crystal
3366 -> Azure Crystal
3367 -> Amber Crystal
3368 -> Steel
3369 -> Aluminum
3370 -> Stainless Steel
3371 -> Silicon Sand
3372 -> Withered Branch
3373 -> Metallic Wood
3374 -> Metallic Blossom
3375 -> Stiff Wood
3376 -> Coconut Blossom
3377 -> Soft Wood
3378 -> Agate Fragment
3379 -> Agate
3380 -> Agate Crystal
3381 -> Ancient Scroll Fragment
3382 -> Ancient Scroll
3383 -> Rag
3384 -> Cloth
3385 -> Splendor Cloth
3386 -> Colorant
3387 -> Red Stone
3388 -> Glowing Mystic Stone
3389 -> Sparkling Stone
3390 -> Meteorite Fragment
3391 -> Meteorite
3392 -> Torn Explorer Skill Book
3393 -> Torn Blessing Skill Book
3394 -> Torn Swordsman Skill Book
3395 -> Torn Trader Skill Book
3396 -> Torn Sailor Skill Book
3397 -> Torn Hunter Skill Book
3398 -> Torn Artificer Skill Book
3399 -> Torn Life Skill Book
3400 -> Skeletar Chest of Swordsman
3401 -> Skeletar Chest of Hunter
3402 -> Skeletar Chest of Herbalist
3403 -> Skeletar Chest of Explorer
3404 -> Incantation Chest of Crusader
3405 -> Incantation Chest of Champion
3406 -> Incantation Chest of Sharpshooter
3407 -> Incantation Chest of Cleric
3408 -> Incantation Chest of Seal Master
3409 -> Incantation Chest of Voyager
3410 -> Evanescence Chest of Crusader
3411 -> Evanescence Chest of Champion
3412 -> Evanescence Chest of Sharpshooter
3413 -> Evanescence Chest of Cleric
3414 -> Evanescence Chest of Seal Master
3415 -> Evanescence Chest of Voyager
3416 -> Enigma Chest of Crusader
3417 -> Enigma Chest of Champion
3418 -> Enigma Chest of Sharpshooter
3419 -> Enigma Chest of Cleric
3420 -> Enigma Chest of Seal Master
3421 -> Enigma Chest of Voyager
3422 -> Chest of Forsaken City
3423 -> Chest of Dark Swamp
3424 -> Chest of Demonic World
3425 -> Nal Runestone
3426 -> Sol Runestone
3427 -> Ja Runestone
3428 -> El Runestone
3429 -> Cam Runestone
3430 -> Tef Runestone
3431 -> Yal Runestone
3432 -> Lum Runestone
3433 -> Fel Runestone
3434 -> Skeleton of Sorrow Warrior
3435 -> Sorrow Archer Carcass
3436 -> Wailing Warrior Carcass
3437 -> Wailing Archer Carcass
3438 -> Sorrow Soul
3439 -> Sorrow Heart
3440 -> Wailing Soul
3441 -> Wailing Heart
3442 -> Mud Slice
3443 -> Swamp Wood
3444 -> Mud Chunk
3445 -> Rotten Roots
3446 -> Spirit of the Swamp
3447 -> Watcher Soul
3448 -> Heart of Mudman
3449 -> Elite Wailing Warrior Carcass
3450 -> Wailing Marksman Carcass
3451 -> Cursed Mummy Carcass
3452 -> Crazy Mummy Carcass
3453 -> Medal of the Invincible Knight
3454 -> Earthen Core
3455 -> Ter Runestone
3456 -> Fa Runestone
3457 -> Kal Runestone
3458 -> Chest of Enigma
3459 -> Water Mine
3460 -> Cake
3461 -> Fruity Mix
3462 -> Magical Clover
3463 -> Icy Crystal
3465 -> Grade 3 Wood
3466 -> Grade 2 Wood
3467 -> Grade 1 Wood
3468 -> Rare Wood
3469 -> Wood Drop 5
3470 -> Wood Drop 6
3471 -> Wood Drop 7
3472 -> Wood Drop 8
3473 -> Wood Drop 9
3474 -> Wood Drop 10
3475 -> Grade 3 Ore
3476 -> Grade 2 Ore
3477 -> Grade 1 Ore
3478 -> Rare Ore
3479 -> Ore Drop 5
3480 -> Ore Drop 6
3481 -> Ore Drop 7
3482 -> Ore Drop 8
3483 -> Ore Drop 9
3484 -> Ore Drop 10
3485 -> Snowy Mystic Shrub Card
3486 -> Mystic Shrub Card
3487 -> Dry Mystic Shrub Card
3488 -> Melon Card
3489 -> Mystic Flower Card
3490 -> Cactus Card
3491 -> Snow Squirt Card
3492 -> Baby Scorpion Card
3493 -> Forest Spirit Card
3494 -> Snow Squidy Card
3495 -> Humpy Camel Card
3496 -> Mini Bee Card
3497 -> Snowy Bear Cub Card
3498 -> Little Squirt Card
3499 -> Sleepy Snail Card
3500 -> Hopping Lizard Card
3501 -> Little Squidy Card
3502 -> Snowy Piglet Card
3503 -> Sharp Beak Card
3504 -> Bubble Clam Card
3505 -> Big Scorpion Card
3506 -> Naiad Card
3507 -> Cuddly Lamb Card
3508 -> Oyster Card
3509 -> Piglet Card
3510 -> Killer Cactus Card
3511 -> Wolf Cub Card
3512 -> Sea Snail Card
3513 -> Little White Deer Card
3514 -> Little Deer Card
3515 -> Iron Crab Card
3516 -> Sentry Crab
3517 -> Grass Tortoise Card
3518 -> Sailor Squirt Card
3519 -> Angelic Panda Card
3520 -> Starving Wolf Card
3521 -> Snowy Bat Card
3522 -> Snowy Snail Card
3523 -> Ghost Tree Card
3524 -> Sailor Squidy Card
3525 -> Smuggler Card
3526 -> Greedy Shroom Card
3527 -> Snowy Mystic Flower Card
3528 -> Reindeer Card
3529 -> Vampire Bat Card
3530 -> Bandit Card
3531 -> Sailor Penguin Card
3532 -> Tusk Battle Boar Card
3533 -> Miner Mole Card
3534 -> Sand Bandit Card
3535 -> Stramonium Card
3536 -> Feral Wolf Card
3537 -> Rookie Boxeroo Card
3538 -> Sand Raider Card
3539 -> Rock Golem Card
3540 -> Mad Boar Card
3541 -> Killer Shroom Card
3542 -> Armored King Crab Card
3543 -> Fallen Naiad Card
3544 -> Horned Penguin Card
3545 -> Fearsome Tortoise Card
3546 -> Man Eating Spider Card
3547 -> War Tortoise Card
3548 -> Snow Lady Card
3549 -> Playful Snow Doll Card
3550 -> Mud Monster Card
3551 -> Mudman Card
3552 -> Berserk Boxeroo Card
3553 -> Yeti Card
3554 -> Cavalier Card
3555 -> Marsh Spirit Card
3556 -> Brigand Card
3557 -> Lizard King Card
3558 -> Skeletal Archer Card
3559 -> Fragile Snow Doll Card
3560 -> Naive Snow Doll Card
3561 -> Polar Bear Card
3562 -> Owlie Card
3563 -> Ninja Mole Card
3564 -> White Owlie Card
3565 -> Skeletal Warrior Card
3566 -> Werewolf Warrior Card
3567 -> Spiky Stramonium Card
3568 -> Snowman Card
3569 -> Tribal Villager Card
3570 -> Undead Archer Card
3571 -> Behemoth Card
3572 -> Snow Yeti Card
3573 -> Pumpkin Knight Card
3574 -> Tribal Warrior Card
3575 -> Treant Card
3576 -> Bandit Leader - Adder Card
3577 -> Werewolf Archer Card
3578 -> Undead Warrior Card
3579 -> Lizardman Card
3580 -> Guardian Angel Card
3581 -> Tribal Shaman Card
3582 -> Forest Hunter Card
3583 -> Stone Golem Card
3584 -> Iron Golem Card
3585 -> Bloodthirsty Hunter Card
3586 -> Lizard Warrior Card
3587 -> Terra Soldier Card
3588 -> Baby Icy Dragon Card
3589 -> Terra Warrior Card
3590 -> Terra Artificer Card
3591 -> White Bobcat Card
3592 -> Terra Captain Card
3593 -> Boxeroo Champion Card
3594 -> Terra Elder Card
3595 -> Black Bobcat Card
3596 -> Relic Guard Card
3597 -> Daemon Captain Card
3598 -> Icy Dragon Card
3599 -> Tribal Chieftian Card
3600 -> Relic Protector Card
3601 -> Violent King Bear Card
3602 -> King Penguin Card
3603 -> Angel Squirt Card
3604 -> Angel Squidy Card
3605 -> Nightmare Card
3606 -> Soul of Goddess Card
3607 -> Crimson Golem Card
3608 -> Lubi Terror Card
3609 -> Blur Beast Card
3610 -> Pumpkin General Card
3611 -> Sand Bandit Leader - Garet Card
3612 -> Ancient Mystic Shrub Card
3613 -> King Tortoise Card
3614 -> Cactus Chieftian Card
3615 -> Terra Guard Card
3616 -> Whacky Lamb Card
3617 -> Gigantic Melon Card
3618 -> Snowy Shroom Card
3619 -> Sand Brigand Card
3620 -> Barbaric Bee Card
3621 -> Sandy Tortoise Card
3622 -> Hard Crust Snail Card
3623 -> Snowy Bear Cub Card
3624 -> Air Porky Card
3625 -> Sandy Shroom Card
3626 -> Snowy Wolf Card
3627 -> Meadow Deer Card
3628 -> Armored Crab Card
3629 -> Northern Snail Card
3630 -> Mature Grass Tortoise Card
3631 -> Snow Spirit Card
3632 -> Combat Piglet Card
3633 -> Grassland Elk Card
3634 -> Grassland Wolf Card
3635 -> Battle Tortoise Card
3636 -> Slowpoke Snail Card
3637 -> Snowy Tortoise Card
3638 -> Crazy Sheep Card
3639 -> Stinging Beak Card
3640 -> Ferocious Scorpion Card
3641 -> Snowy Tusk Boar Card
3642 -> Thickskin Lizard Card
3643 -> Seaweed Card
3644 -> Sea Jelly Card
3645 -> Skeleton Fish Card
3646 -> Baby Squid Card
3647 -> Water Dancer Card
3648 -> Electric Sea Jelly Card
3649 -> Blood Polliwog Card
3650 -> Mermaid Card
3651 -> Tempest Sea Jelly Card
3652 -> Ruby Dolphin Card
3653 -> Fish Bone Card
3654 -> Great Polliwog Card
3655 -> Azure Siren Card
3656 -> Sawtooth Shark Card
3657 -> Crystalline Dolphin Card
3658 -> Crimson Siren Card
3659 -> Mermaid Queen Card
3660 -> Siren Queen Card
3661 -> Great King Clam Card
3662 -> Atrocious Yeti King Card
3663 -> Captain Fickle Card
3664 -> Wolf Card
3665 -> Cumbersome Snowman Card
3670 -> Steel-shell Snail Card
3671 -> Cumbersome Yeti Card
3676 -> Elite Skeletal Archer Card
3677 -> Infant Icy Dragon Card
3678 -> Sand Crab Card
3680 -> Dark Mud Monster Card
3681 -> Great Polar Bear Card
3682 -> Water Fairy Card
3683 -> Horrific Snowman Card
3685 -> Sturdy Rock Golem Card
3686 -> Frenzied Wolf Card
3687 -> Horrific Yeti Card
3688 -> Sakura Pirate Sailor Card
3689 -> Elite Skeletal Warrior Card
3690 -> Sakura Pirate Fighter Card
3691 -> Sakura Pirate Militia Card
3693 -> Elite Werewolf Warrior Card
3694 -> Iron Mummy Card
3695 -> Huge Spiky Stramonium Card
3696 -> Steel Mummy Card
3699 -> Agile Tribal Villager Card
3701 -> Vicious Undead Warrior Card
3702 -> Palace Guard Card
3703 -> Northern Pirate Sailor Card
3704 -> Northern Pirate Fighter Card
3705 -> Deadly Skeletal Archer Card
3706 -> Northern Pirate Militia Card
3708 -> Skeletal Warrior Leader Card
3709 -> Cursed Corpse Card
3712 -> Wild Seaweed Card
3713 -> Floating Seaweed Card
3714 -> Icky Seaweed Card
3715 -> Cursed Seaweed Card
3716 -> White Cap Sea Jelly Card
3717 -> Man Eating Sea Jelly Card
3718 -> Blackarrow Squid Card
3719 -> Swift Skeleton Fish Card
3720 -> Tanned Skeleton Fish Card
3721 -> Sluggish Squid Card
3722 -> Ocean Water Dancer Card
3723 -> Vicious Baby Squid Card
3724 -> Evil Water Dancer Card
3725 -> Poisonous Sea Jelly Card
3726 -> Raging Sea Jelly Card
3727 -> Blackout Squid Card
3728 -> Octopus Card
3729 -> Chameleon Squid Card
3730 -> Decaying Fish Bone Card
3731 -> Evil Skeleton Fish Card
3732 -> Swift Baby Squid Card
3733 -> Rapid Squid Card
3734 -> Midnight Water Dancer Card
3735 -> Swift Water Dancer Card
3736 -> Feral Skeleton Fish Card
3737 -> Thunder Sea Jelly Card
3738 -> Shocking Sea Jelly Card
3739 -> Evil Blood Polliwog Card
3740 -> Swift Electric Sea Jelly Card
3741 -> Feral Blood Polliwog Card
3742 -> Prowling Blood Polliwog Card
3743 -> Vicious Mermaid Card
3744 -> Jack the Pirate's Support Ship Card
3745 -> Jack the Pirate's Warship Card
3746 -> Wandering Mermaid Card
3747 -> Shadow Mermaid Card
3748 -> Old Sawtooth Shark Card
3749 -> White Finned Shark Card
3750 -> Jack the Pirate's Command Ship Card
3751 -> Spearhead Shark Card
3752 -> Black Finned Shark Card
3753 -> Sakura 13 Support Ship Card
3754 -> Raging Electric Sea Jelly Card
3755 -> Sakura 13 Warship Card
3756 -> Vampiric Polliwog Card
3757 -> Tempest Sea Jelly Card
3758 -> Silk Shark Card
3759 -> Topaz Dolphin Card
3760 -> Hurricane Sea Jelly Card
3761 -> Mature Ruby Dolphin Card
3762 -> Sakura 13 Pirate Command Ship Card
3763 -> Spiny Fish Bone Card
3764 -> Northern Pirate Support Ship Card
3765 -> Hungry Fish Bone Card
3766 -> Northern Pirate Warship Card
3767 -> Navy Militia Card
3768 -> Small Treant Card
3769 -> Giant Lizard Card
3770 -> Long Hair Crab Card
3771 -> Horrific Cursed Corpse Card
3772 -> Vicious Pumpkin Knight Card
3773 -> Chimera Card
3774 -> Elite Tribal Warrior Card
3775 -> Treant Terror Card
3776 -> Elite Werewolf Archer Card
3777 -> Mad Tribal Villager Card
3778 -> Evil Undead Warrior Card
3779 -> Evil Pumpkin Knight Card
3780 -> Werewolf Warrior Leader Card
3781 -> Shadow Hunter Card
3782 -> Palace Guard Card
3783 -> Lumbering Treant Card
3784 -> Cursed Water Fairy Card
3785 -> Corrupted Guardian Angel Card
3786 -> Jack the Pirate's Sailor Card
3787 -> Jack the Pirate's Fighter Card
3788 -> Jack the Pirate's Militia Card
3789 -> Cavalier Card
3790 -> Jack's Sailor Emblem
3791 -> Jack's Fighter Emblem
3792 -> Jack's Militia Emblem
3793 -> Cavalier Insignia
3794 -> Jack's Sailor Bandana
3795 -> Jack's Fighter Dagger
3796 -> Jack's Militia Sword
3797 -> Cavalier's Horsewhip
3798 -> Blade of Crimson Flame
3799 -> Sword of the Tempest
3800 -> Spike of Sistine
3801 -> Sword of the Kylin
3802 -> Sword of Glowing Flame
3803 -> Roar of Gallon
3804 -> Greatsword of the Tortoise
3805 -> Firegun of Clarion Mist
3806 -> Flaming Pistol
3807 -> Rifle of Darwin
3808 -> Rifle of the White Tiger
3809 -> Emerald Vine Wand
3810 -> Seal of Frozen Crescent
3811 -> Staff of Udine
3812 -> Staff of the Peacock
3813 -> Glory Sigil
3814 -> Staff of Hope
3815 -> Staff of the Phoenix
3816 -> Blade of the Mist
3817 -> Blade of the Tempest
3818 -> Spike of Forlorn
3819 -> Blade of the Green Dragon
3820 -> Crystal of Nimbleness
3821 -> Crystal of Enchantment
3822 -> Heart of Sorrow
3823 -> Heart of Misery
3824 -> Demonic Giant Blade
3825 -> Demonic Giant Stick
3826 -> Necklace of Snowman Warlord
3827 -> Spirit Elixir
3828 -> Ticket to Thundoria Castle
3829 -> Ticket to Thundoria Harbor
3830 -> Ticket to Sacred Snow Mountain
3831 -> Ticket to Andes Forest Haven
3832 -> Ticket Oasis Haven
3833 -> Ticket to Icespire Haven
3834 -> Ticket to Lone Tower
3835 -> Ticket to Barren Cavern
3836 -> Ticket to Abandoned Mine 2
3837 -> Ticket to Silver Mine 2
3838 -> Ticket to Silver Mine 3
3839 -> Ticket to Lone Tower 2
3840 -> Ticket to Lone Tower 3
3841 -> Ticket to Lone Tower 4
3842 -> Ticket to Lone Tower 5
3843 -> Ticket to Lone Tower 6
3844 -> Heaven's Berry
3845 -> Charmed Berry
3846 -> Voodoo Doll
3847 -> Ticket to Abandon Mine 1
3848 -> Consitution Recovery Vial
3849 -> Medal of Valor
3850 -> Card A
3851 -> Card B
3852 -> Card C
3853 -> Card D
3854 -> Card E
3855 -> Card F
3856 -> Card G
3857 -> Card H
3858 -> Card I
3859 -> Card J
3860 -> Card K
3861 -> Card L
3862 -> Card M
3863 -> Card N
3864 -> Card O
3865 -> Card P
3866 -> Card Q
3867 -> Card R
3868 -> Card S
3869 -> Card T
3870 -> Card U
3871 -> Card V
3872 -> Card W
3873 -> Card X
3874 -> Card Y
3875 -> Card Z
3876 -> Refining Sand
3877 -> Lv 1 Refining Gem Voucher
3878 -> Lv 2 Refining Gem Voucher
3879 -> Special Mystic Fruit
3880 -> Super Mystic Fruit
3881 -> Special Lucky Fruit
3882 -> Super Lucky Fruit
3883 -> Blue Forging Fruit
3884 -> Red Combining Fruit
3885 -> Refining Gem Voucher
3886 -> Gem Voucher
3887 -> Christmas Cap Voucher
3888 -> Lost Christmas Cap
3889 -> Lost Christmas Case
3890 -> A red colored case
3891 -> Yellow Christmas Case
3892 -> Blue Christmas Case
3893 -> A cyan colored case
3894 -> A orange colored case
3895 -> Christmas Sock
3896 -> Malicious Horn
3897 -> Malicious Eye
3898 -> A gift box
3899 -> Christmas Lollipop
3900 -> Christmas Cap
3901 -> Lucky Packet
3902 -> Fortune Packet
3903 -> Prosperous Packet
3904 -> Red Paper
3905 -> Dark Wishing Stone
3906 -> Sparkling Wishing Stone
3907 -> Welding Catalyst
3908 -> Alloy Pickaxe
3909 -> Gyoza
3910 -> Super Candy Stick
3911 -> Bamboo Stick
3912 -> Exceptional Apparatus
3913 -> Rare Metal
3914 -> Army Gunpowder
3915 -> Mooncake
3916 -> Coconut Wine
3917 -> Special Strawberry Biscuit
3918 -> Demonic Fruit of Acidity
3919 -> Demonic Fruit of Courage
3920 -> Demonic Fruit of Strength
3921 -> Demonic Fruit of Intellect
3922 -> Demonic Fruit of Energy
3923 -> Golden Camel Bell
3924 -> Demonic Fruit of Aberrant
3925 -> Demonic Fruit of Mystery
3926 -> Drunken Dreams
3927 -> Mud
3928 -> Mud Pearl
3929 -> Mystic Pen Head
3930 -> Murky Oil
3931 -> Fire Starter
3932 -> Cloth Strip
3933 -> Robot Core
3934 -> Fire Seed
3935 -> Ninja Sword
3936 -> Closed Beta Seaman Medal
3937 -> Closed Beta Officer Medal
3938 -> Closed Beta Colonel Medal
3939 -> Closed Beta Sailor Medal
3940 -> Closed Beta Oarsman Medal
3941 -> Closed Beta Captain Medal
3942 -> Closed Beta Pirate Medal
3943 -> Map Fragment 1
3944 -> Map Fragment 2
3945 -> Map Fragment 3
3946 -> Map Fragment 4
3947 -> Map Fragment 5
3948 -> Perfect Treasure Map
3949 -> Mystery Treasure Map
3950 -> Letter to Goldie
3951 -> Letter to Granny Nila
3952 -> Letter to Ditto
3953 -> Courage Certificate
3954 -> Righteous Document
3955 -> Hunter Manual
3956 -> Letter to Smithy
3957 -> Letter to Moya
3958 -> Letter to Shala
3959 -> Letter to Bash
3960 -> Letter to Hannah
3961 -> Letter to Daisha
3962 -> Survival Compass
3963 -> Bubble Clam Meat
3964 -> Sea Snail Meat
3965 -> Letter of Tommy
3966 -> Lunch Sample
3967 -> Antidote Parcel
3968 -> Piglet Tail
3969 -> Whacky Lamb Saliva
3970 -> Great King Pearl
3971 -> Ditto's Report
3972 -> Salvier's Recommendation Letter
3973 -> Stolen Shovel
3974 -> Stolen Safety Cap
3975 -> Stolen Safety Lamp
3976 -> Crab King Stomach Stone
3977 -> Bandit Hideout Map
3978 -> Secretary Letter
3979 -> Mark of Desert Overlord
3980 -> Fickle Pouch
3981 -> \"Pick Up\" Letter
3982 -> Stolen Supplies
3983 -> Recovered Supplies
3984 -> Snow Doll Memo Stone
3985 -> Mark of Valor
3986 -> Mark of Honor
3987 -> Mark of Massacre
3988 -> Vessel Deed
3989 -> Ash Wood Log
3990 -> Birch Wood Log
3991 -> Teak Wood Log
3992 -> Cedar Wood Log
3993 -> Rue Wood Log
3994 -> Red Oak Wood Log
3995 -> Fir Wood Log
3996 -> Maple Wood Log
3997 -> Cherry Wood Log
3998 -> Walnut Wood Log
3999 -> Ash Wood Strip
4000 -> Birch Wood Strip
4001 -> Teak Wood Strip
4002 -> Cedar Wood Strip
4003 -> Rue Wood Strip
4004 -> Red Oak Wood Strip
4005 -> Fir Wood Strip
4006 -> Maple Wood Block
4007 -> Cherry Wood Block
4008 -> Walnut Wood Block
4009 -> Dotted Codfish
4010 -> Clownfish
4011 -> Squirting Fish
4012 -> Moon Tail Eel
4013 -> Diving Clam
4014 -> Phoenix Prawn
4015 -> Tiger Bone Fish
4016 -> Pearlie Ratfish
4017 -> Starry Wood
4018 -> Man-Eating Shark
4019 -> Codfish Steamboat
4020 -> Sturgeon Fish with Bamboo
4021 -> Savory Bubble Fish
4022 -> Sturgeon Soup
4023 -> Fried Oyster Soup
4024 -> Prawn Dumpling
4025 -> Tigerfish Bone Crisp
4026 -> Ratfish Rice
4027 -> China Clay
4028 -> BBQ Shark Fin
4029 -> Iron Ore Fragment
4030 -> Copper Ore Eolith
4031 -> Crystal Eolith
4032 -> Silver Ore Eolith
4033 -> Gold Ore Eolith
4034 -> Strange Metal Ore
4035 -> Fallacy Gem Eolith
4036 -> Diamond Eolith
4037 -> Booming Magical Ore
4038 -> Oceania Meteorite
4039 -> Iron Rod
4040 -> Copper Plate
4041 -> Transparent Crystal
4042 -> Silver Bar
4043 -> Gold Bar
4044 -> Strange Metal
4045 -> Fallacy Jewel
4046 -> Glittering Brick
4047 -> Booming Magical Staff
4048 -> Heavenly Brick
4049 -> Little Grass
4050 -> Tail Grass
4051 -> Jade Bamboo
4052 -> Big Radish
4053 -> Judas Leaf
4054 -> Rolling Bean
4055 -> Liquorice
4056 -> Golden Needle Flower
4057 -> Demonic Grass
4058 -> Ancient Tree Root
4059 -> Grass Juice
4060 -> Herb
4061 -> Omnipotent Herb
4062 -> Circulation Pill
4063 -> Evil Warding Potion
4064 -> Wellness Pill
4065 -> Detoxifying Syrup
4066 -> Vital Ointment
4067 -> Relaxing Pill
4068 -> Evil Tree Oil
4069 -> Snow Lady Memo Stone
4070 -> Yeti Memo Stone
4071 -> Yeti King Memo Stone
4072 -> Eight Treasures Wine
4073 -> Fearsome Tortoise Egg
4074 -> Boar Tendon
4075 -> Stramonium Cirrus
4076 -> Ore Crystal Powder
4076 -> Ore Crystal Powder
4077 -> Bamboo Dew
4078 -> Nutritious Pearl Powder
4079 -> Smuggled Spice
4080 -> Kangaroo Brew
4081 -> Old Paper
4082 -> Ancient Bounty Token
4083 -> Iron Cuffs
4084 -> Beer Belly Lunch
4085 -> Barbaric Bee Hive
4086 -> Lost Page
4087 -> Gold Coin Pouch
4088 -> Stramonium Sharp Spike
4089 -> Tortoise Egg
4090 -> Precious Herb
4091 -> Top Grade Deer Skin
4092 -> Lucky Magical Stone
4093 -> Fearsome Tortoise Egg Shell
4094 -> Green Moss
4095 -> Hopping Lizard Secretion
4096 -> Wolf Cub Claw
4097 -> Cactus Water Pouch
4098 -> Phantom Tree Root
4099 -> Jade Bangle
4100 -> Desert Spore
4101 -> Gold Pouch
4102 -> Sailor Penguin Cap
4103 -> Flawless Crystal
4104 -> Snowy Mushroom
4105 -> Flowery Stone
4106 -> Snow Crystal
4107 -> Armored Crab Egg
4108 -> Soul Gem
4109 -> Phantom Sword
4110 -> Navy Recruitment Notice
4111 -> Letter to Marcusa
4112 -> Letter to Ditto
4113 -> Letter to Saa
4114 -> Letter to Goldie
4115 -> Letter to Senna
4116 -> Swordsman Recommendation Letter
4117 -> Hunter Recommendation Letter
4118 -> Herbalist Recommendation Letter
4119 -> Explorer Recommendation Letter
4120 -> Letter to William
4121 -> Letter to Rouri
4122 -> Letter to Coddy
4123 -> Letter to Michael
4124 -> Letter to Amos
4125 -> Letter to Franco
4126 -> Letter to Smithy
4127 -> Letter to Resline
4128 -> Letter to Admiral Nic
4129 -> Letter to Lena
4130 -> Letter to Franklin
4131 -> Letter to Little Mo
4132 -> Letter to Palpin
4133 -> Letter to Ray
4134 -> Letter to Hannah
4135 -> Letter to Angela
4136 -> Letter to Little Mo
4137 -> Letter to Yaskey
4138 -> Letter to Belinda
4139 -> Letter to William
4140 -> Tempest Sea Jelly Crystal
4141 -> Parcel of Baros
4142 -> Letter to Baros
4143 -> Skeleton Fish Scale
4144 -> Ring of Fish Scale
4145 -> Radiant Soul
4146 -> Sparkling Ring of Fish Scale
4147 -> Spirit Beast Tattoo
4148 -> Arcane Beast Tattoo
4149 -> Capricious Battle Armor
4150 -> Sagacious Battle Armor
4151 -> Robe of Perception
4152 -> Robe of Gallant
4153 -> Nautical Coat
4154 -> Arcane Lobster Costume
4155 -> Robe of Stride
4156 -> Pique Lobster Costume
4157 -> Robe of Melody
4158 -> Arcane Bunny Costume
4159 -> Robe of Spirit
4160 -> Pique Bunny Costume
4161 -> Robe of Vengence
4162 -> Arcane Otter Costume
4163 -> Robe of Amercement
4164 -> Pique Otter Costume
4165 -> Capricious Battle Gauntlets
4166 -> Sagacious Battle Gauntlets
4167 -> Gloves of Perception
4168 -> Gloves of Gallant
4169 -> Nautical Gloves
4170 -> Arcane Lobster Muffs
4171 -> Gloves of Stride
4172 -> Pique Lobster Muffs
4173 -> Gloves of Melody
4174 -> Arcane Bunny Muffs
4175 -> Gloves of Spirit
4176 -> Pique Bunny Muffs
4177 -> Gloves of Vengence
4178 -> Arcane Otter Muffs
4179 -> Gloves of Amercement
4180 -> Pique Otter Muffs
4181 -> Capricious Battle Greaves
4182 -> Sagacious Battle Greaves
4183 -> Boots of Perception
4184 -> Boots of Gallant
4185 -> Nautical Boots
4186 -> Arcane Lobster Shoes
4187 -> Boots of Stride
4188 -> Pique Lobster Shoes
4189 -> Boots of Melody
4190 -> Arcane Bunny Shoes
4191 -> Boots of Spirit
4192 -> Pique Bunny Shoes
4193 -> Boots of Vengence
4194 -> Arcane Otter Shoes
4195 -> Boots of Amercement
4196 -> Pique Otter Shoes
4197 -> Flame of the Arctic
4198 -> Soul Spring
4199 -> Searing Frost
4200 -> Consonance of Souls
4201 -> Claw of Demonic Dragon
4202 -> Eye of Sacred Dragon
4203 -> God of Flame
4204 -> Gold of Tears
4205 -> God of Fire
4206 -> God of Rebuke
4207 -> God of Sight
4208 -> God of Wrath
4209 -> Roar of Turbulence
4210 -> Soul Beast
4211 -> Comet Magenta
4212 -> Ember Scar
4213 -> Swift Lightning
4214 -> Rattlesnake
4215 -> Serpentine Gun of Resonance
4216 -> Tooth of Eclipse
4217 -> Thunder Tooth
4218 -> Essence Dagger
4219 -> Memento of Andrew
4220 -> Memento of Andrew
4221 -> Memento of Andrew
4222 -> Ancient Key
4223 -> Signature of Mas
4224 -> Signature of Navy General William
4225 -> Signature of Salvier
4226 -> Signature of Clan Chief Albuda
4227 -> Will of Andrew
4228 -> Invisible Ink Negator
4229 -> Pumpkin with Craved Wording
4230 -> Mermaid Carcass
4231 -> Journal of Andrew
4232 -> Translation of Diary
4233 -> Letter in a Bottle
4234 -> Ancient Note
4235 -> Ancient Earring
4236 -> Ancient Brooch
4237 -> Water Wheel
4238 -> Supplies
4239 -> Glass Bottle
4240 -> Holy Water
4241 -> Trendy Clothes
4242 -> Visitor Pass
4243 -> Amulet of Dragon Eye
4244 -> Talisman
4245 -> Pure Clarion Sand
4246 -> Crown of the Queen
4247 -> Crystalline Feather
4248 -> Lovers Brooch
4249 -> Amulet
4250 -> Pink Letter
4251 -> Preservative
4252 -> Tear of Dragon
4253 -> Underwater Detector
4254 -> Omni-Antidote
4255 -> Prescription Fragment
4256 -> Omni-Antidote Prescription
4257 -> Glass Bottle with Seawater
4258 -> Binoculars
4259 -> Tinder
4260 -> Cursed Bone
4261 -> Arista
4262 -> Talisman of Ghost
4263 -> Fruit Residue
4264 -> Sunny Emote
4265 -> Misty Emote
4266 -> Snowy Emote
4267 -> Starry Emote
4268 -> Rainy Emote
4269 -> Cloudy Emote
4270 -> Rainbow Emote
4271 -> Angel Emote
4272 -> Demon Emote
4273 -> Skeleton Emote
4300 -> Staff of Amercement
4301 -> Staff of Sagacious
4302 -> Guardian of Nature
4303 -> Holy Guidance
4304 -> Staff of Amercement
4305 -> Staff of Sagacious
4306 -> Guardian of Nature
4307 -> Holy Guidance
4308 -> Novice Shirt
4309 -> Novice Gloves
4310 -> Novice Shoes
4311 -> Voyage Pack
4312 -> Golden Chest
4313 -> Laptop Voucher
4314 -> Frozen Grass
4315 -> Green Grass
4316 -> Sparkling Grass
4317 -> Thorny Thick Skin
4318 -> Frozen Squid Ink
4319 -> Flowery Snail Shell
4320 -> Scorpion Tail
4321 -> Little Wings
4322 -> Sweet Smelling Flower
4323 -> Icy Flower
4324 -> Spikey Spike
4325 -> Snowy Pig Tail
4326 -> Venom Mushroom
4327 -> Broken Antler
4328 -> Grass Tortoise Shell
4329 -> Scorpion Stinger
4330 -> Trumpet Shell
4331 -> Blue Conch
4332 -> Black Wings
4333 -> Flowery Lizard Skin
4334 -> Penguin Pelt
4335 -> Wolf Fang
4336 -> Flowery Conch
4337 -> Razor Sharp Beak
4338 -> Sharp Cactus Thorn
4339 -> Gigantic Antler
4340 -> Concentrated Squid Ink
4341 -> Tough Penguin Pelt
4342 -> Rigid Crab Carapace
4343 -> Strange Branch
4344 -> Chilling Snail Shell
4345 -> Poisonous Mushroom
4346 -> Razor Wolf Fang
4347 -> Black Feather
4348 -> Kangaroo Pouch
4349 -> Mud Cake
4350 -> Bandit Bandana
4351 -> Ice Crystal
4352 -> Stramonium Flower
4353 -> Giant Wolf Fang
4354 -> Smelly Water
4355 -> Sticky Spider Legs
4356 -> Gigantic Tortoise Shell
4357 -> Rugged Pig Tail
4358 -> Blue Snowball
4359 -> Burly Lizard Skin
4360 -> Red Snowball
4361 -> King-Sized Kangaroo Pouch
4362 -> Old Quiver
4363 -> Sticky Mud Cake
4364 -> Snowy White Plume
4365 -> Solid Tortoise Shell
4366 -> Solid Bear Paw
4367 -> Broken Ninja Sword
4368 -> Solid Rock
4369 -> Rusty Katana
4370 -> Soldier Bee Wing
4371 -> Low Grade Antler
4372 -> Rigid Deer Hoof
4373 -> Small Tooth
4374 -> Steel Pig Tooth
4376 -> Hard Trumpet Shell
4377 -> Snowy Trumpet Shell
4378 -> Half Eaten Foilage
4379 -> Coarse Tortoise Shell
4380 -> Cracked Tortoise Shell
4381 -> Blunt Nail
4382 -> Ruffled Wolf Tail
4383 -> Mighty Wolf Claw
4384 -> Mangled Sheep Horn
4385 -> Dangerous Sharp Claw
4386 -> Cumbersome Carapace
4387 -> Lizard Tail
4388 -> Slightly Poisonous Thorn
4389 -> Poisonous Spore
4390 -> Hypnotic Spore
4391 -> Lock Pick
4392 -> Damaged Puck
4393 -> Unusable Crab Feet
4394 -> Snow Spirit Wings
4395 -> Deadly Poisonous Stinger
4396 -> Frozen Root
4397 -> Root
4398 -> Ancient Root
4399 -> White Squirt Bandana
4400 -> Green Scale
4401 -> Fresh Flower Petal
4402 -> White Squidy Cap
4403 -> Frozen Flower Petal
4404 -> Bee Antenna
4405 -> Furry Pig Mane
4406 -> Fungus Spore
4407 -> Soft Deer Skin
4408 -> Dark Tortoise Bones
4409 -> Rigid Scorpion Carapace
4410 -> Short Goat Horn
4411 -> Fresh Whelk Meat
4412 -> Small Conch Fragment
4413 -> Thick Deer Skin
4414 -> Black Scale
4415 -> Long Lizard Tongue
4416 -> Soft Pig Mane
4417 -> Webbed Penguin Feet
4418 -> Heart of Naiad
4419 -> Fermented Honey
4420 -> Great Conch Fragment
4421 -> Large Cactus Tuber
4422 -> Tough Deer Skin
4423 -> Pointed Goat Horn
4424 -> Demon Wings
4425 -> Strong Penguin Feet
4426 -> Razer Sharp Pincers
4427 -> Bat Fangs
4428 -> Frozen Snail Feeler
4429 -> Poisonous Fungus Spore
4430 -> Razor Wolf Claw
4431 -> Glacier Heart
4432 -> Owl Talon
4433 -> Short Boar Tail
4434 -> Torn Pouch
4435 -> Boxing Gloves
4436 -> Polluted Mud
4437 -> Bandit Pass
4438 -> Perfect Snowflake
4439 -> Huge Wolf Claw
4440 -> Broken Heart of Naiad
4441 -> Spider Venom
4442 -> Herbal Jelly
4443 -> Razor Sharp Tusk
4444 -> Frosty Heart
4445 -> Horse Whip
4446 -> Yeti Nail
4447 -> Chilled Heart
4448 -> Miner Mole Safety Helmet
4449 -> Skeletal Ribs
4450 -> Strange Candle
4451 -> Sharp Beak
4452 -> Cracked Tortoise Egg
4453 -> Great Bear Tooth
4454 -> Ninja Mask
4455 -> Slippery Rock
4456 -> Warrior Certificate
4457 -> Bee Ration
4458 -> Thin Deer Skin
4459 -> High Quality Deer Skin
4460 -> Unusual Satchet
4461 -> Chameleon Pig Trotter
4462 -> Rugged Pig Trotter
4463 -> Inedible Conch Meat
4464 -> Frozen Conch Meat
4465 -> Well-Formed Tortoise Shell
4466 -> Desert Seed
4467 -> Earthen Stone
4468 -> Heated Tortoise Shell
4469 -> Swift Wolf Claw
4470 -> High Quality Wolf Pelt
4471 -> Dingle Bell
4472 -> Glossy Feather
4473 -> Short Snail Feeler
4474 -> Greasy Lizard Skin
4475 -> Bitter Fruit
4476 -> Umbrella Mushroom
4477 -> Edible Mushroom
4478 -> Master Key
4479 -> Snowy Fluff
4480 -> Edgy Carapace
4481 -> Heart of Purity
4482 -> Scorpion Blood
4483 -> Cactus Thorn
4484 -> Fat Squid Tentacle
4485 -> Bee Wing
4486 -> Camel Mane
4487 -> Well-Formed Antler
4488 -> Contaminated Water
4489 -> Silky Soft Wool
4490 -> Crab Carapace
4491 -> Strong Squid Tentacle
4492 -> Snowball
4493 -> Boar Spine
4494 -> Huge Crab Pincers
4495 -> Bandit Sash
4496 -> Cracked Iron Sword
4497 -> Golden Conch Shell
4498 -> Iron Hook
4499 -> Metal Earring
4500 -> Blood Red Crab Carapace
4501 -> Spikey Cuffs
4502 -> Skeletal Bandana
4503 -> Crown
4504 -> Pirate Hat
4505 -> Misshapen Demonic Blade
4506 -> Melon Tuber
4507 -> Scorpion Carapace
4508 -> Cacus Tuber
4509 -> Vampiric Fangs
4510 -> Red Boxing Gloves
4511 -> Glistening Shrub
4512 -> Transparent Sea Jelly Skin
4513 -> Speckled Fish Scale
4514 -> Squid Ink
4515 -> Arabic Bandana
4516 -> Glittery Sea Jelly Skin
4517 -> Blood Red Polliwog skin
4518 -> Heart of Merman
4519 -> Slimy Sea Jelly Skin
4520 -> Glittery Dolphin Skin
4521 -> Fish Bone
4522 -> Black Polliwog Skin
4523 -> Broken Long Spear
4524 -> Shark Tooth
4525 -> Slimy Dolphin Skin
4526 -> Rusty Long Spear
4527 -> Thorny Water Shrub
4528 -> Long Tentacle
4529 -> Fresh Fish Meat
4530 -> Tasty Squid Meat
4531 -> Cracked Arabic Pearl
4532 -> Shocking Tentacle
4533 -> Polliwog Tail
4534 -> Twinkling Merman Scale
4535 -> Large Tentacle
4536 -> Magical Stone Fragment
4537 -> Fish Spike
4538 -> Gigantic Polliwog Tail
4539 -> Big Tail Scale
4540 -> Shark Fin
4541 -> Mystic Crystal Fragment
4542 -> Sparkling Fin
4543 -> Wood
4544 -> Energy Ore
4545 -> Iron Ore
4546 -> Crystal Ore
4547 -> Wood Bundle
4548 -> Energy Crystal
4549 -> Pig Iron
4550 -> Crystal
4551 -> Fish Meat
4552 -> Frost Crystal
4553 -> Refreshing Coconut Wine
4554 -> Bagpipe
4555 -> Icy Cold Brick
4556 -> Ocean Mud
4557 -> Cryosel
4558 -> Empty Bottle
4559 -> Rock-like Material
4560 -> Pirate Eye Patch
4561 -> Caviar
4562 -> Sea Jelly Membrane
4563 -> Sea Monster Grease
4564 -> Wind Chime Sand
4565 -> Sand Regiment
4566 -> Airlake Conch
4567 -> Honey Cake
4568 -> Love Grass
4569 -> Blessed Wedding Gown
4570 -> Drifing Lucky Star Bottle
4571 -> Amulet of Misfortune
4572 -> Lucky Accessories
4573 -> High Quality Silk Cloth
4574 -> Bamboo Can
4575 -> Magnificent Wood Figurine
4576 -> Glassware
4577 -> Silver Jewelry
4578 -> Silver Ring
4579 -> Argent Diner Wine
4580 -> Red Cola
4581 -> High Grade Porcelain
4582 -> Clarion Necklace
4583 -> Red Dates Sauce
4584 -> Decorative Hourglass
4585 -> Liquor
4586 -> Crystal Vessel
4587 -> Machine Component
4588 -> Blue Cola
4589 -> Imitation Crystal Figurine
4590 -> Snow Squidy Doll
4591 -> High Grade Antler
4592 -> Fur Coat
4593 -> Frozen Tear Stone
4594 -> Mysterious Liquor
4595 -> Beast Catching Toy
4596 -> Chicken Burger
4597 -> Icy Dragon Wine
4598 -> Azure Figurine
4599 -> High Grade Battleship Component
4600 -> Imitation Royal Tableware
4601 -> Hamburger
4602 -> Ticket to Argent
4603 -> Ticket to Shaitan
4604 -> Ticket to Icicle
4605 -> Commerce Permit
4606 -> Black Dye
4607 -> Black Colorant
4608 -> Brown Dye
4609 -> Brown Colorant
4610 -> Decolorant
4611 -> Gold Ring
4612 -> Brass Ring
4613 -> Bright Silver Ring
4614 -> Fine Steel Ring
4615 -> Ruby Encrusted Ring
4616 -> Animal Tusk Ring
4617 -> Antler Ring
4618 -> Squid Ring
4619 -> Hunter Ring
4620 -> Mystic Flower Ring
4621 -> Assault Ring
4622 -> Reinforced Ring
4623 -> Ring of Force
4624 -> Ring of Aim
4625 -> Ring of Ecstasy
4626 -> Tooth of Ferocity
4627 -> Huge Bear Footprint
4628 -> Feathers of Paradise Bird
4629 -> Hoof of Nimble Deer
4630 -> Mystic Stone
4631 -> Barbaric Ring
4632 -> Cavalier Ring
4633 -> Cavalry Ring
4634 -> Shooter's Ring
4635 -> Sacrificial Ring
4636 -> Crusader Ring
4637 -> Counterattack Ring
4638 -> Guerrilla Warfare Ring
4639 -> Sniper Ring
4640 -> Ring of Advancement
4641 -> Eye of the Tiger
4642 -> Ring of the Yeti
4643 -> Ring of the Hawk
4644 -> Paw of Cheetah
4645 -> Wild Breeze
4646 -> Ring of Pharaoh
4647 -> Ring of Resistance
4648 -> Bandit Ring
4649 -> Bewitching Ring
4650 -> Believer's Ring
4651 -> Ring of Suppression
4652 -> Ring of Trust
4653 -> Vanishing Ring
4654 -> Ring of Binding
4655 -> Mermaid Tears
4656 -> Flame of Fury
4657 -> Stable Cliff
4658 -> Wind of the Gentle Soul
4659 -> Entwined Rattan
4660 -> Water of Miracle
4661 -> Repair Wood
4666 -> Necklace of Vitality
4667 -> Moonlight Necklace
4668 -> Emerald Amulet
4669 -> Ebony Wreath
4671 -> Vaudeville Necklace
4672 -> Baptismal Necklace
4673 -> Officer Necklace
4674 -> Hunter Charm
4675 -> Mercenary Necklace
4676 -> Necklace of the Roaring Wind
4677 -> Necklace of Dusk
4678 -> Jade Ring
4679 -> Necklace of Exorcism
4681 -> Soul Necklace
4682 -> Light of the Holy Priest
4683 -> Emperor Necklace
4684 -> Heavenly Ring
4685 -> Hero Necklace
4686 -> Elegant Necklace
4687 -> Wood Necklace
4688 -> Outlander Necklace
4689 -> Academic Charm
4691 -> Ashen Gem
4692 -> Mark of the Dragon
4693 -> Hope of Life
4694 -> Symbolic Necklace
4695 -> Red Nit Gem
4696 -> Necklace of Shooting Star
4697 -> Necklace of Speed
4698 -> Storm Necklace
4699 -> Charm of Encounter
4701 -> Burning Vitality
4702 -> Warm Wind of Spring
4703 -> Autumn Night Glimmer
4704 -> Wintery Blizzard
4705 -> Force of Four Seasons
4706 -> Spirit Spark
4707 -> Milky Way
4708 -> Shooting Star
4709 -> Blessed Rainbow
4711 -> Grace of Heaven
4712 -> Dragon's Breath
4713 -> Heaven's Seal
4714 -> Angelic Protection
4715 -> Light of Terra
4716 -> Gigantic Wolf Fang
4717 -> Steel Snail Shell
4718 -> Refined Arrow Quiver
4719 -> Dark Mud Cake
4720 -> Huge Bear Paw
4721 -> Indestructible Rock
4722 -> Broken Katana
4723 -> Emblem of Royal Elite
4724 -> Cursed Shroud
4725 -> Broken Hunter Bow
4726 -> Emblem of Royal Protector
4727 -> Mysterious Branch
4728 -> Cursed Water Crystal
4729 -> Werewolf Warrior Emblem
4730 -> Gigantic Stramonium Flower
4731 -> Beautiful Tribal Feathers
4732 -> Snowman's Earring
4733 -> Fallen Greatsword
4734 -> Cracked Snowman Necklace
4735 -> Frightful Pumpkin Head
4736 -> Razor Tribal Knife
4737 -> Werewolf Iron Claw
4738 -> Broken Angel Halo
4739 -> Pointed Tribal Long Spear
4740 -> Iron Casted Lizardman Belt
4741 -> Nimble Heart of Nature
4742 -> Dark Bloody Carcass
4743 -> Terra Pickaxe
4744 -> Tough Lizardman Necklace
4745 -> Heavy Terra Battleaxe
4746 -> Frozen Bone Fragment
4747 -> White Bobcat Wing
4748 -> Cracked Terra Earring
4749 -> King-Size Spanner
4750 -> Black Bobcat Wing
4751 -> Rusty Mechanical Plier
4752 -> Rusty Large Gear
4753 -> Bloodied Wolf Fang
4754 -> Special Quiver
4755 -> Broken Shadow Long Bow
4756 -> Fine Exquisite Feather
4757 -> Sparkling Snowman Earring
4758 -> Sparkling Snowman Necklace
4759 -> Ghastly Pumpkin Head
4760 -> Dried Splintered Wood
4761 -> Gigantic Werewolf Iron Claw
4762 -> Evil Greatsword
4763 -> Corrupted Angel Halo
4764 -> Evil Tribal Long Spear
4765 -> Sparkling Lizardman Belt
4766 -> Gloomy Heart of the Forest
4767 -> Bloodied Carcass
4768 -> Sparkling Lizardman Necklace
4769 -> Razor Terra Battleaxe
4770 -> Cursed White Bobcat Wing
4771 -> Evil Terra Earring
4772 -> Cursed Black Bobcat Wing
4773 -> Heavy Duty Mechanical Plier
4774 -> Obsolete Metal Gear
4775 -> Wornout Katana
4776 -> Werewolf Warrior Leader's Insignia
4777 -> Lizardman Leader Belt
4778 -> Terra Captain Battleaxe
4779 -> Iron Shroud
4780 -> Steel Shroud
4781 -> Royal Emblem
4782 -> Shroud
4783 -> Chimera Horn
4784 -> Ancient Incantation
4785 -> Lion Wing
4786 -> Gravel Crab Pincer
4787 -> Scythe of Anubis
4788 -> Broken Shadow Hunter Short Bow
4789 -> Royal Bodyguard Emblem
4790 -> Small Mysterious Branch
4791 -> Water Crystal
4792 -> Giant Lizard Tongue
4793 -> Long Hair Crab Pincer
4794 -> Sakura Sailor's Emblem
4795 -> Sakura Fighter's Emblem
4796 -> Sakura Militia's Emblem
4797 -> Northern Sailor's Emblem
4798 -> Northern Fighter's Emblem
4799 -> Northern Militia's Emblem
4800 -> Beardy Sailor's Emblem
4801 -> Beardy Fighter's Emblem
4802 -> Beardy Militia's Emblem
4803 -> Broken Werewolf Warrior Emblem
4804 -> Thorny Stramonium Flower
4805 -> Tribal Feather
4806 -> Giant Earring
4807 -> Unyielding Bow
4808 -> Giant Necklace
4809 -> Pumpkin Head
4810 -> Tribal Knife
4811 -> Dried Wood
4812 -> Chipped Werewolf Iron Claw
4813 -> Unyielding Greatsword
4814 -> Angel Halo
4815 -> Tribal Long Spear
4816 -> Mangled Lizardman Belt
4817 -> Heart of Nature
4818 -> Dark Skeleton
4819 -> Broken Terra Pickaxe
4820 -> Thick Wolf Hide
4821 -> Steel Feeler
4822 -> Ruptured Rib
4823 -> Used Candle
4824 -> Razor Bear Tooth
4825 -> Shimmering Rock Fragment
4826 -> Mark of Warrior Honor
4827 -> High Grade Royal Saber
4828 -> Cursed Carcass
4829 -> Shadowy Coat
4830 -> High Grade Noble Saber
4831 -> Mysterious Leaf
4832 -> Black Crystal
4833 -> Bloodied Hammer
4834 -> Huge Stramonium Thorn
4835 -> Mysterious Bone
4836 -> Rusty Broadsword
4837 -> Fallen Helmet
4838 -> Slipshod Wooden Stick
4839 -> Rusty Lantern
4840 -> Solid Tribal Shield
4841 -> Broken Werewolf Long Bow
4842 -> Cracked Angel Wand
4843 -> Large Tribal Mask
4844 -> Heavy Lizardman Battleaxe
4845 -> Broken Bow of the Forest
4846 -> Dark Bow of Blood
4847 -> Refined Terra Backpack
4848 -> Heavy Lizardman Broadsword
4849 -> Refined Terra Battle Armor
4850 -> Heart of Ice Crystal Fragment
4851 -> Golden Cat Bell
4852 -> Old Tobacco Pipe
4853 -> High Grade Terra Glasses
4854 -> Black Cat Bell
4855 -> Rusty Plate Armor
4856 -> Rusty Funnel
4857 -> Wolf Hide Masterpiece
4858 -> Complete Rib
4859 -> Worn-Out Shadowy Coat
4860 -> Mysterious Bone
4861 -> Giant Broadsword
4862 -> Giant Wooden Stick
4863 -> Extinguished Lantern
4864 -> Treant Root
4865 -> Excellent Werewolf Long Bow
4866 -> Evil Helmet
4867 -> Corrupted Angel Wand
4868 -> Evil Tribal Mask
4869 -> Large Lizardman Battleaxe
4870 -> Bloodied Bow of Nature
4871 -> Bloodied Bow
4872 -> Razor Lizardman Broadsword
4873 -> Tough Terra Battle Armor
4874 -> Cursed Golden Bell
4875 -> Exquisite Tobacco Pipe
4876 -> Cursed Black Bell
4877 -> Cracked Alloy Armor
4878 -> Black Alloy Funnel
4879 -> Warrior Leader Token
4880 -> Blood Drenched Hammer
4881 -> Lizardman Leader Battleaxe
4882 -> Terra Captain Battle Armor
4883 -> Mummy Nail
4884 -> Mummy Hair
4885 -> Royal Saber
4886 -> Skeleton Bone Fragment
4887 -> Scorpion Claw
4888 -> Staff of Kings
4889 -> Chimera Claw
4890 -> Sandy Crab Meat
4891 -> Anubis Teeth
4892 -> Tattered Shadow Shell
4893 -> Royal Sword
4894 -> Strange Leaves
4895 -> Pure Crystal
4896 -> Giant Skin
4897 -> Long Crab Shell
4898 -> Sakura Bandana
4899 -> Sakura Dirk
4900 -> Sakura Sabre
4901 -> Northern Bandana
4902 -> Northern Dirk
4903 -> Nothern Sabre
4904 -> Red Beardy Bandana
4905 -> Red Beardy Dirk
4906 -> Red Beardy Sabre
4907 -> Broken Hammer
4908 -> Long Stramonium Spike
4909 -> Broken Strange Bone
4910 -> Fearsome Sword of Giant
4911 -> Death Arrow
4912 -> Fearsome Staff of Giant
4913 -> Lantern
4914 -> Tribal Shield
4915 -> Withered Root
4916 -> Broken Werewolf Bow
4917 -> Unyielding Helmet
4918 -> Broken Angel Wand
4919 -> Tribal Mask
4920 -> Lizard Man Axe
4921 -> Dented Sacred Bow
4922 -> Dark Bow
4923 -> Tattered Terra Backpack
4924 -> Black Ink
4925 -> Belched Ink
4926 -> Broken Sakura Chest
4927 -> Broken Sakura Ship Bow
4928 -> Mouldy Grass
4929 -> White Sea Jelly Skin
4930 -> Slippery Scale
4931 -> Dense Squid Ink
4932 -> Refined Arabian Bandana
4933 -> Charged Sea Jelly Skin
4934 -> Evil Polliwog Skin
4935 -> Depraved Merman Heart
4936 -> Dried Sea Jelly Skin
4937 -> Glimmering Dolphin Tail
4938 -> Fascia Fish Bone
4939 -> Rigid Polliwog Skin
4940 -> Rusty Siren Lance
4941 -> Purple Dolphin Tale
4942 -> Rusty Siren Bow
4943 -> Broken Mermaid Necklace
4944 -> Broken Siren Ornament
4945 -> Salty Octopus Ink
4946 -> Broken Jack's Chest
4947 -> Broken Jack's Ship Bow
4948 -> Wild Shrub
4949 -> Raw Sea Jelly Skin
4950 -> Black Scale
4951 -> Dark Ink
4952 -> Evil Arabic Bandana
4953 -> Electrical Jelly Skin
4954 -> Massive Polliwog Skin
4955 -> Perfect Mermaid Heart
4956 -> Dry Dolphin Skin
4957 -> Thick Fish Bone
4958 -> Possessed Polliwog Skin
4959 -> Rusty Dark Lance
4960 -> Rusty Sharp Lance
4961 -> Dyed Mermaid Necklance
4962 -> Dyed Siren Ornament
4963 -> Stale Octopus Ink
4964 -> Broken Northen Chest
4965 -> Broken Northen Ship Bow
4966 -> Floating Shrub
4967 -> Poisonous Sea Jelly Skin
4968 -> Rotten Fish Scale
4969 -> Diluted Squid Ink
4970 -> Dark Arabic Bandana
4971 -> Shining Dolphin Tail
4972 -> Translucent Polliwog Fish Tail
4973 -> Shadow Fish Heart
4974 -> Shining Sea Jelly Skin
4975 -> Mature Dolphin Tail
4976 -> Rotten Fish Bone
4977 -> Beefy Polliwog Tail
4978 -> Ancient Lance
4979 -> Huge Shark Sawtooth
4980 -> Ancient Bow
4981 -> Broken Mermaid Jeweled Necklace
4982 -> Broken Siren Jeweled Ornament
4983 -> Red Beardy's Chest
4984 -> Red Beard
4985 -> Cursed Shrub
4986 -> Lacerated Sea Jelly Skin
4987 -> Evil Scale
4988 -> Nasal Squid Ink
4989 -> High Quality Arabic Bandana
4990 -> Large Shiny Sea Jelly Skin
4991 -> Bloody Polliwog Skin
4992 -> Cursed Merman Heart
4993 -> Large Slimy Sea Jelly Skin
4994 -> Ancient Dolphin Tail
4995 -> Huge Fish Bone
4996 -> Large Polliwog Skin
4997 -> Ancient Hag Spear
4998 -> White Shark Tooth
4999 -> Enlightened Dolphin Tail
5001 -> Sword of Azure Flame
5002 -> Sword of Crimson Thunder
5003 -> Great Hammer of Zest
5004 -> Blade of the Frozen Crescent
5005 -> Vinyon
5006 -> Rattle Drum of the Burning Crescent
5007 -> Sword of Crimson Flame
5008 -> Sword of Azure Thunder
5009 -> Great Hammer of Hone
5010 -> Blade of Burning Crescent
5011 -> Victorian
5012 -> Rattle Drum of the Frozen Crescent
5013 -> Robe of the Chilling Heart
5014 -> Modern Caveman Robe
5015 -> Alluring Grand Robe
5016 -> Country Robe
5017 -> Robe of the Frozen Heart
5018 -> Wild Caveman Robe
5019 -> Winter Grand Robe
5020 -> Carillon Robe
5021 -> Gloves of the Chilling Heart
5022 -> Modern Caveman Gloves
5023 -> Alluring Grand Gloves
5024 -> Country Gloves
5025 -> Gloves of the Frozen Heart
5026 -> Wild Caveman Gloves
5027 -> Winter Grand Gloves
5028 -> Carillon Gloves
5029 -> Boots of the Chilling Heart
5030 -> Modern Caveman Boots
5031 -> Alluring Grand Boots
5032 -> Country Boots
5033 -> Boots of the Frozen Heart
5034 -> Wild Caveman Boots
5035 -> Winter Grand Boots
5036 -> Carillon Boots
5037 -> Country Cap
5038 -> Carillon Cap
5039 -> Tattoo of the Burning Dragon
5040 -> Tattoo of the Frozen Dragon
5041 -> Armor of Catacomb
5042 -> Torso of Catacomb
5043 -> Coat of Catacomb
5044 -> Costume of Catacomb
5045 -> Gauntlets of Catacomb
5046 -> Gage of Catacomb
5047 -> Gloves of Catacomb
5048 -> Muffs of Catacomb
5049 -> Greaves of Catacomb
5050 -> Sandals of Catacomb
5051 -> Boots of Catacomb
5052 -> Waders of Catacomb
5056 -> Crown of Catacomb
5057 -> Armor of Buccaneer
5058 -> Torso of Buccaneer
5059 -> Coat of Buccaneer
5060 -> Costume of Buccaneer ami
5061 -> Gauntlets of Buccaneer
5062 -> Gage of Buccaneer
5063 -> Gloves of Buccaneer
5064 -> Muffs of Buccaneer ami
5065 -> Greaves of Buccaneer
5066 -> Sandals of Buccaneer
5067 -> Boots of Buccaneer
5068 -> Waders of Buccaneer ami
5069 -> Crown of Buccaneer
5070 -> Sword of Cadaver
5071 -> Greatsword of Cadaver
5072 -> Firegun of Cadaver
5073 -> Staff of Cadaver
5074 -> Dagger of Cadaver
5075 -> Leather Vest
5076 -> Leather Gloves
5077 -> Leather Boots
5078 -> Warrior Frock
5079 -> Warrior Gloves
5080 -> Warrior Boots
5081 -> Nightmare Vest
5082 -> Nightmare Gloves
5083 -> Nightmare Boots
5084 -> Seaman Vest
5085 -> Seaman Gloves
5086 -> Seaman Boots
5087 -> Shark Hide Armor
5088 -> Shark Hide Gloves
5089 -> Shark Hide Boots
5090 -> Sailor Vest
5091 -> Sailor Gloves
5092 -> Sailor Boots
5093 -> Navy Vest
5094 -> Navy Gloves
5095 -> Navy Boots
5096 -> Captain's Jacket
5097 -> Captain's Gloves
5098 -> Captain's Boots
5099 -> Falchion
5100 -> Long Falchion
5101 -> Katana
5102 -> Tulwar
5103 -> Crystal Falchion
5104 -> Phantom Falchion
5105 -> Nefarious Falchion
5106 -> Clowny Hat
5107 -> Bloody Captain Shirt
5108 -> Bloody Captain Gloves
5109 -> Bloody Captain Shoes
5110 -> Sahara Crocodile Crown
5111 -> Sahara Crocodile Vest
5112 -> Sahara Crocodile Gloves
5113 -> Sahara Crocodile Boots
5114 -> Crazed Cowboy
5115 -> Smoker Navy Vest
5116 -> Smoker Navy Gloves
5117 -> Smoker Navy Boots
5118 -> Straw Hat
5119 -> Straw Shirt
5120 -> Straw Gloves
5121 -> Straw Shoes
5122 -> Lone Swordsman
5123 -> Tri-Blader Shirt
5124 -> Tri-Blader Gloves
5125 -> Tri-Blader Boots
5126 -> Romantic Star
5127 -> Brutal Chef Coat
5128 -> Brutal Chef Gloves
5129 -> Brutal Chef Boots
5130 -> Happy Reindeer Cap
5131 -> Happy Reindeer Costume
5132 -> Happy Reindeer Muffs
5133 -> Happy Reindeer Shoes
5134 -> Shrooms Cap&m
5135 -> Shrooms Costume
5136 -> Shrooms Muffs
5137 -> Shrooms Shoes
5138 -> Little Bee Cap
5139 -> Little Bee Costume
5140 -> Little Bee Muffs
5141 -> Little Bee Shoes
5142 -> Dainty Doll
5143 -> Dainty Bodice
5144 -> Dainty Gloves
5145 -> Dainty Shoes
5146 -> Sassy Princess
5147 -> Shaitan Princess Bodice
5148 -> Shaitan Princess Gloves
5149 -> Shaitan Princess Shoes
5150 -> Femme Fatale
5151 -> Sexy Coat
5152 -> Sexy Gloves
5153 -> Sexy Boots
5154 -> Tiger Armor of Cavalry
5155 -> Tiger Gauntlets of Cavalry
5156 -> Tiger Greaves of Cavalry
5157 -> Capricious Robe of Dragon
5158 -> Capricious Gloves of Dragon
5159 -> Capricious Boots of Dragon
5160 -> Ember Armor of Caesar
5161 -> Ember Gauntlets of Caesar
5162 -> Ember Greaves of Caesar
5163 -> New Carsise Torso 1
5164 -> New Carsise Gloves 1
5165 -> New Carsise Shoes 1
5166 -> Tiger Armor of Cavalry
5167 -> Tiger Gauntlets of Cavalry
5168 -> Tiger Greaves of Cavalry
5169 -> Capricious Robe of Dragon
5170 -> Capricious Gloves of Dragon
5171 -> Capricious Boots of Dragon
5172 -> Dark Blue Vest of Fate
5173 -> Dark Blue Gloves of Fate
5174 -> Dark Blue Boots of Fate
5175 -> Aliya Mini Shirt
5176 -> Aliya Mini Gloves
5177 -> Aliya Mini Shoes
5178 -> Aliya Mini Cap
5179 -> Sweetie Robe
5180 -> Sweetie Gloves
5181 -> Sweetie Shoes
5182 -> Sweetie Cap
5183 -> Azure Robe of Fairy
5184 -> Azure Gloves of Fairy
5185 -> Azure Boots of Fairy
5186 -> Azure Crown of Fairy
5187 -> Noble Lion Costume
5188 -> Noble Lion Muffs
5189 -> Noble Lion Paw
5190 -> Noble Lion Crown
5191 -> Silk Bunny Costume
5192 -> Silk Bunny Muffs
5193 -> Silk Bunny Shoes
5194 -> Silk Bunny Cap
5195 -> Royal Major Vest
5196 -> Royal Major Gloves
5197 -> Royal Major Boots
5198 -> Royal Major Vest
5199 -> Royal Major Gloves
5200 -> Royal Major Boots
5201 -> Royal Major Hat
5202 -> Royal Major Vest
5203 -> Royal Major Gloves
5204 -> Royal Major Boots
5205 -> Royal Major Vest
5206 -> Royal Major Gloves
5207 -> Royal Major Boots
5208 -> August Sword 1
5209 -> August Greataxe 1
5210 -> August Firegun 1
5211 -> August Staff 1
5212 -> August Dagger 1
5213 -> August Sword 2
5214 -> August Greataxe 2
5215 -> August Firegun 2
5216 -> August Staff 2
5217 -> August Dagger 2
5218 -> Summer Storm
5219 -> Dynamic Royal
5220 -> Crimson Gold Plume
5221 -> Lance Dark Royal Robe
5222 -> Lance Dark Royal Gloves
5223 -> Lance Dark Royal Boots
5224 -> Lance Priest Robe
5225 -> Lance Priest Gloves
5226 -> Lance Priest Boots
5227 -> Lance Bruce Tights
5228 -> Lance Bruce Gloves
5229 -> Lance Bruce Shoes
5230 -> Carsise Bishop Cap
5231 -> Carsise Bishop Robe
5232 -> Carsise Bishop Gloves
5233 -> Carsise Bishop Boots
5234 -> Carsise Ranger Beret
5235 -> Carsise Ranger Shirt
5236 -> Carsise Ranger Gloves
5237 -> Carsise Ranger Boots
5238 -> Phyllis Bruce Tights
5239 -> Carsise Ebony Gloves
5240 -> Carsise Ebony Boots
5241 -> Phyllis Bruce Tights
5242 -> Phyllis Bruce Gloves
5243 -> Phyllis Bruce Shoes
5244 -> Phyllis Wedding Veil
5245 -> Phyllis Wedding Gown
5246 -> Phyllis Wedding Gloves
5247 -> Phyllis Wedding Shoes
5248 -> Phyllis Vestal Wrap
5249 -> Phyllis Vestal Costume
5250 -> Phyllis Vestal Gloves
5251 -> Phyllis Vestal Shoes
5252 -> Ami Wedding Veil
5253 -> Ami Wedding Gown
5254 -> Ami Wedding Gloves
5255 -> Ami Wedding Shoes
5256 -> Ami Vestal Cap
5257 -> Ami Vestal Costume
5258 -> Ami Vestal Gloves
5259 -> Ami Vestal Shoes
5260 -> Ami Chibi Cap
5261 -> Ami Chibi Costume
5262 -> Ami Chibi Gloves
5263 -> Ami Chibi Shoes
5264 -> Lance Christmas Shirt
5265 -> Lance Christmas Gloves
5266 -> Lance Christmas Boots
5267 -> Carsise Christmas Shirt
5268 -> Carsise Christmas Gloves
5269 -> Carsise Christmas Boots
5270 -> Phyllis Christmas Shirt
5271 -> Phyllis Christmas Gloves
5272 -> Phyllis Christmas Boots
5273 -> Ami Christmas Shirt
5274 -> Ami Christmas Gloves
5275 -> Ami Christmas Boots
5276 -> Foldable Chair
5277 -> Langa's Cleaning Brush
5278 -> Branch of Defecate
5279 -> Goddess of Vengence
5280 -> Soup Spoon
5281 -> Pseudo Air Cannon
5282 -> Oriental Mystic Chopsticks
5283 -> Barborosa's Knife
5284 -> Barborosa's Fork
5285 -> Matchstick Granny's Pan
5286 -> Fine Crossbow
5287 -> Lance Fortune Cap
5288 -> Lance Fortune Robe
5289 -> Lance Fortune Gloves
5290 -> Lance Fortune Shoes
5291 -> Carsise Fortune Cap
5292 -> Carsise Fortune Robe
5293 -> Carsise Fortune Gloves
5294 -> Carsise Fortune Shoes
5295 -> Phyllis Fortune Cap
5296 -> Phyllis Fortune Robe
5297 -> Phyllis Fortune Gloves
5298 -> Phyllis Fortune Shoes
5299 -> Ami Fortune Cap
5300 -> Ami Fortune Robe
5301 -> Ami Fortune Gloves
5302 -> Ami Fortune Shoes
5303 -> Lance Romantic Shirt
5304 -> Lance Romantic Gloves
5305 -> Lance Romantic Boots
5306 -> Carsise Romantic Shirt
5307 -> Carsise Romantic Gloves
5308 -> Carsise Romantic Boots
5309 -> Phyllis Romantic Blouse
5310 -> Phyllis Romantic Muffs
5311 -> Phyllis Romantic Shoes
5312 -> Ami Romantic Dress
5313 -> Ami Romantic Gloves
5314 -> Ami Romantic Boots
5315 -> Lance Piggy Beret
5316 -> Lance Piggy Shirt
5317 -> Lance Piggy Gloves
5318 -> Lance Piggy Boots
5319 -> Carsise Piggy Beret
5320 -> Carsise Piggy Armor
5321 -> Carsise Piggy Gloves
5322 -> Carsise Piggy Boots
5323 -> Phyllis Piggy Bonnet
5324 -> Phyllis Piggy Blouse
5325 -> Phyllis Piggy Gloves
5326 -> Phyllis Piggy Boots
5327 -> Ami Piggy Cap
5328 -> Ami Piggy Costume
5329 -> Ami Piggy Muffs
5330 -> Ami Piggy Shoes
5331 -> Lv 1 Medal of Honor
5332 -> Lv 2 Medal of Honor
5333 -> Lv 3 Medal of Honor
5334 -> Lv 4 Medal of Honor
5335 -> Lv 5 Medal of Honor
5336 -> Lv 6 Medal of Honor
5337 -> Lv 7 Medal of Honor
5338 -> Lv 8 Medal of Honor
5339 -> Lv 9 Medal of Honor
5340 -> Lv 10 Medal of Honor
5341 -> Lance Aries Armor
5342 -> Lance Aries Gauntlets
5343 -> Lance Aries Greaves
5345 -> Carsise Aries Armor
5346 -> Carsise Aries Gauntlets
5347 -> Carsise Aries Greaves
5349 -> Phyllis Aries Forlorn
5350 -> Phyllis Aries Gauntlets
5351 -> Phyllis Aries Greaves
5352 -> Ami Aries Diadem
5353 -> Ami Aries Costume
5354 -> Ami Aries Muffs
5355 -> Ami Aries Shoes
5356 -> Lance Betrayal of Taurus
5357 -> Lance Loneliness of Taurus
5358 -> Lance Touch of Taurus
5359 -> Lance Flowing Sand of Lance
5360 -> Carsise Betrayal of Taurus
5361 -> Carsise Loneliness of Taurus
5362 -> Carsise Touch of Taurus
5363 -> Carsise Flowing Sand of Taurus
5364 -> Phyllis Betrayal of Taurus
5365 -> Phllyis Loneliness of Taurus
5366 -> Phyllis Touch of Taurus
5367 -> Phyllis Flowing Sand of Taurus
5368 -> Ami Betrayal of Taurus
5369 -> Ami's Loneliness of Taurus
5370 -> Ami Touch of Taurus
5371 -> Ami Flowing Sand of Taurus
5372 -> Lance Betrayal of Gemini
5373 -> Lance Loneliness of Gemini
5374 -> Lance Touch of Gemini
5375 -> Lance Flowing Sand of Gemini
5376 -> Carsise Betrayal of Gemini
5377 -> Carsise Loneliness of Gemini
5378 -> Carsise Touch of Gemini
5379 -> Carsise Flowing Sand of Gemini
5380 -> Phllyis Betrayal of Gemini
5381 -> Phyllis Loneliness of Gemini
5382 -> Phyllis moves of Gemini
5383 -> Phyllis Flowing Sand of Gemini
5384 -> Ami Betrayal of Gemini
5385 -> Ami's Loneliness of Gemini
5386 -> Ami Touch of Gemini
5387 -> Ami Flowing Sand of Gemini
5661 -> Lance Bloodmoon Helmet
5662 -> Lance Bloodmoon Armor
5663 -> Lance Bloodmoon Gloves
5664 -> Lance Bloodmoon Boots
5665 -> Carsise Bloodmoon Helmet
5666 -> Carsise Bloodmoon Armor
5667 -> Carsise Bloodmoon Gloves
5668 -> Carsise Bloodmoon Boots
5669 -> Phyllis Bloodmoon Helmet
5670 -> Phyllis Bloodmoon Armor
5671 -> Phyllis Bloodmoon Gloves
5672 -> Phyllis Bloodmoon Boots
5673 -> Ami Bloodmoon Helmet
5674 -> Ami Bloodmoon Armor
5675 -> Ami Bloodmoon Gloves
5676 -> Ami Bloodmoon Boots
5677 -> Lance Wild West Hat
5678 -> Lance Wild West Shirt
5679 -> Lance Wild West Gloves
5680 -> Lance Wild West Boots
5681 -> Carsise Wild West Hat
5682 -> Carsise Wild West Shirt
5683 -> Carsise Wild West Gloves
5684 -> Carsise Wild West Boots
5685 -> Phyllis Wild West Hat
5686 -> Phyllis Wild West Shirt
5687 -> Phyllis Wild West Gloves
5688 -> Phyllis Wild West Boots
5689 -> Ami Wild West Hat
5690 -> Ami Wild West Shirt
5691 -> Ami Wild West Gloves
5692 -> Ami Wild West Boots
5705 Lance Matrix Hat
5706 Lance Matrix Suit
5707 Lance Matrix Gloves
5708 Lance Matrix Shoes
5709 Phyllis Matrix Hat
5710 Phyllis Matrix Coat
5711 Phyllis Matrix Gloves
5712 Phyllis Matrix Shoes
5713 carsise Matrix Hat
5714 Carsise Matrix Robe
5715 Carsise Matrix Gloves
5716 Carsise Matrix Boots
5721 Ami Matrix Diadem
5722 Ami Matrix Costume
5723 Ami Matrix Muffs
5724 Ami Matrix Shoes
5725 carsise Ninja Hat
5726 Carsise Ninja Robe
5727 Carsise Ninja Gloves
5728 Carsise Ninja Boots
5729 Lance Ninja Hat
5730 Lance Ninja Suit
5731 Lance Ninja Gloves
5732 Lance Ninja Shoes
5733 Phyllis Ninja Hat
5734 Phyllis Ninja Coat
5735 Phyllis Ninja Gloves
5736 Phyllis Ninja Shoes
5737 Ami Ninja Diadem
5738 Ami Ninja Costume
5739 Ami Ninja Muffs
5740 Ami Ninja Shoes
5741 carsise Superman Hat
5742 Carsise Superman Robe
5743 Carsise Superman Gloves
5744 Carsise Superman Boots
5745 Lance Superman Hat
5746 Lance Superman Suit
5747 Lance Superman Gloves
5748 Lance Superman Shoes
5749 carsise Shinigami Hat
5750 Carsise Shinigami Robe
5751 Carsise Shinigami Gloves
5752 Carsise Shinigami Boots
5753 Lance Shinigami Hat
5754 Lance Shinigami Suit
5755 Lance Shinigami Gloves
5756 Lance Shinigami Shoes
5757 Phyllis Shinigami Hat
5758 Phyllis Shinigami Coat
5759 Phyllis Shinigami Gloves
5760 Phyllis Shinigami Shoes
5761 Ami Shinigami Diadem
5762 Ami Shinigami Costume
5763 Ami Shinigami Muffs
5764 Ami Shinigami Shoes
5910 August Wings 1
5911 August Wings 2
5912 August Wings 3
5913 August Wings 4
5914 August Wings 5
5915 August Pet 1
5916 August Pet 2
5917 August Pet 3
5918 August Pet 4



&summon <monster id>,<time in ms>,1 (example: &summon 677,900000,1 would summon blood spirit for 3 hours and he will not attack)
mobs:
1 -> Long Haired Guy
2 -> Strong Guy
3 -> Female Lead
4 -> Lady 2
5 -> Warrior
10 -> Artisan
11 -> Occult Merchant
12 -> Castle Guard
13 -> Shopkeeper
14 -> Head Secretary
15 -> Attendant
16 -> Banker
17 -> Trader
18 -> Innkeeper
19 -> Peter
20 -> Blacksmith
21 -> Shaitan Blacksmith
22 -> Thunder Blacksmith
23 -> High Priest
24 -> Thundoria Banker
25 -> Icicle Hotel
26 -> Shaitan Inn
27 -> Shaitan Banker
28 -> Thundoria Shop
29 -> Nurse
30 -> Shaitan Service
31 -> Armored Crab
32 -> Sharp Beak
34 -> Horned Penguin
35 -> Black Bobcat
36 -> Feral White Bobcat
37 -> Pumpkin Knight
38 -> Tribal Shaman
39 -> Sea Snail
40 -> Manbeast Captain
41 -> Iron Mummy
42 -> Steel Mummy
43 -> Killer Cactus
44 -> Blackarrow Squid
45 -> Sand Bandit
46 -> Snowy Bat
47 -> Palace Guard
48 -> Humpy Camel
49 -> Sand Raider
50 -> Relic Protector
51 -> Naiad
52 -> Cursed Corpse
53 -> Water Dancer
54 -> Azure Siren
55 -> Chimera
56 -> Dark Blue Pulp
57 -> Sawtooth Shark
58 -> Ruby Dolphin
59 -> Mermaid
60 -> Skeleton Fish
61 -> Fire Spirit
62 -> Hopping Lizard
63 -> Dharma Pharaoh
64 -> Mad Boar
65 -> Terra Artificer
66 -> Terra Soldier Leader
67 -> Terra Captain
68 -> Terra Elder
69 -> Little Squirt
70 -> Little Squidy
71 -> Sleepy Snail
74 -> Icy Dragon
75 -> Mystic Shrub
76 -> Rookie Boxeroo
77 -> Boxeroo Champion
78 -> Crimson Siren
79 -> Fallen Naiad
80 -> Berserk Boxeroo
81 -> Crystalline Dolphin
82 -> Vampire Bat
83 -> Sailor Penguin
85 -> Stramonium
86 -> Needle of Stramonium
87 -> Frost Chimera
88 -> Miner Mole
89 -> Mermaid Queen
90 -> Sea Jelly
91 -> Electric Sea Jelly
92 -> Tempest Sea Jelly
93 -> Bandit
94 -> Smuggler
95 -> Cactus
96 -> Melon
97 -> Seaweed
98 -> Yeti
99 -> Behemoth
100 -> Wolf Cub
101 -> Starving Wolf
102 -> Feral Wolf
103 -> Forest Spirit
104 -> Marsh Spirit
105 -> Siren Queen
106 -> Sand Bandit Leader - Garet
107 -> Treant
119 -> Grass Tortoise
125 -> Cuddly Lamb
126 -> Whacky Lamb
127 -> Slowpoke Snail
128 -> Stinging Beak
129 -> Sandy Shroom
130 -> Snowy Shroom
131 -> Sand Brigand
132 -> Ferocious Scorpion
133 -> Snowy Tortoise
134 -> Sandy Tortoise
135 -> Mature Grass Tortoise
136 -> Grassland Wolf
137 -> Snowy Wolf
138 -> Snow Spirit
139 -> Barbaric Bee
140 -> Thickskin Lizard
141 -> Battle Tortoise
142 -> Snowy Bear Cub
143 -> Armored Crab
144 -> Snowy Tusk Boar
145 -> Jack the Pirate's Sailor
146 -> Jack the Pirate's Fighter
147 -> Pirate Ship
148 -> Cannibal Pirate Ship
184 -> Greedy Shroom
185 -> Mystic Flower
186 -> Sand Crab
187 -> Baby Icy Dragon
188 -> Baby Scorpion
189 -> Angelic Panda
190 -> Anubis
193 -> Baby Squid
194 -> Snowman
195 -> Cumbersome Yeti
196 -> Lizardman
197 -> Lizard Warrior
198 -> Blood Polliwog
199 -> Great Polliwog
200 -> Cavalier
201 -> Shadow Hunter
202 -> Palace Guard
203 -> Phantom Tree
204 -> Rock Golem
205 -> Small Treant
206 -> Mini Bee
207 -> Pine Tree
208 -> Crystal Ore
209 -> Crystal Ore
210 -> Man-Eating Spider
211 -> Bandit Leader - Adder
212 -> Iron Golem
213 -> Bubble Clam
214 -> Oyster
215 -> Orange Mystic Shrub
216 -> Snowy Mystic Shrub
217 -> Red Mystic Shrub
218 -> Dry Mystic Shrub
219 -> Blue Mystic Shrub
220 -> Purple Mystic Shrub
221 -> Ancient Mystic Shrub
222 -> Snowy Mystic Flower
223 -> Terra Guard
224 -> Owlie
225 -> White Owlie
226 -> Brigand
227 -> Sentry Crab
228 -> Snowy Snail
229 -> Great King Clam
230 -> Pirate Squirt
231 -> Pirate Squidy
232 -> Sailor Squirt
233 -> Sailor Squidy
234 -> Snow Squirt
235 -> Snow Squidy
236 -> Nightmare
237 -> Piglet
238 -> Little Deer
239 -> Snowy Piglet
240 -> Little White Deer
241 -> Lizard King
242 -> Fish Bone
243 -> Ninja Mole
244 -> Water Fairy
245 -> Stone Golem
246 -> Crimson Golem
247 -> Big Scorpion
248 -> Elite Tribal Warrior
249 -> Tribal Villager
250 -> Giant Lizard
251 -> Mudman
252 -> Killer Shroom
253 -> Mud Monster
254 -> Blur Beast
255 -> Naive Snow Doll
256 -> Fragile Snow Doll
257 -> Playful Snow Doll
258 -> Bear Cub
259 -> Polar Bear
260 -> King Penguin
261 -> Forest Hunter
262 -> Soul of Goddess
263 -> Terra Captain
264 -> Tusk Battle Boar
265 -> War Tortoise
266 -> Elk
267 -> Undead Warrior
268 -> Skeletal Warrior
269 -> Skeletal Archer
270 -> Undead Archer
271 -> Werewolf Warrior
272 -> Werewolf Archer
273 -> Long Hair Crab
274 -> Armored King Crab
275 -> Pumpkin General
276 -> Snail General
277 -> Fearsome Tortoise
278 -> King Tortoise
279 -> Violent King Bear
280 -> Cactus Chieftian
281 -> Snow Lady
282 -> Relic Guard
283 -> Tribal Chieftian
284 -> Guardian Angel
285 -> Lubi Terror
286 -> Melon
287 -> Angel Squirt
288 -> Angel Squidy
289 -> Atrocious Yeti King
290 -> Captain Fickle
291 -> Jack the Pirate's Militia
292 -> Hard Crust Snail
293 -> Northern Snail
294 -> Gigantic Melon
295 -> Air Porky
296 -> Combat Piglet
297 -> Crazy Sheep
298 -> Meadow Deer
299 -> Grassland Elk
301 -> Ship 01
302 -> Boat 02
303 -> Boat 03
304 -> Boat 04
305 -> Attack Boat 1
306 -> Defense low level boat 1
307 -> Attack Boat 2
308 -> Defense Boat 2
309 -> Speedboat 1
310 -> Speedboat 2
350 -> Defense Turret A
400 -> Shaitan Service
401 -> Icicle Shop
402 -> Argent Boy
403 -> Shaitan Boy
404 -> Shaitan Artisan
405 -> Icicle City Artisan
406 -> Thundoria Nurse
407 -> Shaitan Nurse
408 -> Shaitan Shop
409 -> Thin Sailor
410 -> Fat Sailor
411 -> Shaitan Inn
412 -> Shaitan Bank
413 -> Mona
414 -> Little Tommy
415 -> President of Commerce
416 -> Thundoria Ambassador
417 -> Navy Commander
418 -> Thundoria Teleporter
419 -> Icicle Nurse
420 -> Clan Chief
421 -> Fortunate Mother
422 -> Merman Prince
423 -> Icicle Teleporter
424 -> Shaitan Teleporter
425 -> Little Daniel
426 -> Galley 01
427 -> Galley 02
428 -> Galley 03
429 -> Manufacturer Desmond
430 -> Holy Priestess
431 -> Thundoria Blacksmith
432 -> Sailing Ship 01
433 -> Sailing Ship 02
434 -> Sailing Ship 03
435 -> Cuddly Lamb
436 -> Icicle Blacksmith
437 -> Thundoria Service
438 -> Buoy 1
439 -> Buoy 2
440 -> Freight Npc
441 -> Argent Navy Girl
442 -> Icicle Navy Girl
443 -> Thundoria Navy Girl
444 -> Shaitan Navy Girl
445 -> Icicle Navy Guy
446 -> Argent Navy Guy
447 -> Thunder Navy Guy
448 -> Shaitan Navy Guy
449 -> Trader 3
450 -> Trader 4
451 -> Dockman
452 -> Dockman 1
453 -> Dockman 2
454 -> Dockman 3
455 -> Landing Sign
456 -> Wooden Crate
457 -> Wooden Barrel
458 -> Fearsome Tortoise Lair
459 -> Freights (Wood)
460 -> Sunken Ship
461 -> Fish Swarm
462 -> Fish Swarm (Bountiful)
463 -> Bird Nest
464 -> Iron Ore
465 -> Stone Ore
466 -> Honeycomb
467 -> Phantom Sword
468 -> Lucky Magical Stone
469 -> Pine Tree
470 -> Pine Tree
471 -> Pine Tree
472 -> Mushroom
473 -> Thundoria Ambassador
500 -> Wolf
501 -> Steel-shell Snail
502 -> Elite Skeletal Archer
503 -> Dark Mud Monster
504 -> Great Polar Bear
505 -> Sturdy Rock Golem
506 -> Elite Skeletal Warrior
507 -> Elite Palace Sentinel
508 -> Horrific Cursed Corpse
509 -> Elite Shadow Hunter
510 -> Elite Palace Guard
511 -> Lumbering Treant
512 -> Cursed Water Fairy
513 -> Elite Werewolf Warrior
514 -> Huge Spiky Stramonium
515 -> Agile Tribal Villager
516 -> Cumbersome Snowman
517 -> Cumbersome Yeti
518 -> Vicious Pumpkin Knight
519 -> Elite Tribal Warrior
520 -> Elite Werewolf Archer
521 -> Vicious Undead Warrior
522 -> Corrupted Guardian Angel
523 -> Mad Tribal Witchdoctor
524 -> Frenzied Lizardman
525 -> Nimble Forest Hunter
526 -> Nimble Shadow Hunter
527 -> Terra Soldier Leader
528 -> Elite Lizardman Warrior
529 -> Elite Terra Warrior
530 -> Infant Icy Dragon
531 -> Feral White Bobcat
532 -> Vicious Grassland Elder
533 -> Terra Artificer Leader
534 -> Feral Black Bobcat
535 -> Ancient Relic Guard
536 -> Ancient Relic Protector
537 -> Sakura Pirate Sailor
538 -> Sakura Pirate Fighter
539 -> Sakura Pirate Militia
540 -> Frenzied Wolf
541 -> Deadly Skeletal Archer
542 -> Shadow Hunter Champion
543 -> Mad Tribal Villager
544 -> Horrific Snowman
545 -> Horrific Yeti
546 -> Evil Pumpkin Knight
547 -> Treant Terror
548 -> Deadly Werewolf Archer
549 -> Evil Undead Warrior
550 -> Evil Guardian Angel
551 -> Evil Tribal Shaman
552 -> Frantic Lizardman
553 -> Ruthless Forest Hunter
554 -> Ruthless Shadow Hunter
555 -> Lizardman Champion
556 -> Terra Champion
557 -> Cursed White Bobcat
558 -> Wicked Terra Elder
559 -> Cursed Black Bobcat
560 -> Evil Relic Guardian
561 -> Huge Cyborg
562 -> Northern Pirate Sailor
563 -> Northern Pirate Fighter
564 -> Northern Pirate Militia
565 -> Skeletal Warrior Leader
566 -> Werewolf Warrior Leader
567 -> Lizard Warrior Leader
568 -> Terra Warrior Leader
569 -> Beardy Pirate Sailor
570 -> Beardy Pirate Fighter
571 -> Beardy Pirate Militia
572 -> Blackout Squid
573 -> Sakura 13 Support Ship
574 -> Sakura 13 Warship
575 -> Icky Seaweed
576 -> White Cap Sea Jelly
577 -> Swift Skeleton Fish
578 -> Sluggish Squid
579 -> Ocean Water Dancer
580 -> Thunder Sea Jelly
581 -> Evil Blood Polliwog
582 -> Vicious Mermaid
583 -> Tempest Sea Jelly
584 -> Topaz Dolphin
585 -> Spiny Fish Bone
586 -> Big Eyed Polliwog
587 -> Bewitching Siren
588 -> Amethyst Dolphin
589 -> Siren Archer
590 -> Berserk Mermaid Protector
591 -> Berserk Siren Guard
592 -> Octopus
593 -> Jack the Pirate's Support Ship
594 -> Jack the Pirate's Warship
595 -> Wild Seaweed
596 -> Man Eating Sea Jelly
597 -> Tanned Skeleton Fish
598 -> Vicious Baby Squid
599 -> Evil Water Dancer
600 -> Shocking Sea Jelly
601 -> Feral Blood Polliwog
602 -> Wandering Mermaid
603 -> Tornado Sea Jelly
604 -> Hungry Fish Bone
605 -> Evil Great Polliwog
606 -> Dark Blue Siren
607 -> Frenzied Siren
608 -> Tanned Mermaid Protector
609 -> Tanned Siren Guard
610 -> Chameleon Squid
611 -> Northern Pirate Support Ship
612 -> Northern Pirate Warship
613 -> Floating Seaweed
614 -> Poisonous Sea Jelly
615 -> Decaying Fish Bone
616 -> Swift Baby Squid
617 -> Midnight Water Dancer
618 -> Swift Electric Sea Jelly
619 -> Prowling Blood Polliwog
620 -> Shadow Mermaid
621 -> Swift Cyclonic Sea Jelly
622 -> Mature Ruby Dolphin
623 -> Scavenger Fish Bone
624 -> Great Feral Polliwog
625 -> Ancient Siren
626 -> Old Sawtooth Shark
627 -> Ancient Siren Archer
628 -> Horrific Mermaid Protector
629 -> Horrific Siren Guard
630 -> Beardy Pirate Support Ship
631 -> Beardy Pirate Warship
632 -> Cursed Seaweed
633 -> Berserk Sea Jelly
634 -> Evil Skeleton Fish
635 -> Rapid Squid
636 -> Swift Water Dancer
637 -> Berserk Electric Sea Jelly
638 -> Vampiric Polliwog
639 -> Cursed Mermaid
640 -> Raging Electric Sea Jelly
641 -> Old Ruby Dolphin
642 -> Feral Fish Bone
643 -> Stealth Great Polliwog
644 -> Ancient Bewitching Siren
645 -> White Finned Shark
646 -> Old Ruby Dolphin
647 -> Shadow Siren
648 -> Ancient Mermaid Protector
649 -> Ancient Siren Guard
650 -> Sakura 13 Pirate Command Ship
651 -> Feral Skeleton Fish
652 -> Feral Ruby Dolphin
653 -> Ancient Dark Blue Siren
654 -> Spearhead Shark
655 -> Feral Diamond Dolphin
656 -> Jack the Pirate's Command Ship
657 -> Feral Siren
658 -> Black Finned Shark
659 -> Northern Pirate Command Ship
660 -> Silk Shark
661 -> Beardy Pirate Command Ship
662 -> Sakura 13 Pirate Flagship
663 -> Jack the Pirate's Flagship
664 -> Northern Pirate Flagship
665 -> Beardy Pirate Flagship
666 -> Bloodthirsty Hunter
667 -> Navy Rifleman
668 -> Jack - Black Sail
669 -> Imaginary Snow Doll
670 -> Snow Doll Spirit
671 -> Evil Snow Doll Spirit
672 -> Confused Snow Doll
673 -> Death Knight
674 -> Clumsy Mud Monster
675 -> Huge Mud Monster
676 -> Jungle Monster
677 -> Blood Spirit
678 -> Snowman Warlord
679 -> Wandering Soul
680 -> Massive Seaweed
681 -> Grand Sea Jelly
682 -> Sepia Boss
683 -> Great White Shark
684 -> Polliwog Boss
685 -> Ancient Behemoth
686 -> Sorrow Warrior
687 -> Wailing Warrior
688 -> Wailing Archer
689 -> Sorrow Archer
690 -> Sorrow Captain
691 -> Wailing Captain
692 -> Wailing Archer Captain
693 -> Sorrow Archer Captain
694 -> Treasure Chest
695 -> Swamp Bog
696 -> Swamp Man
697 -> Swamp Watcher
698 -> Swamp Warden
699 -> Mystic Tree
700 -> Ancient Sentinel
701 -> Jungle Guardian
702 -> Fish Bone Ambusher
703 -> Fish Bone Persuer
704 -> Water Mine
705 -> Treasure Chest
706 -> Master Swamp Bog
707 -> Swamp Champion
708 -> Master Swamp Watcher
709 -> Obscure Chest 1
710 -> Obscure Chest 2
711 -> Obscure Chest 3
712 -> Abandoned Chest 1
713 -> Abandoned Chest 2
714 -> Abandoned Chest 3
715 -> Chest of Demonic World 1
716 -> Chest of Demonic World 2
717 -> Chest of Demonic World 3
718 -> Tree of Fortune
719 -> Sunken Merchant Ship
720 -> Elite Wailing Warrior
721 -> Wailing Marksman
722 -> Cursed Mummy
723 -> Crazy Mummy
724 -> Water Hydra
725 -> Demonic Snowman
726 -> Demonic Yeti
727 -> Mysterious Pebble
728 -> Blue Base
729 -> Red Base
730 -> Basic Blue Guard Tower
731 -> Basic Red Guard Tower
732 -> Chun Li
733 -> Wu Xin
734 -> Pirate 006
735 -> Pirate 007
736 -> Pirate 008
737 -> Long Er
738 -> Sang Di
739 -> Advance Blue Guard Tower
740 -> Advance Red Guard Tower
741 -> Wolfman Archer
742 -> Blue Team Granary
743 -> Red Granary
744 -> Blue Team Warehouse
745 -> Red Team Warehouse
746 -> Iron Tree
747 -> Pirate Ringleader
748 -> Fox Taoist
749 -> Red Team Tent
750 -> Blue Tent
751 -> Red House
752 -> Blue House
753 -> Red Team Pagoda
754 -> Blue Tower
755 -> Wang Mo
756 -> Yuri
757 -> Pirate Captain 008
758 -> Luna
759 -> Hocus Pocus
760 -> Shuang
761 -> Fox Spirit
762 -> Red Base
763 -> Blue Base
764 -> Zombie (Pong)
765 -> Zombie (Gang)
766 -> Zombie (Hu)
767 -> Globbler Pirate Ship
768 -> Long Fin Pirate Ship
769 -> Skewering Pirate Ship
770 -> Pirate Flagship
771 -> Zhao
772 -> Cloud
773 -> Zhou
774 -> Misty
775 -> Wang Rong
776 -> Fox Sage
777 -> Meteorite
778 -> Legendary Tree of Fortune
779 -> Bill
780 -> Evil Reindeer
781 -> Santa Claus
782 -> Chirstmas Tree
783 -> Christmas Tree Npc
784 -> Evil Santa Claus
785 -> Heaven Gate
786 -> Lizardman Warrior Commander
787 -> Evil Tribal Warrior
788 -> Evil Tribal Chieftian
789 -> Black Dragon
790 -> Black Dragon Lair Npc
791 -> Baby Black Dragon
792 -> Qu Yuan
793 -> Baby Thunder Dragon
794 -> Tempest Dragon
795 -> Heaven Gate
796 -> Prehistoric Giant Octopus
797 -> Skeletar Pirate - Lala
798 -> Wellington
799 -> Deathsoul Guard
800 -> Auto Defense Weapon
801 -> Deathsoul Turret
802 -> Jack Arrow
803 -> Mark Turner
804 -> Elizabeth
805 -> Barborosa
806 -> Skeletar Pirate - Kaka
807 -> Deathsoul Commander
808 -> Deathsoul Soldier
809 -> Skeletar Pirate - Tutu
810 -> Birthday Strange Pirate
811 -> Strange Pirate Chief
812 -> Deathsoul Gunboat
813 -> Deathsoul Speed Boat
814 -> Skeletar Pirate Ship
815 -> Black Jewel
816 -> Spirit Ship
817 -> Deathsoul Officer
818 -> Soul Gathering Coffin
819 -> Bayside Wreckage
820 -> Bayside Wreckage
821 -> Hell Skeleton A
822 -> Hell Skeleton B
823 -> Hell Mummy A
824 -> Hell Mummy B
825 -> Hell Corpse A
826 -> Hell Corpse B
827 -> Hell Pharaoh A
828 -> Hell Pharaoh B
829 -> Richie Yao
830 -> Richie the Seventh
831 -> Richie the Sixth
832 -> Richie the Fifth
833 -> Richie the Fourth
834 -> Richie the Third
835 -> Richie the Second
836 -> Big Richie
837 -> Cerebus
838 -> Jackpot Machine
839 -> Furnace of Immortality
840 -> Vault Assistant
841 -> Little Squidy Captain
842 -> Strong Little Deer
843 -> Aberrance Hopping Lizard
844 -> Vampiric Elk
845 -> Snowy Snail Monarch
846 -> Smuggler Leader
847 -> Ancient Sandy Tortoise
848 -> Violent Air Porky
849 -> Man-Eating Spider Queen
850 -> Berserk Mad Boar
851 -> Grassland Wolf Champion
852 -> Fearsome Skeletal Archer
853 -> Elite Tempest Sea Jelly
854 -> Malicious Azure Siren
855 -> Aberrance Blood Polliwog
856 -> Black Market Merchant
857 -> Revived Soul of Goddess
858 -> Lady Boss
859 -> Novice Chaos Chest
860 -> Standard Chaos Chest
861 -> Expert Chaos Chest
866 -> X Machine
867 -> Matchstick
868 -> Lance Newbie Phantom
869 -> Lance Hunter Phantom
870 -> Lance Crusader Phantom
871 -> Lance Voyager Phantom
872 -> Carsise Newbie Phantom
873 -> Carsise Swordsman Phantom
874 -> Carsise Champion Phantom
875 -> Phyllis Newbie Phantom
876 -> Phyllis Explorer Phantom
877 -> Phyllis Sharpshooter Phantom
878 -> Phyllis Cleric Phantom
879 -> Ami Newbie Phantom
880 -> Ami Cleric Phantom
881 -> Ami Seal Master Phantom
882 -> Boiler
883 -> Black Dragon Lance
884 -> Black Dragon Carsise
885 -> Black Dragon Phyllis
886 -> Black Dragon Ami
887 -> Material Generator
888 -> Defoliate Pine
889 -> Lavender Core Wood
890 -> Tusk Softwood
891 -> Metal Norite
892 -> Rue
893 -> Flower Pear
894 -> Fir
895 -> Jade Sandal
896 -> Crimson Ceiba
897 -> Water Willow
898 -> Iron Ore
899 -> Bronze Ore
900 -> Crystal
901 -> Silver Ore
902 -> Gold Ore
903 -> Strange Metal
904 -> Fascinating Gem
905 -> Diamond
906 -> Sorcery Ore
907 -> Oceania Meteorite
908 -> Skeletar Ship
909 -> Coral Ship
910 -> Ossein Ship
911 -> Turtle Shell Ship
912 -> Hard Shell Ship
913 -> Shiny Coral Ship
914 -> Sharp Skeletar Ship
915 -> Sorceror Ship
916 -> Crystal Coral Ship
917 -> Vengence Ship
918 -> Dotted Codfish
919 -> Clownfish
920 -> Squirting Fish
921 -> Moon Tail Eel
922 -> Diving Clam
923 -> Phoenix Prawn
924 -> Tiger Bone Fish
925 -> Pearlie Ratfish
926 -> Starry Wood
927 -> Man-Eating Shark
928 -> Turkey
929 -> Mini Santa
930 -> Bald Turkey
931 -> Elk Baby
932 -> Snowman Baby
933 -> Medusa
934 -> Navy Token Box
935 -> Pirate Token Box
936 -> Pirate Defense Tower
937 -> Meaty Penguin
938 -> Aberrance Lizard
939 -> Terra Miner
940 -> Sealed Warden
941 -> Hell Emissary
942 -> Water Mine Lv1
943 -> Water Mine Lv2
944 -> Water Mine Lv3
945 -> Water Mine Lv4
946 -> Ë®À×LV5
947 -> Exploding Lamb Lv1
948 -> Exploding Lamb Lv2
949 -> Exploding Lamb Lv3
950 -> Exploding Lamb Lv4
951 -> Exploding Lamb Lv5
952 -> Black Dragon Phantom
953 -> Pirate Devil Tower
954 -> Navy Statue
955 -> Pirate Statue
956 -> Killer Scorpion
957 -> Sand Pirate
958 -> Desert Lizard Warrior
959 -> Phantom Knight
960 -> Sacred Snow Doll
961 -> Great Polar Bear
962 -> Ice Guard
963 -> Evil Ice Phantasm
964 -> Berserk Tribesman
965 -> Thunder Lion
966 -> Evil Carcass
967 -> Warrior Phantom
968 -> Devious Cactus
969 -> Horrifying Mummy
970 -> Berserk Snowboar
971 -> Snow Mistress
972 -> Devious Bat
973 -> Pumpkin Death Warrior
974 -> Despair Knight - Saro
975 -> Abyss Mudmonster - Karu
976 -> Abyss Prisoner - Aruthur
977 -> Abyss Demon - Sacrois
978 -> Abyss Beast - Kuroo
979 -> Abyss Lord - Phantom Baron
980 -> Abyss Lord - Demon Flame
981 -> Abyss Lord - Evil Beast
982 -> Abyss Lord - Tyran
983 -> Abyss Lord - Phoenix
984 -> Abyss Lord - Despair
985 -> Abyss Lord - Drakan
986 -> Abyss Lord - Tidal
987 -> Abyss Lord - Hardin
988 -> Abyss Supreme - Kara
989 -> Bloodwing Angel
990 -> Black Devious Angel
991 -> Death Squirty
992 -> Death Squirdy
993 -> Navy Granary
994 -> Pirate Granary
995 -> Navy Ammo Warehouse
996 -> Pirate Ammo Warehouse
997 -> Navy Cannon Tower
998 -> Pirate Cannon Tower
999 -> Navy Emissary
1000 -> Pirate Emissary
1001 -> Victory Goddess
1002 -> War Tree
1003 -> Navy Tower
1004 -> Pirate Tower
1005 -> Navy Defense Tower
1006 -> Navy Devil Tower
1007 -> Navy Guardian
1008 -> Pirate Guardian
1009 -> Aries Guardian
1010 -> Navy Advanced Tower
1011 -> Pirate Advanced Tower
1012 -> Medusa
1013 -> Navy Token Box
1014 -> Pirate Token Box
1015 -> Pirate Defense Tower
1016 -> Pirate Devil Tower
1017 -> Navy Statue
1018 -> Pirate Statue
1019 -> Navy Granary
1020 -> Pirate Granary
1021 -> Navy Ammo Warehouse
1022 -> Pirate Ammo Warehouse
1023 -> Navy Cannon Tower
1024 -> Pirate Cannon Tower
1025 -> Navy Emissary
1026 -> Pirate Emissary
1027 -> Victory Goddess
1028 -> Navy Tower
1029 -> Pirate Tower
1030 -> Navy Defense Tower
1031 -> Navy Devil Tower
1032 -> Navy Guardian
1033 -> Pirate Guardian
1034 -> Navy Advanced Tower
1035 -> Pirate Advanced Tower
1036 -> Balloon
1037 -> Marriage Charlatan
1041 -> Chirstmas Tree small
1042 -> Chirstmas Tree big
1046 -> Chirstmas Reindeer


OK, lets say the other player is called Yippie - so you would do the following:


&qcha Yippie

Now, some informations about the user will be displayed in your system-channel (above the Chat). One of the things that will be displayed is the ID of the player. Something like "ID: 21"

If you know the ID you can do


&attr 15,XXX,21

and for XXX you set the number of EXP. Be careful -> you'll set the EXP to that value. So if the user has 100000 EXP and you do &attr 15,500,21 he will then have 500 EXP!

Here is a little list of EXP-values needed for certain levels:
40 2988860
50 10938016
60 37746418
75 952091724
85 2531834707
90 2753567934
95 3215282476
100 4176709541

It could happen that if you set the EXP using &attr the next time the player kills something he will see a wrong number of EXP gained. So instead of seeing 1 EXP gained after killing a Shrub he will see 490248205 EXP gained. This will only happen once. The next kill will give normal EXP.

That way you don't need to any mobs
______
hmm i found something out while i was playing with numbers i got a purple named weapon (high attack) and when it gives a stat its always +10
Example: if u want to make a drakan do &make 116,1,22 and it will have a purple name and if it gets a stat like mammoth it will give +10str

22 gives purple all the time, and when yo uget stats, its +10
7 is green with +5 stats
11 has one lvl1 gem in it | 523 green with 1 gem and +5 stats
18 is red name no stats
20 is pink name no stats, better than read
23 is random color, random stats
98 is random color green/white but always has random stats, so far +3 to +9
365 is Grey Xoebe

____
&addkb 48 for 48slots inventory
&attr 105,1000 -gives u max attack of 1000
&attr 104,1000 - gives u attack of 1000
&attr 103 or 102 gives u aspeed etc
attr 98> acc
attr 99=>con
_

&itemattr 2,1,26,amount of stats you want.

26> strength
27> Agility
28> Accuracy
29> Constitution
30> Spirit

5 - Reputation
6 - Attribute Points
7 - Skill Points
8 - Gold
11 - SLV
12 - Life-Skill Level
13 - Life-Skill Points
19 - SEXP
50 - STR
51 - ACC
52 - AGI
53 - CON
54 - SPR
69 - Movement-Speed Don't use values much higher than 2000!
96 - Strenght
97 - Agility
98 - Accuracy
99 - Constituction
100 - Spirit
102 - Attack Speed
104 - Minimal Attack
105 - Maximal Attack
106 - Defence
107 - Max HP Sets your max. number of HP
108 - Max SP
109 - Dodge
110 - Hit-Rate

30,30,hell2
45,45,abandonedcity3
901,3494,magicsea => bs shaitan
____
Skills
&skill <id>,10 Don't add the 0's that are infront of the id for ex &skill 275,10 will add a bd skill to your char.

//ID Skill Name
1 Windslash
2 Searing Slash
3 Illusion Slash
4 Phoenix Slash
5 Fiery Arrow
6 Icy Arrow
7 Shot Array
8 Fissure Shot
9 Flare Shield
10 Great Cannonball
11 Cannon Barrage
12 Sound Burst
13 Summon
14 Disguise
15 Water Surge
16 Cyclone
17 Sacred Ray
18 Guardian Angel
19 Benediction
20 Invoke
22 Fallen Pharaoh
23 Venom Cloud
24 Fireshield
25 Bare Hand
26 Dual Implosion
27 Cannon Shot
28 Sword
29 Greatsword
30 Bow
31 Firegun
32 Blade
33 Boxing Gloves
34 Dagger
35 Gold Pouch
36 Short Staff
37 Hammer
38 Dual Weapon
39 Login
40 Set Sail
42 Ink Blast
43 Tempest Slash
44 Gun Research
45 Angel Blessing
46 Parlay Hit
47 Phantom Slash
48 Cure
49 Blind
50 Protective Shield
51 Frost Shield
52 Refined Gunpowder
53 Attack Weakness
54 Angel Blessing
55 Benediction
56 Inferno Wings
57 Holy Beam
58 Holy Heraldry
59 Ray of Luck
60 Traversing
61 Inferno Blast
62 ...
63 Will of Steel
64 Strengthen
65 ...
66 ...
67 ...
68 ..
69 Evasion
70 ...
71 Beast Strength
72 Recuperate
73 Shield Mastery
74 Range Mastery
75 ...
76 Ranger
77 Hunter Disguise
78 Firegun Mastery
79 ????
80 Divine Grace
81 ...
82 Mighty Strike
83 Primal Rage
84 Berserk
85 Backstab
86 Shadow Slash
87 Poison Dart
88 Numb
89 Eagle's Eye
90 Dual Shot
91 Hunter Strike
92 Astro Strike
93 Frozen Arrow
94 Cripple
95 Enfeeble
96 Headshot
97 Heal
98 Recover
99 Spiritual Bolt
100 Spiritual Fire
101 Tempest Boost
102 Tornado Swirl
103 Angelic Shield
104 Seal of Elder
105 Shadow Insignia
106 Energy Shield
107 Howl
108 Barbaric Crush
109 ...
110 Shield of Thorns
111 Parry
112 Meteor Shower
113 ...
114 Dispersion Bullet
115 Penetrating Bullet
116 ...
117 Greater Heal
118 Greater Recover
119 Cursed Fire
120 Counterguard
121 Abyss Mire
122 Healing Spring
123 Stealth
124 Revival
125 Totem's Worship
126 Gunpowder Research
127 Tiger Roar
128 Saliva of Lizard
129 Needle of Stramonium
130 Stone of Treant
131 Panda's Bamboo Shoot
132 Bolt of Terra Elder
133 Bolt of Naiad
134 Oyster
135 Bubble Clam
136 Baby Icy Dragon
137 Icy Dragoon
138 Shadow Quiver
139 Mist of Snow Lady
140 Fireball of Chieftain
141 Werewolf Quiver
142 Fireball of Giant Slug
143 Icecube of King Penguin
144 Dart of Ninja Mole
145 Heart of Mermaid
146 Relic Protector
147 Wave of King Tortoise
148 Bubble of Water Dancer
149 Mud of Mudman
150 Hand of Stramonium
151 Guardian Angel
152 Soul of Goddess
153 Mist of Snow Queen
154 Lump of Mud King
200 ...
201 ...
202 Sit
210 Diligence
211 Current
212 Conch Armor
213 Tornado
214 Lightning Bolt
215 Algae Entanglement
216 Conch Ray
217 Tail Wind
218 Whirlpool
219 Fog
220 Lightning Curtain
222 Break Armor
223 Rousing
224 Venom Arrow
225 Harden
226 Cannon Mastery
227 Toughen Wood
228 Sail Mastery
229 Reinforce Ship
230 Oil Tank Upgrade
231 ...
232 ...
233 Bombardment
234 Death Shriek
235 Blood Fury
236 Lair
237 Earthquake
238 Colossus Smash
239 Kiss of Frost
240 Tempest Blade
241 Set Stall
242 Taunt
243 Roar
244 Replicate
245 Alga Ambush
246 Jellyfish Electric Bolt
247 Squid Whirlstrike
248 Shark Attack
249 Polliwog Self Explode
250 Primal Skill 1
251 Primal Rage 2
252 Water Mine Explosion
253 Cannon Strike
254 Repair
255 Crystalline Blessing
256 Intense Magic
257 Corpse Attack
258 Corpse Range Attack
259 Fox Taoist Sorcery
260 Fox Spirit Sorcery
261 Fascinate
262 Fox Immortal Sorcery
263 Fox Immortal Area Spell
264 Ritual
265 Sachem's Witchcraft
266 Whirling Hook
267 Dog Howl
268 Corpse Venom
269 Icy Dragon Strike
270 Cyborg Blockade
271 Crab Binding
272 Curse of Kelpie
273 Frost Breath
274 Dance of Icy Dragon
275 Black Dragon Terror
276 Black Dragon Roar
277 Black Dragon Flight
278 Black Dragon Breath
279 Resurrect
280 Fairy body
281 Black Dragon Roar
282 Black Dragon Lightning Bolt
283 Black Dragon Illusion Slash
284 Black Dragon Fireball
285 Black Dragon Summon
286 Deathsoul Magma Bullet
287 Deathsoul Acceleration
288 Firegun Attack
289 Deathsoul Roquet
290 Laser Beam
291 Deathsoul Poison Dart
292 Deathsoul Summon
293 Ranged Blast
294 Cloud Attack
295 Encumbered Skeleton
296 Mytho Teleportation
297 Skeletar Shielding
298 Evil Attack
299 Deathsoul Slice
301 Roar of Deathsoul
302 Deathsoul Taunt
303 Cursed Blood
304 Moonlight Recovery
305 Deathsoul Water Arrow
306 Deathsoul Whirlpool
307 Deathsoul Lightning Curtain
308 Bomb Throwing
309 Spiritual Dart
310 Physical Dart
311 Self Destruct
312 Skill - Defecate
313 Skill - Undergarment
314 Skill - Garment
315 Skill - Coin Shower
316 Skill - Fool
317 Skill - Snooty
318 Skill - Dumb
319 Skill - Dumb
320 Shoe Barrage
321 Cooking
322 Manufacturing
323 Crafting
324 Analyze
325 Illusion Slash Illusion
326 Conch Ray Illusion
327 Headshot Illusion
328 Spiritual Bolt Illusion
329 Grenade
330 Flash Bomb
331 Radiation
332 Soul Detector
333 Ship Accelerator
334 Ship Atomizer
335 Ship Penetrator
336 Ship Impaler
337 Ship Flamer
338 Manufacturing
339 Cooking
340 Crafting
341 Analyze
342 Grenade Lv2
343 Flash Bomb Lv2
344 Radiation Lv2
345 Soul Detector Lv2
346 Ship Accelerator Lv2
347 Ship Atomizer Lv2
348 Ship Penetrator Lv2
349 Ship Impaler Lv2
350 Ship Flamer Lv2
351 Grenade Lv3
352 Flash Bomb Lv3
353 Radiation Lv3
354 Soul Detector Lv3
355 Ship Accelerator Lv3
356 Ship Atomizer Lv3
357 Ship Penetrator Lv3
358 Ship Impaler Lv3
359 Ship Flamer Lv3
360 Grenade Lv4
361 Flash Bomb Lv4
362 Radiation Lv4
363 Soul Detector Lv4
364 Ship Accelerator Lv4
365 Ship Atomizer Lv4
366 Ship Penetrator Lv4
367 Ship Impaler Lv4
368 Ship Flamer Lv4
369 Grenade Lv5
370 Flash Bomb Lv5
371 Radiation Lv5
372 Soul Detector Lv5
373 Ship Accelerator Lv5
374 Ship Atomizer Lv5
375 Ship Penetrator Lv5
376 Ship Impaler Lv5
377 Ship Flamer Lv5
378 Little Snow Ball
379 Carrion Ball Lv1
380 Noise Polluter Lv1
381 Earthquake Generator Lv1
382 Chain Bullet Lv1
383 Mirage Generator Lv1
384 Stealth Ship Lv1
385 Radar Lv1
386 Hull Repair Lv1
387 Food Generation Lv1
388 Carrion Bullet Lv1
389 Illusion Generator Lv1
390 Exploding Lamb Lv1
391 Water Mine Lv1
392 Carrion Ball Lv2
393 Noise Polluter Lv2
394 Earthquake Generator Lv2
395 Chain Bullet Lv2
396 Mirage Generator Lv2
397 Stealth Ship Lv2
398 Radar Lv2
399 Hull Repair Lv2
400 Food Generation Lv2
401 Carrion Bullet Lv2
402 Illusion Generator LV2
403 Exploding Lamb Lv2
404 Water Mine Lv2
405 Carrion Ball Lv3
406 Noise Polluter Lv3
407 Earthquake Generator Lv3
408 Chain Bullet Lv3
409 Mirage Generator Lv3
410 Stealth Ship Lv3
411 Radar Lv3
412 Hull Repair Lv3
413 Food Generation Lv3
414 Carrion Bullet Lv3
415 Illusion Generator Lv3
416 Exploding Lamb Lv3
417 Water Mine Lv3
418 Carrion Ball Lv4
419 Noise Polluter Lv4
420 Earthquake Generator Lv4
421 Chain Bullet Lv4
422 Illusion Generator Lv4
423 Stealth Ship Lv4
424 Radar Lv4
425 Hull Repair Lv4
426 Food Generation Lv4
427 Carrion Bullet Lv4
428 Illusion Generator Lv4
429 Exploding Lamb Lv4
430 Water Mine Lv4
431 Carrion Ball Lv5
432 Noise Polluter Lv5
433 Earthquake Generator Lv5
434 Chain Bullet Lv5
435 Mirage Generator Lv5
436 Stealth Ship Lv5
437 Radar Lv5
438 Hull Repair Lv5
439 Food Generation Lv5
440 Carrion Bullet Lv5
441 Illusion Generator Lv5
442 Exploding Lamb Lv5
443 Water Mine Lv5
444 Blessed Potion
445 Drag Tower
446 Devil Tower
447 Serpent Attack
448 Pirate Wave
449 Navy Wave
450 Spirit Lash
451 Sacred candle
452 Goddess statue
453 Ethereal Slash
454 Super Consciousness
455 Beast Legion Smash
456 Red Thunder Cannon
457 Devil Curse
458 Holy Judgement
459 Rebirth Mystic Power
____
Unseal 85 equips.They are better in atk than the other eqps and give more stats but they cannot be fused into apparel.

5939 Shield of The Dark Sun
5940 Shield of The Dark Sun
5941 Blade of Darkness
5942 Blade Of Darkness
5943 Blade of Hardin
5944 Blade of Hardin
5945 Firegun of AbbadonÇa
5946 Firegun of Abbadon
5947 Bow of Death
5948 Bow of Death
5949 Dagger of Asura
5950 Dagger of Asura
5951 Staff of Abyss
5952 Staff of Abyss
5954 Staff of Styx
5955 Ring of Darkness
5956 Ring of Hardin
5957 Ring of Styx
5958 Ring of Abyss
5959 Ring of Abaddon
5960 Ring of Asura
____
ATTR

0 Level Pretty obvious: modify the level of the char
1 HP You can't set a higher value than the max. HP your char has - so &attr 1,999999999 will only give you as much HP as your char actually has
2 SP same rules apply as for HP
3 -unknown- ATTR_TITLE
4 Class Use this to change your class. The following values are useful:

0 - Newbie
1 - Swordsman
2 - Hunter
4 - Explorer
5 - Herbalist
8 - Cahmpion
9 - Crusader
12 - Sharpshooter
13 - Cleric
14 - Seal Master
16 - Voyager

(actually you can set any value between 0 and 16 but only the above classes are really implemented)
5 Reputation
6 Attribute Points
7 Skill Points
8 Gold
9 -unknown- ATTR_SPRI
10 -unknown- Possibly char-type -> NPC, etc.
11 SLV
12 Life-Skill Level
13 Life-Skill Points
14 -unknown- ATTR_BOAT_BERTH
15 EXP When in boat-modus -> boat-exp
16 -unknown- ATTR_NLEXP
17 -unknown- ATTR_CLEXP
18 -unknown- ATTR_CLEFT_SAILEXP
19 -unknown- ATTR_CSAILEXP
20 -unknown- ATTR_CLV_SAILEXP
21 -unknown- ATTR_NLV_SAILEXP
22 -unknown- ATTR_CLIFEEXP
23 -unknown- ATTR_CLV_LIFEEXP
24 -unknown- ATTR_NLV_LIFEEXP
25 -unknown- ATTR_STR
26 -unknown- ATTR_DEX
27 -unknown- ATTR_AGI
28 -unknown- ATTR_CON
29 -unknown- ATTR_STA
30 -unknown- ATTR_LUK
31 -unknown- ATTR_MXHP
32 -unknown- ATTR_MXSP
33 -unknown- ATTR_MNATK
34 -unknown- ATTR_MXATK
35 -unknown- ATTR_DEF
36 -unknown- ATTR_HIT
37 -unknown- ATTR_FLEE
38 -unknown- ATTR_MF
39 -unknown- ATTR_CRT
40 -unknown- ATTR_HREC
41 -unknown- ATTR_SREC
42 -unknown- ATTR_ASPD
43 -unknown- ATTR_ADIS
44 -unknown- ATTR_MSPD
45 -unknown- ATTR_COL
46 -unknown- ATTR_PDEF
47 -unknown- ATTR_BOAT_CRANGE
48 -unknown- ATTR_BOAT_CSPD
49 -unknown- ATTR_BOAT_PRICE
50 STR
51 ACC
52 AGI
53 CON
54 SPR
55 -unknown- ATTR_BLUK
56 -unknown- ATTR_BMXHP
57 -unknown- ATTR_BMXSP
58 -unknown- ATTR_BMNATK
59 -unknown- ATTR_BMXATK
60 -unknown- ATTR_BDEF
61 -unknown- ATTR_BHIT
62 -unknown- ATTR_BFLEE
63 -unknown- ATTR_BMF
64 -unknown- ATTR_BCRT
65 -unknown- ATTR_BHREC
66 -unknown- ATTR_BSREC
67 -unknown- ATTR_BASPD
68 -unknown- ATTR_BADIS
69 Movement-Speed Values higher than 2000 aren't useful as you'll be moving faster than the screen scrolls!
70 -unknown- ATTR_BCOL
71 -unknown- ATTR_BPDEF
72 -unknown- ATTR_BOAT_BCRANGE
73 -unknown- ATTR_BOAT_BCSPD
74 -unknown- ATTR_ITEMC_STR
75 -unknown- ATTR_ITEMC_AGI
76 -unknown- ATTR_ITEMC_DEX
77 -unknown- ATTR_ITEMC_CON
78 -unknown- ATTR_ITEMC_STA
79 -unknown- ATTR_ITEMC_LUK
80 -unknown- ATTR_ITEMC_ASPD
81 -unknown- ATTR_ITEMC_ADIS
82 -unknown- ATTR_ITEMC_MNATK
83 -unknown- ATTR_ITEMC_MXATK
84 -unknown- ATTR_ITEMC_DEF
85 -unknown- ATTR_ITEMC_MXHP
86 -unknown- ATTR_ITEMC_MXSP
87 -unknown- ATTR_ITEMC_FLEE
88 -unknown- ATTR_ITEMC_HIT
89 -unknown- ATTR_ITEMC_CRT
90 -unknown- ATTR_ITEMC_MF
91 -unknown- ATTR_ITEMC_HREC
92 -unknown- ATTR_ITEMC_SREC
93 -unknown- ATTR_ITEMC_MSPD
94 -unknown- ATTR_ITEMC_COL
95 -unknown- ATTR_ITEMC_PDEF
96 -unknown- ATTR_ITEMV_STR
97 -unknown- ATTR_ITEMV_AGI
98 -unknown- ATTR_ITEMV_DEX
99 -unknown- ATTR_ITEMV_CON
100 -unknown- ATTR_ITEMV_STA
101 -unknown- ATTR_ITEMV_LUK
102 -unknown- ATTR_ITEMV_ASPD
103 -unknown- ATTR_ITEMV_ADIS
104 -unknown- ATTR_ITEMV_MNATK
105 -unknown- ATTR_ITEMV_MXATK
106 -unknown- ATTR_ITEMV_DEF
107 Max HP Sets your max. number of HP
108 Max SP
109 Dodge ?
110 Hit-Rate ?
111 -unknown- ATTR_ITEMV_CRT
112 -unknown- ATTR_ITEMV_MF
113 -unknown- ATTR_ITEMV_HREC
114 -unknown- ATTR_ITEMV_SREC
115 -unknown- ATTR_ITEMV_MSPD
116 -unknown- ATTR_ITEMV_COL
117 -unknown- ATTR_ITEMV_PDEF
118 -unknown- ATTR_STATEC_STR
119 -unknown- ATTR_STATEC_AGI
120 -unknown- ATTR_STATEC_DEX
121 -unknown- ATTR_STATEC_CON
122 -unknown- ATTR_STATEC_STA
123 -unknown- ATTR_STATEC_LUK
124 -unknown- ATTR_STATEC_ASPD
125 -unknown- ATTR_STATEC_ADIS
126 -unknown- ATTR_STATEC_MNATK
127 -unknown- ATTR_STATEC_MXATK
128 -unknown- ATTR_STATEC_DEF
129 -unknown- ATTR_STATEC_MXHP
130 -unknown- ATTR_STATEC_MXSP
131 -unknown- ATTR_STATEC_FLEE
132 -unknown- ATTR_STATEC_HIT
133 -unknown- ATTR_STATEC_CRT
134 -unknown- ATTR_STATEC_MF
135 -unknown- ATTR_STATEC_HREC
136 -unknown- ATTR_STATEC_SREC
137 -unknown- ATTR_STATEC_MSPD
138 -unknown- ATTR_STATEC_COL
139 -unknown- ATTR_STATEC_PDEF
140 -unknown- ATTR_STATEV_STR
141 -unknown- ATTR_STATEV_AGI
142 -unknown- ATTR_STATEV_DEX
143 -unknown- ATTR_STATEV_CON
144 -unknown- ATTR_STATEV_STA
145 -unknown- ATTR_STATEV_LUK
146 -unknown- ATTR_STATEV_ASPD
147 -unknown- ATTR_STATEV_ADIS
148 -unknown- ATTR_STATEV_MNATK
149 -unknown- ATTR_STATEV_MXATK
150 -unknown- ATTR_STATEV_DEF
151 -unknown- ATTR_STATEV_MXHP
152 -unknown- ATTR_STATEV_MXSP
153 -unknown- ATTR_STATEV_FLEE
154 -unknown- ATTR_STATEV_HIT
155 -unknown- ATTR_STATEV_CRT
156 -unknown- ATTR_STATEV_MF
157 -unknown- ATTR_STATEV_HREC
158 -unknown- ATTR_STATEV_SREC
159 -unknown- ATTR_STATEV_MSPD
160 -unknown- ATTR_STATEV_COL
161 -unknown- ATTR_STATEV_PDEF
162 -unknown- ATTR_LHAND_ITEMV
163 -unknown- ATTR_BOAT_SHIP
164 -unknown- ATTR_BOAT_HEADER
165 -unknown- ATTR_BOAT_BODY
166 -unknown- ATTR_BOAT_ENGINE
167 -unknown- ATTR_BOAT_CANNON
168 -unknown- ATTR_BOAT_PART
169 -unknown- ATTR_BOAT_DBID
170 -unknown- ATTR_BOAT_DIECOUNT
171 -unknown- ATTR_BOAT_ISDEAD
172 -unknown- ATTR_BOAT_SKILLC_MNATK
173 -unknown- ATTR_BOAT_SKILLC_MXATK
174 -unknown- ATTR_BOAT_SKILLC_ADIS
175 -unknown- ATTR_BOAT_SKILLC_MSPD
176 -unknown- ATTR_BOAT_SKILLC_CSPD
177 -unknown- ATTR_BOAT_SKILLC_ASPD
178 -unknown- ATTR_BOAT_SKILLC_CRANGE
179 -unknown- ATTR_BOAT_SKILLC_DEF
180 -unknown- ATTR_BOAT_SKILLC_RESIST
181 -unknown- ATTR_BOAT_SKILLC_MXUSE
182 -unknown- ATTR_BOAT_SKILLC_USEREC
183 -unknown- ATTR_BOAT_SKILLC_EXP
184 -unknown- ATTR_BOAT_SKILLC_CPT
185 -unknown- ATTR_BOAT_SKILLC_SPD
186 -unknown- ATTR_BOAT_SKILLC_MXSPLY
187 -unknown- ATTR_BOAT_SKILLV_MNATK
188 -unknown- ATTR_BOAT_SKILLV_MXATK
189 -unknown- ATTR_BOAT_SKILLV_ADIS
190 -unknown- ATTR_BOAT_SKILLV_MSPD
191 -unknown- ATTR_BOAT_SKILLV_CSPD
192 -unknown- ATTR_BOAT_SKILLV_ASPD
193 -unknown- ATTR_BOAT_SKILLV_CRANGE
194 -unknown- ATTR_BOAT_SKILLV_DEF
195 -unknown- ATTR_BOAT_SKILLV_RESIST
196 -unknown- ATTR_BOAT_SKILLV_MXUSE
197 -unknown- ATTR_BOAT_SKILLV_USEREC
198 -unknown- ATTR_BOAT_SKILLV_EXP
199 -unknown- ATTR_BOAT_SKILLV_CPT
200 -unknown- ATTR_BOAT_SKILLV_SPD
201 -unknown- ATTR_BOAT_SKILLV_MXSPLY
202 -unknown- ATTR_MAX_NUM
 
Upvote 0
Junior Spellweaver
Joined
Jan 23, 2010
Messages
187
Reaction score
12
when you guys put long stuff like that use [spoiler closed bracket then [/spoiler closet bracket
 
Upvote 0
Back
Top