Jump to content

Gelo

Members
  • Posts

    56
  • Joined

  • Last visited

Everything posted by Gelo

  1. So i already know how to call sql database from script. but how to update it? if player kill barricade then point = +1 if player trade the points to bronze coin = -Amount Thanks alot, I am really a noob prontera,164,172,2 script Points Room 757,{ query_sql ("SELECT `point` FROM `points_room` WHERE `account_id` = '"+getcharid(3)+"'", #Points); waitingroom "Collect Points and Get Bronze Coins!",0; switch( select( "Enter Greedy Points Room", "Exchange Points to "+getitemname(.CoinID), "Check Points", "Exit" ) ){ Case 1: atcommand "@die"; atcommand "@die"; atcommand "@alive"; set .@A,rand(50); set .@B,rand(50); mes "[insert the right answer to enter]"; mes "If A = "+.@A+" B = "+.@B; switch( rand(1) ){ Case 0: set .@Answer,.@A + .@B; mes "How many is A + B ?"; break; //Case 1: set .@Answer,.@A - .@B; mes "How many is A - B ?"; break; //Case 2: set .@Answer,.@A * .@B; mes "How many is A * B ?"; break; //Case 3: set .@Answer,.@A / .@B; mes "How many is A / B ?"; break; } input .@Input; if( .@Input != .@Answer ){ mes "Incorrect Code Please Try Again"; Close; } else if( .@Input == .@Answer ){ warp .Map$,0,0; end; } Case 2: mes "[Points Room]"; mes "You got "+#Points+" Points."; mes "How many will be used to change into "+getitemname(.CoinID)+" ?"; mes "Each "+getitemname(.CoinID)+" = "+.Rate+" Points."; if( #Points >= .Rate ){ input .@Amount,0,#Points; set .@Calculation,( .@Amount / .Rate ); if( .@Calculation ){ set #Points,#Points - ( .@Calculation * .Rate ); getitem 673,.@Calculation; mes "Gained "+.@Calculation+" x "+getitemname(.CoinID); } } close; Case 3: mes "[Points Room]"; mes "You got "+#Points+" Greedy Points."; default: break; } close; OnInit: set .Map$,"ordeal_1-1"; set .CoinID,673; set .Rate,10; monster .Map$,0,0,1906,100,strnpcinfo(0)+"::OnNPCKillEvent"; end; OnNPCKillEvent: if (strcharinfo(3) != "ordeal_1-1") end; if (killedrid != 1906) end; set #Points,#Points + 1; monster .Map$,0,0,1906,1,strnpcinfo(0)+"::OnNPCKillEvent"; dispbottom "You Currently Have " +#Points +" Greedy Points"; end; } ordeal_1-1,150,150,2 script Exit 757,{ mes "[Exit Points Room]"; mes "Do you want to leave this room now?"; next; menu "Yes",exit,"No",-; close; exit: warp "prontera",155,197; close; end; } ordeal_1-1,0,0,0,0 monster Greedy Barricade 1906,15,0,0,0 ordeal_1-1,0,0,0,0 monster Greedy Barricade 1906,10,0,0,0 ordeal_1-1,0,0,0,0 monster Greedy Barricade 1906,10,0,0,0 //Points Room //Mapflags ordeal_1-1 mapflag noskill ordeal_1-1 mapflag nosave ordeal_1-1 mapflag nobranch ordeal_1-1 mapflag nomemo ordeal_1-1 mapflag nowarp ordeal_1-1 mapflag nowarpto ordeal_1-1 mapflag nopenalty ordeal_1-1 mapflag pvp_noparty ordeal_1-1 mapflag noteleport
  2. ohh.. anyways I tried this one: prontera,155,181,5 script Sample 757,{ switch( select( "Enter Greedy Points Room", "Exchange Points to "+getitemname(.CoinID), "Check Points", "Exit" ) ){ Case 1: warp .Map$,0,0; end; Case 2: mes "You got "+#Points+" Points."; mes "How many will be used to change into "+getitemname(.CoinID)+" ?"; mes "Each "+getitemname(.CoinID)+" = "+.Rate+" Points."; if( #Points >= .Rate ){ input .@Amount,0,#Points; set .@Calculation,( .@Amount / .Rate ); if( .@Calculation ){ set #Points,#Points - ( .@Calculation * .Rate ); getitem 673,.@Calculation; mes "Gained "+.@Calculation+" x "+getitemname(.CoinID); } } close; Case 3: mes "You got "+#Points+" Greedy Points."; default: break; } close; OnInit: set .Map$,"guild_vs5"; set .CoinID,673; set .Rate,10; monster .Map$,0,0,1906,100,strnpcinfo(0)+"::OnKilled"; end; OnKilled: set #Points,#Points + rand(1,2); monster .Map$,0,0,1906,1,strnpcinfo(0)+"::OnKilled"; end; } guild_vs5,0,0,0,0 monster Greedy Barricade 1906,10,0,0,0 guild_vs5,0,0,0,0 monster Greedy Barricade 1906,10,0,0,0 guild_vs5,0,0,0,0 monster Greedy Barricade 1906,10,0,0,0 But when I kill a barricade, no points.. It's already working! I'll share it to you if you just want to use it Thank you very much Mr. Emistry, you're one of the best! prontera,155,181,5 script Sample 757,{ switch( select( "Enter Greedy Points Room", "Exchange Points to "+getitemname(.CoinID), "Check Points", "Exit" ) ){ Case 1: warp .Map$,0,0; end; Case 2: mes "You got "+#Points+" Points."; mes "How many will be used to change into "+getitemname(.CoinID)+" ?"; mes "Each "+getitemname(.CoinID)+" = "+.Rate+" Points."; if( #Points >= .Rate ){ input .@Amount,0,#Points; set .@Calculation,( .@Amount / .Rate ); if( .@Calculation ){ set #Points,#Points - ( .@Calculation * .Rate ); getitem 673,.@Calculation; mes "Gained "+.@Calculation+" x "+getitemname(.CoinID); } } close; Case 3: mes "You got "+#Points+" Greedy Points."; default: break; } close; OnInit: set .Map$,"guild_vs5"; set .CoinID,673; set .Rate,10; monster .Map$,0,0,1906,100,strnpcinfo(0)+"::OnKilled"; end; OnNPCKillEvent: set #Points,#Points + rand(1); monster .Map$,0,0,1906,1,strnpcinfo(0)+"::OnKilled"; dispbottom "You Currently Have " +#Points +" Greedy Points"; end; } guild_vs5,0,0,0,0 monster Greedy Barricade 1906,10,0,0,0 guild_vs5,0,0,0,0 monster Greedy Barricade 1906,10,0,0,0 guild_vs5,0,0,0,0 monster Greedy Barricade 1906,10,0,0,0
  3. Thanks emistry! I'll try this right away Already tried it mr. Emistry, It is not working well.. When i choose option 2, it wont show the input box. I think that is only the problem? Thanks
  4. Need some modifications here.. the NPC have this options: 1. Enter Greedy Points Room 2. Exchange Points to Bronze Coins 3. Check Points 4. Exit I would like to make it a room with Barricades(mob id 1906) For every Barricade killed, there is random points from 1 to 2. If player select the option Exchange Points to Bronze Coins, It will Show the user how many points are available and it will ask how many points he/she wants to exchange. The Exchange rate is this: 10 Points = 1 Bronze Coins I am also trying to script solve this, but I think I need help from you, thanks Sorry for my bad english xD // Gold Room Ordeal by Rokimoki v1.0 // Request by: InsanityProductionsR (eAthena Forum) // --- // Gold Room Warper v1.0 prontera,167,172,4 script Gold Room 107,{ set .@nombre$, "[^0000FFCucaracha de Oro^000000]"; mes .@nombre$; if (gold > 0) { mes "BZbRzBrZ !!"; next; mes .@nombre$; mes "Now I can talk!! Hey, do you want to exchange gold points to gold item?"; next; if (select("Sure!:Nope") == 2) close; mes .@nombre$; mes "Done ^^ BzBzBZ!!"; getitem 969,gold; set gold, 0; next; mes .@nombre$; } // End if mes "Bz Bz BZ!¡¡!"; next; if (select("Gold BzBz!!:A bug?") == 2) close; close2; warp "ordeal_3-2",154,154; end; } // End Script // Script Gold v1.0 - script GoldRoom -1,{ OnNPCKillEvent: if (strcharinfo(3) != "ordeal_3-2") end; if (killedrid != 1233) end; switch (rand(2)) { case 0: set .@g, 1; set gold, gold + .@g; break; case 1: set .@g, 2; set gold, gold + .@g; break; break; } // End switch dispbottom "You earned " +.@g +" Gold Points, you have at the moment " +gold +" Greedy points."; end; OnPCDieEvent: if (strcharinfo(3) != "ordeal_3-2") end; dispbottom "You have lost all your gold points, you have been killed by a player inside the Greedy room."; set gold, 0; end; } // End Script // Warps a prontera v1.0 - script Retorno::Retorno 45,2,2,{ end; OnTouch: warp "prontera",153,193; end; } // End Script // Duplicados Warps v1.0 ordeal_3-2,24,228,0 duplicate(Retorno) Retorno#r1 45 ordeal_3-2,25,58,0 duplicate(Retorno) Retorno#r2 45 ordeal_3-2,289,130,0 duplicate(Retorno) Retorno#r3 45 ordeal_3-2,283,230,0 duplicate(Retorno) Retorno#r4 45 ordeal_3-2,210,203,0 duplicate(Retorno) Retorno#r5 45 // Natural Monsters v1.0 ordeal_3-2,154,153,0,0 monster Gold Peco Peco 1233,10,0,0,0 ordeal_3-2,164,163,0,0 monster Gold Peco Peco 1233,10,0,0,0 ordeal_3-2,141,1137,0,0 monster Gold Peco Peco 1233,10,0,0,0 ordeal_3-2,159,173,0,0 monster Gold Peco Peco 1233,10,0,0,0 ordeal_3-2,0,0,0,0 monster Gold Peco Peco 1233,200,0,0,0 ordeal_3-2,0,0,0,0 monster Gold Peco Peco 1233,200,0,0,0 ordeal_3-2,0,0,0,0 monster Gold Peco Peco 1233,200,0,0,0 // Map Flags v1.0 ordeal_3-2 mapflag noskill ordeal_3-2 mapflag nobranch ordeal_3-2 mapflag nomemo ordeal_3-2 mapflag nowarpto ordeal_3-2 mapflag nopenalty ordeal_3-2 mapflag pvp_noparty // Put this in the mob_db2.txt without "//" and with the gm do @reloadmobdb or reboot the server // 1233,PECOPECO,Gold Peco Peco,Gold Peco Peco,60,3500,0,0,0,1,300,400,0,0,1,13,13,25,27,9,10,12,2,2,23,0x1089,200,1564,864,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 // 1439,G_HIGH_ORC,High Orc,High Orc,90,9000000,0,0,0,1,5000,10000,90,90,90,90,90,90,90,90,10,12,2,7,43,0x3885,160,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  5. The problem is when I use incubator on the egg, it'll make the egg's red or like broken. i got this from here: http://www.eathena.w...howtopic=179295 and change the id#'s because it will my item_db2 pet part: //Custom Pets // Withering Custom Pets 19130,Angeling_Egg,Angeling Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19131,Baby_Leopard_Egg,Baby Leopard Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19132,Ghostring_Egg,Ghostring Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19133,Vocal_Egg,Vocal Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19134,Shining_Plant_Egg,Shining Plant Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19135,Deviace_Egg,Deviace Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19136,Desert_Wolf_Egg,Desert Wolf Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19137,Condor_Egg,Condor Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19138,Wolf_Egg,Wolf Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19139,Fake_Angel_Egg,Fake Angel Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19140,Jakk_XMas_egg,Xmas-Jakk Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19141,Goblin_XMas_Egg,Xmas-Goblin Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19142,Lude_Egg,Lude Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19143,Owl_Baron_Egg,Owl Baron Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19144,Kobold_Leader_Egg,Kobold Leader Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19145,Quve_Egg,Quve Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19146,Bloody_Butterfly_Egg,Bloody Butterfly Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19147,Tirfing_Egg,Tirfing Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19148,Verit_Egg,Verit Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19149,Side_Winder_Egg,Side Winder Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19150,Rideword_Egg,Rideword Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19151,Dark_priest_egg,Dark Priest Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19152,Wind_Ghost_Egg,Wind Ghost Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19153,Wanderman_egg,Wanderman Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19154,Wild_Rose_Egg,Wild Rose Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19155,Antonio_egg,Antonio Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19156,Archangeling_egg,Archangeling Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19157,Galapago_Egg,Galapago Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19158,Lord_of_Death_Egg,Lord of Death Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19159,Hylozoist_Egg,Hylozoist Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19160,Amon_Ra_Egg,Amon Ra Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19161,Shinobi_Egg,Shinobi Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19162,See_Otter_Egg,See Otter Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19163,Spring_Rabbit_Egg,Sprint Rabbit Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19164,Turtle_General_Egg,Turtle General Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19195,Majoruros_Egg,Majoruros Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19166,Am_Mut_egg,Am Mut Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19167,Creamy_Fear_Egg,Creamy Fear Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19168,Dark_lord_Egg,Dark Lord Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19169,Bloody_Knight_Egg,Bloody Knight Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19170,Mutant_Dragon_Egg,Mutant Dragon Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19171,Knight_of_Windstorm_Egg,Knight of Windstorm Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19172,Phreeoni_Egg,Phreeoni Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19173,pharaoh_egg,Pharaoh Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19174,Moonlight_egg,Moonlight Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19175,Eddga_egg,Eddga Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19176,Drake_egg,Drake Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19177,Toad_egg,Toad Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19178,Mastering_egg,Mastering Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19179,Orc_Hero_egg,Orc Hero Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19180,Mimic_egg,Mimic Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19181,Orc_Lord_egg,Orc Lord Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19182,Golden_Thief_Bug_egg,Golden Thief Bug Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19183,Mistress_egg,Mistress Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19184,Doppelganger_egg,Doppelganger Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19185,Baphomet_egg,Baphomet Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19186,Osiris_egg,Osiris Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19187,Testegg_egg,Testegg Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19188,Wootan_Shooter_egg,Wootan Shooter Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19189,Wootan_Fighter_egg,Wootan Fighter Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19190,Incantation_Samurai_egg,Incantation Samurai Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19191,Dark_Snake_Lord_egg,Dark Snake Lord Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19192,Dracula_egg,Dracula Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19193,Dancing_Dragon_Egg,Dancing Dragon Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19194,Garm_Baby_Egg,Garm Baby Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19195,Increase_Soil_Egg,Increase Soil Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19196,Li_Me_Mang_Ryang_Egg,Li Me Mang Ryang Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19197,Bacsojin_Egg,Bacsojin Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19198,Ching_E_Egg,Ching E Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19199,Boiled_Rice_Egg,Boiled Rice Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19100,Valaris_Egg,Valaris Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19101,Valaris_Wornshipper_Egg,Valaris Wornshipper Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19102,HYEGUN_Egg,Hyegun Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19103,CIVIL_SERVANT_Egg,Civil Servant Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19104,GOLEM_Egg,Golem Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19105,WOODEN_GOLEM_Egg,Wooden Golem Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19106,STALACTIC_GOLEM_Egg,Stalatic Golem Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19107,GRAND_PECO_Egg,Grand Peco Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19108,GEOGRAPHER_Egg,Geographe Eggr,7,,10,0,,,,,,,,,,,,,{},{},{} 19109,GOAT_Egg,Goat Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19110,SUCCUBUS_Egg,Succubus Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19111,KNIGHT_OF_ABYSS_Egg,Abyss Knight Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19112,PENOMENA_Egg,Penomena Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19113,WHISPER_Egg,Whisper Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19114,WHISPER_BOSS_Egg,Giant Whisper Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19115,APOCALIPS_Egg,Apocalypse Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19116,SKELETON_GENERAL_Egg,Skeleton General Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19117,BLOODY_MURDERER_Egg,Bloody Murderer Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19118,ASSULTER_Egg,Assaulter Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19119,COCO_Egg,Coco Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19120,EVIL_CLOUD_HERMIT_Egg,Evil Cloud Hermit Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19121,WICKED_NYMPH_Egg,Wicked Nymph Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19122,WILD_GINSENG_Egg,Wild Ginseng Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19123,GIBBET_Egg,Gibbet Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19124,DULLAHAN_Egg,Dullahan Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19125,CHOCO_Egg,Choco Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19126,ALARM_Egg,Alarm Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19127,C_TOWER_MANAGER_Egg,Clock Tower Manager Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19128,ALLIGATOR_Egg,Alligator Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19129,RAYDRIC_ARCHER_Egg,Raydric Archer Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19130,REQUIEM_Egg,Requiem Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19131,ZEROM_Egg,Zerom Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19132,ZENORC_Egg,Zenorc Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19133,ARCHER_SKELETON_Egg,Skeleton Archer Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19134,SOLDIER_SKELETON_Egg,Skeleton Soldier Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19135,DISGUISE_Egg,Disguise Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19136,LAVA_GOLEM_Egg,Lava Golem Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19137,NIGHTMARE_TERROR_Egg,Nightmare Terror Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19138,EVIL_DRUID_Egg,Evil Druid Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19139,MYSTELTAINN_Egg,Mysteltainn Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19140,RYBIO_Egg,Rybio Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19141,PHENDARK_Egg,Phendark Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19142,EXECUTIONER_Egg,Executioner Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19143,ANOLIAN_Egg,Anolian Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19144,MEDUSA_Egg,Medusa Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19145,MATYR_Egg,Matyr Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19146,CAT_O_NINE_TAIL_Egg,Cat'o'Nine Tails Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19147,GOBLIN_LEADER_Egg,Goblin Leader Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19148,BIGFOOT_Egg,Bigfoot Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19149,Raydric_Egg,Raydric Egg,7,,10,0,,,,,,,,,,,,,{},{},{} 19150,Gryphon_Egg,Gryphon Egg,7,,10,0,,,,,,,,,,,,,{},{},{} // Taming Items for Pets 18001,Angeling_Taming_Item,Angeling Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1069; },{},{} 18002,Baby_Leopard_Taming_Item,Baby Leopard Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1415; },{},{} 18003,Ghostring_Taming_Item,Ghostring Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1120; },{},{} 18004,Vocal_Taming_Item,Vocal Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1088; },{},{} 18005,Shining_Plant_Taming_Item,Shining Plant Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1083; },{},{} 18006,Deviace_Taming_Item,Deviace Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1108; },{},{} 18007,Desert_Wolf_Taming_Item,Desert Wolf Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1106; },{},{} 18008,Condor_Taming_Item,Condor Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1009; },{},{} 18009,Wolf_Taming_Item,Wolf Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1013; },{},{} 18010,Fake_Angel_Taming_Item,Fake Angel Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1371; },{},{} 18011,XMas-Jakk_Taming_Item,XMas-Jakk Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1002; },{},{} 18012,XMas-Goblin_Taming_Item,XMas-Gobline Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1244; },{},{} 18013,Lude_Taming_Item,Lude Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1245; },{},{} 18014,Owl_Baron_Taming_Item,Owl Baron Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1509; },{},{} 18015,Kobold_Leader_Taming_Item,Kobold Leader Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1296; },{},{} 18016,Quve_Taming_Item,Quve Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1508; },{},{} 18017,Bloody_Butterfly_Taming_Item,Bloody Butterfly Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1408; },{},{} 18018,Tirfing_Taming_Item,Tirfing Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1204; },{},{} 18019,Verit_Taming_Item,Verit Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1032; },{},{} 18020,Side_Winder_Taming_Item,Side_Winder Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1037; },{},{} 18021,Rideword_Taming_Item,Rideword Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1195; },{},{} 18022,Dark_Priest_Taming_Item,Dark Priest Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1198; },{},{} 18023,Wind_Ghost_Taming_Item,Wind Ghost Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1263; },{},{} 18024,Wanderman_Taming_Item,Wanderman Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1208; },{},{} 18025,Wild_Rose_Taming_Item,Wild Rose Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1261; },{},{} 18026,Antonio_Taming_Item,Antonio Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1247; },{},{} 18027,Archangeling_Taming_Item,Archangeling Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1388; },{},{} 18028,Galapago_Taming_Item,Galapago Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1391; },{},{} 18029,Lord_Of_Death_Taming_Item,Lord of Death Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1373; },{},{} 18030,Hylozoist_Taming_Item,Hylozoist Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1510; },{},{} 18031,Amon_Ra_Taming_Item,Amon Ra Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1511; },{},{} 18032,Shinobi_Taming_Item,Shinobi Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1401; },{},{} 18033,See_Otter_Taming_Item,See Otter Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1323; },{},{} 18034,Spring_Rabbit_Taming_Item,Spring Rabbit Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1322; },{},{} 18035,Turtle_General_Taming_Item,Turtle General Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1312; },{},{} 18036,Majoruros_Taming_Item,Majoruros Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1310; },{},{} 18037,Am_Mut_Taming_Item,Am Mut Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1272; },{},{} 18038,Creamy_Fear_Taming_Item,Creamy Fear Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1293; },{},{} 18039,Dark_Lord_Taming_Item,Dark Lord Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1272; },{},{} 18040,Bloody_Knight_Taming_Item,Bloody Knight Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1268; },{},{} 18041,Mutant_Dragon_Taming_Item,Mutant Dragon Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1262; },{},{} 18042,Windstorm_Knight_Taming_Item,Windstorm Knight Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1251; },{},{} 18043,Phreeoni_Taming_Item,Phreeoni Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1159; },{},{} 18044,Pharaoh_Taming_Item,Pharaoh Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1157; },{},{} 18045,Moonlight_Taming_Item,Moonlight Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1150; },{},{} 18046,Eddga_Taming_Item,Eddga Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1115; },{},{} 18047,Drake_Taming_Item,Drake Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1112; },{},{} 18048,Toad_Taming_Item,Toad Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1089; },{},{} 18049,Mastering_Taming_Item,Mastering Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1090; },{},{} 18050,Orc_Hero_Taming_Item,Orc Hero Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1087; },{},{} 18051,Mimic_Taming_Item,Mimic Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1191; },{},{} 18052,Orc_Lord_Taming_Item,Orc Lord Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1191; },{},{} 18053,Golden_Thief_Bug_Taming_Item,Golden Thief Bug Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1068; },{},{} 18054,Mistress_Taming_Item,Mistress Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1059; },{},{} 18055,Doppelganger_Taming_Item_Taming_Item,Doppelganger Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1046; },{},{} 18056,Baphomet_Taming_Item,Baphomet Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1039; },{},{} 18057,Osiris_Taming_Item,Osiris Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1038; },{},{} 18058,TestEgg_Taming_Item,Testegg Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1003; },{},{} 18059,Wootan_Shooter_Taming_Item,Wootan Shooter Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1498; },{},{} 18060,Wootan_Fighter_Taming_Item,Wootan Fighter Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1499; },{},{} 18061,Incantation_Samurai_Taming_Item,Incantation Samurai Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1492; },{},{} 18062,Dark_Snake_Lord_Taming_Item,Dark Snake Lord Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1418; },{},{} 18063,Dracula_Taming_Item,Dracula Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1389; },{},{} 18064,Dancing_Dragon_Taming_Item,Dancing Dragon Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1514; },{},{} 18065,Garm_Baby_Taming_Item,Garm Baby,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1515; },{},{} 18066,Increase_Soil_Taming_Item,Increase Soil,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1516; },{},{} 18067,Li_Me_Mang_Ryang_Taming_Item,Li Me Mang Ryang,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1517; },{},{} 18068,Bacsojin_Taming_Item,Bacsojin,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1518; },{},{} 18069,Ching_E_Taming_Item,Ching E,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1519; },{},{} 18070,Boiled_Rice_Taming_Item,Boiled Rice,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1520; },{},{} 18071,Valaris_Taming_Item,Valaris,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1910; },{},{} 18072,Valaris_Worshipper_Taming_Item,Valaris Worshipper,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1911; },{},{} 18073,Hyegun_Taming_Item,Hyegun Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1512; },{},{} 18074,Civil_Servant_Taming_Item,Civil Servant Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1513; },{},{} 18075,Golem_Taming_Item,Golem Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1040; },{},{} 18076,Wooden_Golem_Taming_Item,Wooden Golem Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1497; },{},{} 18077,Stalatic_Golem_Taming_Item,Stalatic Golem Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1278; },{},{} 18078,Grand_Peco_Taming_Item,Grand Peco Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1369; },{},{} 18079,Geographer_Taming_Item,Geographer Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1368; },{},{} 18080,Goat_Taming_Item,Goat Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1372; },{},{} 18081,Succubus_Taming_Item,Succubus Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1370; },{},{} 18082,Knight_of_Abyss_Taming_Item,Knight of Abyss Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1219; },{},{} 18083,Penomena_Taming_Item,Penomena Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1216; },{},{} 18084,Whisper_Taming_Item,Whisper Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1179; },{},{} 18085,Whisper_Boss_Taming_Item,Whisper Boss Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1186; },{},{} 18086,Apocalips_Taming_Item,Apocalips Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1365; },{},{} 18087,Skeleton_general_Taming_Item,Skeleton General Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1290; },{},{} 18088,Bloody_Murderer_Taming_Item,Bloody Murderer Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1507; },{},{} 18089,Assulter_Taming_Item,Assulter Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1315; },{},{} 18090,Coco_Taming_Item,Coco Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1104; },{},{} 18091,Evil_Cloud_Hermit_Taming_Item,Evil Cloud Hermit Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1412; },{},{} 18092,Wicked_Nymph_Taming_Item,Wicked Nymph Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1416; },{},{} 18093,Wild_Ginseng_Taming_Item,Wild Ginseng Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1413; },{},{} 18094,Gibbet_Taming_Item,Gibbet Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1503; },{},{} 18095,Dullahan_Taming_Item,Dullahan Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1504; },{},{} 18096,Choco_Taming_Item,Choco Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1214; },{},{} 18097,Alarm_Taming_Item,Alarm Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1193; },{},{} 18098,Clock_Tower_Manager_Taming_Item,Clock Tower Manager Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1270; },{},{} 18099,Alligator_Taming_Item,Alligator Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1271; },{},{} 18100,Raydric_Archer_Taming_Item,Raydric Archer Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1276; },{},{} 18101,Requiem_Taming_Item,Requiem Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1164; },{},{} 18102,Zerom_Taming_Item,Zerom Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1178; },{},{} 18103,Zenorc_Taming_Item,Zenorc Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1117; },{},{} 18104,Archer_Skeleton_Taming_Item,Archer Skeleton Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1016; },{},{} 18105,Soldier_Skeleton_Taming_Item,Soldier Skeletono Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1028; },{},{} 18106,Disguise_Taming_Item,Disguise Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1506; },{},{} 18107,Lava_Golem_Taming_Item,Lava Golem Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1366; },{},{} 18108,Nightmare_Terror_Taming_Item,Nightmare Terror Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1379; },{},{} 18109,Evil_Druid_Taming_Item,Evil Druid Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1117; },{},{} 18110,Mysteltainn_Taming_Item,Mysteltainn Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1203; },{},{} 18111,Rybio_Taming_Item,Rybio Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1201; },{},{} 18112,Phendark_Taming_Item,Phendark Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1202; },{},{} 18113,Executioner_Taming_Item,Executioner Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1205; },{},{} 18114,Anolian_Taming_Item,Anolian Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1206; },{},{} 18115,Medusa_Taming_Item,Medusa Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1148; },{},{} 18116,Matyr_Taming_Item,Matyr Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1146; },{},{} 18117,Cat_o_Nine_Tail_Taming_Item,Cat o' Nine Tail Taming Item,,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1307; },{},{} 18118,Gobline_Leader_Taming_Item,Goblin Leader Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1299; },{},{} 18129,Bigfoot_Taming_Item,Bigfoot Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1060; },{},{} 18120,Raydric_Taming_Item,Raydric Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1163; },{},{} 18121,Gryphon_Taming_Item,Gryphon Taming Item,11,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1259; },{},{} pet_db2: // Withering Custom Pets 1096,ANGELING,Angeling,18001,19030,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1415,BABY_LEOPARD,Baby Leopard,18002,19031,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1120,GHOSTRING,Ghostring,18003,19032,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1088,VOCAL,Vocal,18004,19033,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1083,SHINING_PLANT,Shining Plant,18005,19034,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1108,DEVIACE,Deviace,18006,19035,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1106,DESERT_WOLF,Desert Wolf,18007,19036,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1009,CONDOR,Condor,18008,19037,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1013,WOLF,Wolf,18009,19038,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1371,FAKE_ANGEL,Fake Angel,18010,19039,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1244,JAKK_XMAS,Xmas Jakk,18011,19040,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1245,GOBLINE_XMAS,Xmas Goblin,18012,19041,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1509,LUDE,Lude,18013,19042,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1295,OWL_BARON,Owl Baron,18014,19043,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1296,KOBOLD_LEADER,Kobold Leader,18015,19044,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1508,QUVE,Quve,18016,19045,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1408,BLOODY_BUTTERFLY,Bloody Butterfly,18017,19046,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1204,TIRFING,Tirfing,18018,19047,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1032,VERIT,Verit,18019,19048,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1037,SIDE_WINDER,Side Winder,18020,19049,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1195,RIDEWORD,Rideword,18021,19050,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1198,DARK_PRIEST,Dark Priest,18022,19051,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1263,WIND_GHOST,Wind Ghost,18023,19052,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1208,WANDERMAN,Wanderman,18024,19053,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1261,WILD_ROSE,Wild Rose,18025,19054,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1247,ANTONIO,Antonio,18026,19055,,80,528,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1388,ARCHANGELING,Archangeling,18027,19056,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1391,GALAPAGO,Galapago,18028,19057,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1373,LORD_OF_DEATH,Lord of Death,18029,19058,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1510,HYLOZOIST,Hylozoist,18030,19059,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1511,AMON_RA,Amon Ra,18031,19060,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1401,SHINOBI,Shinobi,18032,19061,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1323,SEE_OTTER,See Otter,18033,19062,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1322,SPRING_RABBIT,Spring Rabbit,18034,19063,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1312,TURTLE_GENERAL,Turtle General,18035,19064,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1310,MAJORUROS,Majorupos,18036,19065,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1301,AM_MUT,Am Mut,18037,19066,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1293,CREMY_FEAR,Creamy Fear,18038,19067,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1272,DARK_LORD,Dark Lord,18039,19068,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1268,BLOODY_KNIGHT,Bloody Knight,18040,19069,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1262,MUTANT_DRAGON,Mutant Dragon,18041,19070,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1251,KNIGHT_OF_WINDSTORM,Windstorm Knight,18042,19071,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1159,PHREEONI,Phreeoni,18043,19072,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1157,PHARAOH,Pharaoh,18044,19073,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1150,MOONLIGHT,Moonlight,18045,19074,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1115,EDDGA,Eddga,18046,19075,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1112,DRAKE,Drake,18047,19076,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1089,TOAD,Toad,18048,19077,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1090,MASTERING,Mastering,18049,19078,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1087,ORC_HERO,Orc Hero,18050,19079,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1191,MIMIC,Mimic,18051,19080,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1190,ORC_LORD,Orc Lord,18052,19081,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1086,GOLDEN_THIEF_BUG,Golden Thief Bug,18053,19082,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1059,MISTRESS,Mistress,18054,19083,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1046,DOPPELGANGER,Doppelganger,18055,19084,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1039,BAPHOMET,Baphomet,18056,19085,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1038,OSIRIS,Osiris,18057,19086,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1003,TESTEGG,Testegg,18058,19087,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1498,WOOTAN_SHOOTER,Wootan Shooter,18059,19088,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1499,WOOTAN_FIGHTER,Wootan Fighter,18060,19089,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1492,INCANTATION_SAMURAI,Incentation Samurai,18061,19090,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1418,DARK_SNAKE_LORD,Dark Snake Lord,18062,19091,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1389,DRACULA,Dracula,18063,19092,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1514,Dancing_Dragon,Dancing Dragon,18064,19093,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1515,Garm_Baby,Garm Baby,18065,19094,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1516,Increase_Soil,Increase Soil,18066,19095,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1517,Li_Me_Mang_Ryang,Li Me Mang Ryang,18067,19096,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1518,Bacsojin,Bacsojin,18068,19097,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1519,Ching_E,Chung E,18069,19098,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1520,Boiled_Rice,Boiled Rice,18070,19099,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1900,Valaris,Valaris,18071,19100,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1901,Valaris_Worshipper,Valaris Worshipper,18072,19101,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1512,HYEGUN,Hyegun,18073,19102,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1513,CIVIL_SERVANT,Civil Servant,18074,19103,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1040,GOLEM,Golem,18075,19104,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1497,WOODEN_GOLEM,Wooden Golem,18076,19105,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1278,STALACTIC_GOLEM,Stalatic Golem,18077,19106,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1369,GRAND_PECO,Grand Peco,18078,19107,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1368,GEOGRAPHER,Geographer,18079,19108,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1372,GOAT,Goat,18080,19109,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1370,SUCCUBUS,Succubus,18081,19110,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1219,KNIGHT_OF_ABYSS,Abyss Knight,18082,19111,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1216,PENOMENA,Penomena,18083,19112,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1179,WHISPER,Whisper,18084,19113,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1186,WHISPER_BOSS,Giant Whisper,18085,19114,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1365,APOCALIPS,Apocalypse,18086,19115,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1290,SKELETON_GENERAL,Skeleton General,18087,19116,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1507,BLOODY_MURDERER,Bloody Murderer,18088,19117,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1315,ASSULTER,Assaulter,18089,19118,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1104,COCO,Coco,18090,19119,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1412,EVIL_CLOUD_HERMIT,Evil Cloud Hermit,18091,19120,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1416,WICKED_NYMPH,Wicked Nymph,18092,19121,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1413,WILD_GINSENG,Wild Ginseng,18093,19122,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1503,GIBBET,Gibbet,18094,19123,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1504,DULLAHAN,Dullahan,18095,19124,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1214,CHOCO,Choco,18096,19125,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1193,ALARM,Alarm,18097,19126,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1270,C_TOWER_MANAGER,Clock Tower Manager,18098,19127,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1271,ALLIGATOR,Alligator,18099,19128,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1276,RAYDRIC_ARCHER,Raydric Archer,18100,19129,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1164,REQUIEM,Requiem,18101,19130,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1178,ZEROM,Zerom,18102,19131,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1177,ZENORC,Zenorc,18103,19132,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1016,ARCHER_SKELETON,Skeleton Archer,18104,19133,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1028,SOLDIER_SKELETON,Skeleton Soldier,18105,19134,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1506,DISGUISE,Disguise,18106,19135,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1366,LAVA_GOLEM,Lava Golem,18107,19136,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1379,NIGHTMARE_TERROR,Nightmare Terror,18108,19137,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1117,EVIL_DRUID,Evil Druid,18109,19138,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1203,MYSTELTAINN,Mysteltainn,18110,19139,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1201,RYBIO,Rybio,18111,19140,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1202,PHENDARK,Phendark,18112,19141,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1205,EXECUTIONER,Executioner,18113,19142,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1206,ANOLIAN,Anolian,18114,19143,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1148,MEDUSA,Medusa,18115,19144,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1146,MATYR,Matyr,18116,19145,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1307,CAT_O_NINE_TAIL,Cat'o'Nine Tails,18117,19146,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1299,GOBLIN_LEADER,Goblin Leader,18118,19147,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1060,BIGFOOT,Bigfoot,18119,19148,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1163,RAYDRIC,Raydric,18120,19149,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; } 1259,GRYPHON,Gryphon,18121,19150,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petloot 10; }
  6. meron ba nito ung para sa script lang para sa item?? para hindi ma apektohan ng coma?
  7. Guys help naman, d ko kasi alam kung pano tangalin ung COMA card sa tarot skill. iddisable ung skill na un or kaya script sa gtb card para hindi ma tamaan ng coma. thanks!
  8. Hi sir Chickz, I can understand it now btw, I don't know where to put that codes. O.O lol. Thanks
  9. thanks for the help but still not yet working .
  10. What if not answered within 30 seconds? The Player will be kicked from the server. Thanks you very much for help - script AntiBot -1,{ OnNPCKillEvent: set @bot_chk, @bot_chk+1; if (@bot_chk < 100) end; else set @bot_chk,0; atcommand "@battleignore"; atcommand "@option " + 2; atcommand "@adjgmlvl -1 "+strcharinfo(0); set .@A,rand(50); set .@B,rand(50); mes "If A = "+.@A+" B = "+.@B; switch( rand(1) ){ Case 0: set .@Answer,.@A + .@B; mes "How many is A + B ?"; break; //Case 1: set .@Answer,.@A - .@B; mes "How many is A - B ?"; break; //Case 2: set .@Answer,.@A * .@B; mes "How many is A * B ?"; break; //Case 3: set .@Answer,.@A / .@B; mes "How many is A / B ?"; break; } input .@Input; if( .@Input != .@Answer ){ mes "Wrong"; atcommand "@kick "+strcharinfo(0); } else if( .@Input == .@Answer ){ mes "Good Job!"; atcommand "@battleignore"; atcommand "@adjgmlvl 0 "+strcharinfo(0); atcommand "@option "+0; } close; }
  11. @Chickz I cannot understand what you're trying to say. no HAHA! I'm really looking for anti bot that will appear if a player already killed 100 + monsters.
  12. Anyways, Fixed that with this ) THanks for all the help - script AntiBot -1,{ OnPCLoginEvent: atcommand "@battleignore"; atcommand "@option " + 2; atcommand "@adjgmlvl -1 "+strcharinfo(0); set .@A,rand(50); set .@B,rand(50); mes "If A = "+.@A+" B = "+.@B; switch( rand(1) ){ Case 0: set .@Answer,.@A + .@B; mes "How many is A + B ?"; break; //Case 1: set .@Answer,.@A - .@B; mes "How many is A - B ?"; break; //Case 2: set .@Answer,.@A * .@B; mes "How many is A * B ?"; break; //Case 3: set .@Answer,.@A / .@B; mes "How many is A / B ?"; break; } input .@Input; if( .@Input != .@Answer ){ mes "Wrong"; atcommand "@kick "+strcharinfo(0); } else if( .@Input == .@Answer ){ mes "Good Job!"; atcommand "@battleignore"; atcommand "@adjgmlvl 0 "+strcharinfo(0); atcommand "@option "+0; } close; } Thanks Euphy! Thanks to all
  13. Thanks for that idea EvilPuncker @Bahmut, I am using eathena btw. I'm testing this but i think the last if statement is not working. - script AntiBot -1,{ OnPCLoginEvent: atcommand "@option " + 2; atcommand "@mute "+"200" +strcharinfo(0); set .@A,rand(50); set .@B,rand(50); mes "If A = "+.@A+" B = "+.@B; switch( rand(1) ){ Case 0: set .@Answer,.@A + .@B; mes "How many is A + B ?"; break; //Case 1: set .@Answer,.@A - .@B; mes "How many is A - B ?"; break; //Case 2: set .@Answer,.@A * .@B; mes "How many is A * B ?"; break; //Case 3: set .@Answer,.@A / .@B; mes "How many is A / B ?"; break; } input .@Input; if( .@Input != .@Answer ){ mes "Wrong"; atcommand "@kick "+strcharinfo(0); } if( .@Input == .@Answer ){ mes "CHECKED! You're not a bot."; atcommand "@unmute "+strcharinfo(0); atcommand "@option " +0; } close; } Fixed that forgot to add one more "=" @evil Nice idea but if the character is muted, they cannot use atcommand again.. any more ideas?? Thanks!
  14. Good day, help me with these because I want to make this when character logs in, character cannot use any command but after typing the answer, character back to normal, thanks! - script AntiBot -1,{ OnPCLoginEvent: atcommand "@option 2"; set .@A,rand(50); set .@B,rand(50); mes "If A = "+.@A+" B = "+.@B; switch( rand(1) ){ Case 0: set .@Answer,.@A + .@B; mes "How many is A + B ?"; break; //Case 1: set .@Answer,.@A - .@B; mes "How many is A - B ?"; break; //Case 2: set .@Answer,.@A * .@B; mes "How many is A * B ?"; break; //Case 3: set .@Answer,.@A / .@B; mes "How many is A / B ?"; break; } input .@Input; if( .@Input != .@Answer ){ mes "Wrong"; atcommand "@kick "+strcharinfo(0); } close; }
  15. It's working! Thank you very much Rikimaru
  16. Help with this please, i want to make a vice versa of this script: Thank you rathena!
  17. My v4p is working fine, it counts the points when i click, but when I click on the voting site the webside doesn't appear. this is inside vote4points.php and config.php Config.php vote4points.php When i click vote site 1, it will just leave a blank page and url is just like this: http://###########.###########.net/v4p/vote.php?site=1 I think, it doesn't direct the link to the voting side. thanks! bump bump
  18. Thanks for this Btw, 1 more thing, I want to also make a vice versa for this. if you can also help me with that, Much appreciated ) Thank you so much!
  19. I'm trying to make a coins to coins ex-changer but it doesn't work.. NPC should be like this: 25 Poring Coins = 1 Bronze Coin 5 Bronze Coins = 1 Silver Coin 5 Silver Coins = 1 Gold Coin 5 Gold Coins = 1 Platinum coin. Then.. The NPC will ask the user how many coins he wants to exchange. My Script: prontera,158,326,4 script Event Coin Changer 822,{ mes "[Event Coins Changer]"; mes "Hi ^ff8000"+strcharinfo(0)+"^000000, I can exchange your coins to higher coins."; mes "25 Poring Coins(PC)+ = 1 Bronze Coin(BC)"; mes "5 Bronze Coin(BC) = 1 Silver Coin(SC)"; mes "5 Silver Coin(SC) = 1 Gold Coin(GC)"; mes "5 Gold Coin(GC) = 1 Platinum Coin(Plat)"; mes "What would you like to do?"; switch(select("25PC = 1BC","5BC = 1SC","5SC = 1GC","5GC = 1Plat",)) { case 1: if (countitem(7539) < 25) goto L_NE; delitem 7539,25; getitem 673,1; close; case 2: if (countitem(673) < 5) goto L_NE; delitem 673,5; getitem 675,1; close; case 3: if (countitem(675) < 5) goto L_NE; delitem 675,5; getitem 671,1; close; case 4: if (countitem(675) < 5) goto L_NE; delitem 675,5; getitem 671,1; close; } } Now i want to add the NPC Will ask how many coins he/she wants to exchange..
  20. not yet, i'll try that Thank you very much SlashGeeGee It worked!
  21. Thanks for helping busterdemon and especially Eurydice Problem fixed oh wait, one more question, I want to delete it using thor patcher, i tried this settings but it didn't work:
  22. I want to remove my custom prontera but I don't know what files should I remove on my GRF. thanks in advance.
×
×
  • Create New...