Advertisement
Flip

Untitled

Mar 25th, 2011
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 68.80 KB | None | 0 0
  1.         ¤ pokemon ¤
  2.  
  3. #pokemon on
  4. on *:start:{ start_pdb }
  5. on *:exit:{ close_pdb }
  6. alias start_pdb {  
  7.   set %pdb $sqlite_open(txt/pokemon/pokemon.db3)
  8.   hmake pokemon
  9.   var %t = $tm(2) $tm(2) $tm(2) $tm(2) $tm(2) $tm(2)
  10.   while ($p_loc(%x,%y).name == 0) { var %x = $rand(1,5), %y = $rand(1,5) }
  11.   hadd pokemon p_attempt 1
  12.   hadd pokemon p_salesman %x %y
  13.   hadd pokemon p_mall $dupe(%t)
  14. }
  15. alias close_pdb {
  16.   sqlite_close %pdb
  17.   unset %pdb
  18.   hfree pokemon
  19. }
  20. alias sql_esc { return $replace($1-,$chr(32),_32,$chr(39),_39,$chr(40),_40,$chr(41),_41,$chr(44),_44,$chr(45),_45,$chr(46),_46,$chr(91),_91,$chr(93),_93,$chr(94),_94,$chr(96),_96,$chr(124),_124) }
  21. alias sql_re { return $regsubex($1-,/(_(\d{2,3}))/g,$chr( \2 )) }
  22. on *:text:!catch:%chans:{
  23.   if (%pdb) {
  24.     var %a = $p_active($.nick), %status = $p_status($.nick)
  25.     if (%status == none) {
  26.       .notice $nick You don't have any pokemon yet, Please choose from the following by typing !choose <pokemon>
  27.       .notice $nick Bulbasaur, Charmander, Squirtle, Pidgey, Weedle, Pichu, Machop, Abra, Geodude, Staryu, Chikorita, Cyndaquil, Totodile
  28.       if (!$.nick($nick).check) { .notice $nick NOTE: You either aren't logged in or you don't have mode +x set. If you change your name it wont know who you are. Do not create a second account if you change nicks. }
  29.     }
  30.     elseif ($hget(pokemon,$.nick)) { .notice $nick All the pokemon ran away, Try again later. ( $+ $v1 sec $+ ) }
  31.     elseif (%status == learn) { .notice $nick %a has too many moves! $+([,$sql_re($p_mark($.nick)),]) Type !forget <move> }
  32.     elseif (%status == replace) {
  33.       tokenize 9 $.nick $+ $chr(9) $+ $p_mark($.nick)
  34.       notice $nick You caught $gettok($2-,1,42) but you already have a $gettok($2-,1,42) $+ ! Do you want to !keep or !release the new one?
  35.       notice $nick Old: $p_statfmt($1,$p_stat($1,$gettok($2-,1,42)))
  36.       notice $nick New: $p_statfmt($1,$2-)
  37.     }
  38.     elseif (%status == choiceadv) { choiceadv $gettok($p_mark($.nick),2,42) }
  39.     elseif (%status == ready) {
  40.       if ($p_daycare($.nick) != none) { p_+daycare $.nick }
  41.       hadd -z pokemon $.nick $iif($istok(%punish,$.nick,44),150,$iif($p_item($.nick,Bicycle),45,60))
  42.       hinc pokemon p_attempt
  43.       if ($calc($hget(pokemon,p_attempt) % 10) == 0) && ($rand(1,100) < 80) { hadd pokemon p_salesman $p_loc($hget(pokemon,p_salesman)).rand }
  44.       if ($calc($hget(pokemon,p_attempt) % 100) == 0) {
  45.         var %t = $tm(2) $tm(2) $tm(2) $tm(2) $tm(2) $tm(2)
  46.         hadd pokemon p_mall $dupe(%t)
  47.       }
  48.       p_ps $.nick attempts
  49.       var -s %x = $rand(0,100000) % 100, %q = $dupe($p_get(20)), %p = $gettok(%q,1,44), %lvl = $p_stat($.nick,%a).lvl, %loc = $p_loc($.nick).num
  50.       if ($calc($rand(0,100000) % 100) <= $p_noncom(%loc)) {
  51.         var %tf = txt/pokemon/nc $+ $ticks , %cadv, %a
  52.         filter -ffg txt/pokemon/noncom.txt %tf /(\x09|\x2C)( %loc |\*)(\x09|\x2C)/x
  53.         while (!%cadv) {
  54.           var %a = $read(%tf)
  55.           if (!$gettok(%a,3,9)) || ($rand(1,100) > $gettok(%a,3,9)) {
  56.             %cadv = $gettok(%a,1,9)
  57.             if (%cadv == 38) && ($p_loc($.nick).num != $hget(pokemon,p_salesman)) { %cadv = $null }            
  58.           }
  59.         }
  60.         choiceadv %cadv
  61.         .remove %tf
  62.       }
  63.       else {
  64.         :redo
  65.         var %n = 1, %a, %c, %u, %r, %y = $rand(1,100), %catch, %npc, %npcvs, %vs, %cash
  66.         while (%n <= $numtok(%q,44)) {
  67.           %a = $regsubex($gettok(%q,%n,44),/(^\x20)/,)
  68.           if ($read(txt/pokemon/rare.txt,r,/\x09( $regescape(%a) )$/xi)) { %r = $addtok(%r,%a,44) }
  69.           if ($has_pokemon($.nick,%a) == has) { %c = $addtok(%c,%a,44) }
  70.           else { %u = $addtok(%u,%a,44) }
  71.           inc %n
  72.         }
  73.         %n = $calc(100 / ($numtok(%q,44) / $numtok(%u,44)))
  74.         if (%x == 0) {
  75.           var -s %p = $p_rare
  76.           if (%r) && ($istok(%r,%p,44)) {
  77.             if ($istok(%u,%p,44)) { %catch = 1 }
  78.           }
  79.           else {
  80.             msg $chan $nick $+ : You see a rare %p in the distance, but it's gone before you can get to it.
  81.             see_pokemon $.nick %p
  82.             return
  83.           }
  84.         }
  85.         elseif (%n) && (%y <= %n) {
  86.           %p = $.rand(%u)
  87.           while ($istok(%r,%p,44)) {
  88.             %u = $remtok(%u,%p,1,44)
  89.             %p = $.rand(%u)
  90.           }
  91.           if (%p) { %catch = 1 }
  92.           else { var %p = $.rand(%c), %catch = 1 }
  93.         }
  94.         else { var %p = $.rand(%c), %catch = 1  }
  95.         if (!%p) {
  96.           msg $chan Error: no pokemon selected.
  97.           return
  98.         }
  99.         if ($p_uncom(%p)) {
  100.           if ($rand(1,100) < 90) {
  101.             %x = 1
  102.             %q = $dupe($p_get(20))
  103.             goto redo
  104.           }
  105.         }
  106.         var %min = $bottom($floor($calc(%lvl * .85 - 1)),1), %max = $ceil($calc(%lvl * 1.20 + 1)), %lvl = $bottom($cap($rand(%min,%max),$iif($p_el(%p),$calc($p_el(%p) - 1),99)),$p_ml(%p))
  107.         var %npc = $p_gen(%p,%lvl), %pv = $gettok(%npc,2,9)
  108.         %npcvs = $pokemon($gettok(%npc,1,9)).type $+ $chr(9) $+ $gettok(%npc,12-17,9)
  109.         %vs = $p_vs($p_stat($.nick,$p_active($.nick)).vs,%npcvs)
  110.         %cash = $ceil($calc(%lvl ^ 1.7 + (%lvl + $rand(1,%lvl) - $rand(1,%lvl)) * 1.5 + (%lvl * 2)))
  111.         if (%vs == 1) {
  112.           var %cr = $calc($p_cr(%p) * $p_bmod($p_cug($.nick).ball)), %crp = $calc(100 - (100 / (256 / %cr) + $rand($calc(10 - (%cr ^ .7 ^ .5)),50) - $rand($sqrt(%cr),50))), %crr = $rand(1,100)
  113.           echo -s $.nick %p Natural catch rate: %cr - After calc: %crp - Roll: %crr
  114.           if (%crr < %crp) { var %catch = 0 }
  115.           if (%catch) && ($p_item($.nick,Pokeball) > 0) {
  116.             p_item $.nick Pokeball -1
  117.             msg $chan $nick $+ : You encounter a $iif($p_rare(%p),rare,wild) $p_shiny($.nick,%pv) %p ( $+ %lvl $+ ) - After a long battle you are the victor. You just caught %p $+ ! (+$ $+ %cash cash) (+ $+ $bytes($p_mexp(%p,%lvl),b) Exp)
  118.             if ($p_item($.nick,Pokeball) == 0) { .notice $nick You just used your last pokeball! You need to buy more or you wont be able to catch any more pokemon. }
  119.             add_pokemon $.nick %npc
  120.             p_item $.nick Cash + $+ %cash
  121.           }
  122.           else {
  123.             msg $chan $nick $+ : You encounter a $iif($p_rare(%p),rare,wild) $p_shiny($.nick,%pv) %p ( $+ %lvl $+ ) - After a long battle you are the victor. $iif($p_item($.nick,Pokeball) < 1,You realize you are out of pokeballs so you can't catch %p $+ !) (+$ $+ %cash cash) (+ $+ $bytes($p_mexp(%p,%lvl),b) Exp)
  124.             p_item $.nick Cash + $+ %cash
  125.             if ($p_item($.nick,Pokeball) > 0) {
  126.               if (!$has_pokemon($.nick,%p)) || ($has_pokemon($.nick,%p) == seen) {
  127.                 if (%catch) { p_item $.nick Pokeball -1 }
  128.               }
  129.               if ($p_item($.nick,Pokeball) == 0) { .notice $nick You just used your last pokeball! You need to buy more or you wont be able to catch any more pokemon. }
  130.             }
  131.             noop $p_+exp(%p,%lvl)
  132.           }
  133.         }
  134.         else {
  135.           msg $chan $nick $+ : You encounter a $iif($p_rare(%p),rare,wild) $p_shiny($.nick,%pv) %p ( $+ %lvl $+ ) - He was too strong for you, You lose.
  136.           see_pokemon $.nick %p
  137.         }
  138.       }
  139.     }
  140.   }
  141. }
  142. alias choiceadv {
  143.   var %x, %q = $dupe($p_get(20)), %p = $gettok(%q,1,44), %lvl = $p_stat($.nick,$p_active($.nick)).lvl, %loc = $p_loc($.nick).num
  144.   if ($1 == 1) { msg $chan $nick $+ : You wander around, but don't really find anything of interest. }
  145.   elseif ($1 == 2) {
  146.     %x = $ceil($calc($rand(5,10) * $rand(10,50) * (%lvl ^ .4)))
  147.     msg $chan $nick $+ : You get sidetracked while looking for pokemon, but you find some buried treasure, score! (+$ $+ %x cash)
  148.     p_item $.nick cash + $+ %x
  149.   }
  150.   elseif ($1 == 3) {
  151.     %x = $rand(1,10) $iif($rand(1,10) > 8, * 2)
  152.     msg $chan $nick $+ : You don't have any luck looking for pokemon, but you stumble across a stash of $p_cug($.nick).ball $+ 's! (+ $+ %x $p_cug($.nick).ball $+ 's!)
  153.     p_item $.nick pokeball + $+ %x
  154.   }
  155.   elseif ($1 == 4) {
  156.     %x = $rand(1,25)
  157.     if (%x == 25) {
  158.       msg $chan $nick $+ : You chase after %p but it gets away, but you spot some Rare candy, sweet! (+1 Rare candy)
  159.       p_item $.nick $sql_esc(Rare candy)
  160.       see_pokemon $.nick %p
  161.     }
  162.     elseif (%x == 1) {
  163.       msg $chan $nick $+ : You chase after %p but trip. You look back to see what it was and realize you tripped over a Gold nugget! (+1 Gold nugget)
  164.       p_item $.nick $sql_esc(Gold nugget)
  165.       see_pokemon $.nick %p
  166.     }
  167.     else {
  168.       var %x = $rand(1,100), %t = $iif(%x <= 25,battle,hold), %x = $p_getitem(%t), %n = 1, %i = $p_item($.nick,%x)
  169.       if (%t == hold) {
  170.         while ($rand(1,100) < $calc(%i * 20)) && (%n <= 10) {
  171.           var %x = $p_getitem(%t)
  172.           var %i = $p_item($.nick,%x)
  173.           inc %n
  174.         }
  175.       }
  176.       if (*potion* iswm %x) { %x = $p_cug($.nick).potion }
  177.       msg $chan $nick $+ : You start battling with %p $+ . It gets away, but it drops a %x $+ . (+1 %x $+ )
  178.       p_item $.nick $sql_esc(%x)
  179.       see_pokemon $.nick %p
  180.     }
  181.   }
  182.   elseif ($1 == 5) {
  183.     var %i1 = $p_getitem(hold), %i2 = $p_getitem(hold), %i3 = $p_getitem(hold)
  184.     msg $chan $nick $+ : You find a stash of sweet loot! (+1 %i1 $+ , %i2 $+ , %i3 $+ )
  185.     p_item $.nick $sql_esc(%i1)
  186.     p_item $.nick $sql_esc(%i2)
  187.     p_item $.nick $sql_esc(%i3)
  188.   }
  189.   elseif ($1 == 6) {
  190.     msg $chan $nick $+ : %p spots you and attacks! You just got ownd, you need some time to rest before you can go out again.
  191.     hadd -z pokemon $.nick 180
  192.     see_pokemon $.nick %p
  193.   }
  194.   elseif ($1 isnum 7-10) {
  195.     var %i = $gettok($read(txt/pokemon/noncom.txt,$1),4,9)
  196.     msg $chan $nick $+ : You find a mysterious %i lying on the ground. (+1 %i $+ )
  197.     p_item $.nick $sql_esc(%i) +1
  198.   }
  199.   elseif ($1 isnum 11-30) || ($1 isnum 36-37) {
  200.     var %x = $read(txt/pokemon/noncom.txt,r,/^ $1 \x09/ix), %i = $gettok(%x,4,9), %c = $gettok(%x,5,9)
  201.     msg $chan $nick $+ : You are exploring $p_loc($.nick).name when you meet a guy selling a %i $+ . ($ $+ $bytes(%c,b) $+ ) - [Buy] [Leave]
  202.     p_status $.nick choiceadv
  203.     p_mark $.nick $+(buy|leave*,$1,*,%i,*,%c)
  204.   }
  205.   elseif ($1 isnum 31-35) {
  206.     var %x = $read(txt/pokemon/noncom.txt,r,/^ $1 \x09/ix), %i = $gettok(%x,4,9)
  207.     msg $chan $nick $+ : You meet an old man, after a short talk he gives you a %i ( $+ $tm(%i) $+ ).
  208.     p_item $.nick %i +1
  209.   }
  210.   elseif ($1 == 38) {
  211.     var %1 = $tm(3), %2 = $tm(3), %3 = $tm(3)
  212.     msg $chan $nick $+ : You meet a traveling salesman, he has a few TM's for sale. ($50,000) - $+([,%1,] [,%2,] [,%3,]) [Leave]
  213.     p_status $.nick choiceadv
  214.     p_mark $.nick $+(%1,|,%2,|,%3,*,$1,*,50000)
  215.   }
  216.   elseif ($1 isnum 39-44) {
  217.     var %i = $gettok($read(txt/pokemon/noncom.txt,$1),4,9)
  218.     msg $chan $nick $+ : You come across a tree with a %i $+ . (+1 %i $+ )
  219.     p_item $.nick $sql_esc(%i) +1
  220.   }
  221.   elseif ($1 == daycare) {
  222.     var %x = $addtok($p_team($.nick),leave,124)
  223.     if ($p_daycare($.nick) == none) {
  224.       .notice $nick Welcome to Pokemon daycare! Would you like to leave a pokemon with us? $+([,$replace(%x,|,] [),])
  225.       p_status $.nick choiceadv
  226.       p_mark $.nick $+(%x,*daycare)
  227.     }
  228.     else {
  229.       var %dcl = $replace($p_player($.nick,dcl),none,0)
  230.       .notice $nick Welcome to Pokemon daycare! $p_daycare($.nick) is currently staying with us $+ $iif(%dcl,$chr(44) and has gained $v1 levels) $+ . Would you like to take him with you? $ $+ $bytes($calc((%dcl + 1) * 1000),b) [Yes] [No]
  231.       p_status $.nick choiceadv
  232.       p_mark $.nick yes|no*daycare
  233.     }
  234.   }
  235. }
  236. on *:text:!visit*:#:{
  237.   if ($p_status($.nick) == ready) {
  238.     if (*pokemart* iswm $2-) {
  239.       if (!$istok($p_loc($.nick).npc,Pokemart,44)) { .notice $nick There isn't a Pokemart close by! }
  240.       else {
  241.         var %b = $p_cug($.nick).ball, %p = $p_cug($.nick).potion
  242.         .notice $nick Welcome to Pokemart! You currently have $ $+ $p_item($.nick,cash) $+ . Commands: !buy, !upgrade and !sell
  243.         .notice $nick %b $+ : $ $+ $bytes($p_item(%b).cost,b) $iif($p_iug(%b),(Upgrade to $p_iug(%b) $+ : $ $+ $bytes($p_iug(%b).cost,b) +$ $+ $calc($p_item($p_iug(%b)).cost - $p_item(%b).cost) per %b $+ ) ) - %p $+ : $ $+ $bytes($p_item(%p).cost,b) $iif($p_iug(%P),(Upgrade to $p_iug(%p) $+ : $ $+ $bytes($p_iug(%p).cost,b) +$ $+ $calc($p_item($p_iug(%p)).cost - $p_item(%p).cost) per %p $+ ) )
  244.         .notice $nick Antidote: $!100 - Paralyze heal: $!200 -  Awakening: $!200 -  Burn heal: $!500 -  Ice heal: $!500 -  Full heal: $!1,000 -  Full restore: $!5,000
  245.         if (!$p_item($.nick,Bicycle)) { .notice $nick Bicycle: $!100,000 }
  246.       }
  247.     }
  248.     elseif (*pokecenter* iswm $2-) {
  249.       if (!$istok($p_loc($.nick).npc,Pokecenter,44)) { .notice $nick There isn't a Pokecenter close by! }
  250.       else {
  251.         .notice $nick Welcome to the Pokecenter! Commands: !take and !leave to change pokemon in your team.
  252.         .notice $nick $p_team($.nick) Current team: $replace($p_team($.nick),|,$chr(32) - $chr(32))
  253.       }
  254.     }
  255.     elseif (*mall* iswm $2-) {
  256.       if (!$istok($p_loc($.nick).npc,The mall,44)) { .notice $nick You aren't near The Mall! }
  257.       else {
  258.         .notice $nick Welcome to The Mall! You can buy TMs with he !buy command.
  259.         var %f = txt/pokemon/mall $+ $ticks, %a
  260.         filter -ffg txt/pokemon/tms.txt %f /\x09(1)$/x
  261.         .fopen tm %f
  262.         while ($fread(tm)) {
  263.           %a = $addtok(%a,$+([,$gettok($v1,1,9),]),32)
  264.           if ($numtok(%a,32) > 14) {
  265.             .notice $nick TM's currently in stock ($20,000): %a
  266.             %a = $null
  267.           }
  268.         }
  269.         .fclose tm
  270.         .remove %f
  271.         .notice $nick Limited time only ($30,000): $+([,$replace($hget(pokemon,p_mall),$chr(32),] [),])
  272.       }
  273.     }
  274.     elseif (*day*care* iswm $2-) { choiceadv daycare }
  275.     else { .notice $nick That either isnt a place, or its not done yet, still working on this part }
  276.   }
  277. }
  278. elseif (*move tutor* iswm $2-) { }
  279. elseif (*treasure hunter* iswm $2-) { }
  280. elseif (*trick master* iswm $2-) { }
  281. elseif (*safari hunt* iswm $2-) { }
  282. elseif (*bug c* iswm $2-) { }
  283. elseif (*dojo* iswm $2-) { }
  284. elseif (*gym* iswm $2-) { }
  285.  
  286. on *:text:!choose*:#:{
  287.   var %a = $p_active($.nick), %p = $pokemon($2-).name, %status = $p_status($.nick)
  288.   if (!%p) { .notice $nick Unrecognized pokemon }
  289.   elseif ($2) {
  290.     if (%status == none) {
  291.       if ($istok(Bulbasaur Charmander Squirtle Pidgey Weedle Pichu Machop Abra Geodude Staryu Chikorita Cyndaquil Totodile Absol,%p,32)) {
  292.         sqlite_begin %pdb
  293.         sqlite_exec %pdb INSERT INTO p_inventory (name, cash, pokeball) VALUES (' $+ $sql_esc($.nick) $+ ', 500, 20)
  294.         sqlite_exec %pdb INSERT INTO p_badges (name) VALUES (' $+ $sql_esc($.nick) $+ ')
  295.         sqlite_exec %pdb INSERT INTO p_pokemon (name) VALUES (' $+ $sql_esc($.nick) $+ ')
  296.         sqlite_exec %pdb INSERT INTO p_tm (name) VALUES (' $+ $sql_esc($.nick) $+ ')
  297.         sqlite_exec %pdb INSERT INTO p_players VALUES (' $+ $sql_esc($.nick) $+ ', $rand(1,65535) , $rand(1,65535) , ' $+ 3 3 $+ ', ' $+ %p $+ ', ' $+ %p $+ ', ' $+ ready $+ ', 0, 0, 0, '', '', 0)
  298.         sqlite_exec %pdb CREATE TABLE $sql_esc($.nick) (pokemon varchar(20), pv varchar(10), ability varchar(20), nature varchar(10), traded varchar(1), item varchar(20), m1 varchar(20), m2 varchar(20), m3 varchar(20), m4 varchar(20), lvl varchar(3), exp varchar(10), hp varchar(4), atk varchar(4), def varchar(4), spatk varchar(4), spdef varchar(4), spd varchar(4), ivhp varchar(2), ivatk varchar(2), ivdef varchar(2), ivspatk varchar(2), ivspdef varchar(2), ivspd varchar(2), evhp varchar(3), evatk varchar(3), evdef varchar(3), evspatk varchar(3), evspdef varchar(3), evspd varchar(3))
  299.         sqlite_commit %pdb
  300.         add_pokemon $.nick $p_gen(%p,1)
  301.         hadd -z pokemon $+($.nick,.travel) 900
  302.         .notice $nick Congrats! You are now a pokemon trainer. %p is now your active pokemon. As you catch more you can change them out with !choose
  303.       }
  304.       else { .notice $nick That isn't a valid option. }
  305.     }
  306.     elseif (%status == ready) {
  307.       if (%a == %p) { .notice $nick %p is already your active pokemon! }
  308.       elseif ($has_pokemon($.nick,%p) != has) { .notice $nick You don't have a %p }
  309.       elseif ($p_stat($.nick,%p).lvl < $p_loc($.nick).lvl) { .notice $nick %p is too weak to be out here. }
  310.       elseif (!$istok($p_team($.nick),%p,124)) { .notice $nick %p isn't in your team! You can change your team with !take and !leave when you are near a Pokecenter. }
  311.       else {
  312.         .notice $nick %p is now your active pokemon.
  313.         p_active $.nick %p
  314.       }
  315.     }
  316.   }
  317. }
  318. on *:text:!take*:#:{
  319.   if ($p_status($.nick) == ready) {
  320.     var %p = $pokemon($2).name, %t = $p_team($.nick)
  321.     if (!%p) { .notice $nick Unrecognized pokemon! }
  322.     elseif (!$istok($p_loc($.nick).npc,Pokecenter,44)) { .notice $nick There isnt a Pokecenter close by! }
  323.     elseif ($numtok(%t,124) >= 6) { .notice $nick Your team is full! You need to !leave one first. }
  324.     elseif ($has_pokemon($.nick,%p) != has) { .notice $nick You don't have a %p $+ ! }
  325.     elseif ($istok(%t,%p,124)) { .notice $nick %p is already in your team! }
  326.     elseif (%p == $p_daycare($.nick)) { .notice $nick %p is in Daycare! }
  327.     else {
  328.       %t = $addtok(%t,%p,124)
  329.       .notice $nick You take %p with you. [Team: $replace(%t,|,$chr(32) - $chr(32)) $+ ]
  330.       p_team $.nick %t
  331.     }
  332.   }
  333. }
  334. on *:text:!leave*:#:{
  335.   if ($p_status($.nick) == ready) {
  336.     var %p = $pokemon($2).name, %t = $p_team($.nick)
  337.     if (!%p) { .notice $nick Unrecognized pokemon! }
  338.     elseif (!$istok($p_loc($.nick).npc,Pokecenter,44)) { .notice $nick There isn't a Pokecenter close by! }
  339.     elseif (!$istok(%t,%p,124)) { .notice $nick %p isn't in your team! }
  340.     elseif (%p == $p_active($.nick)) { .notice $nick You can't leave your active pokemon! }
  341.     else {
  342.       %t = $remtok(%t,%p,1,124)
  343.       .notice $nick You leave %p [Team: $replace(%t,|,$chr(32) - $chr(32)) $+ ]
  344.       p_team $.nick %t
  345.     }
  346.   }
  347. }
  348. on *:text:!team:#:{
  349.   if ($p_status($.nick)) {
  350.     .notice $nick $replace($p_team($.nick),|,$chr(32) - $chr(32))
  351.   }
  352. }
  353. on *:text:!give *:#:{
  354.   if ($p_status($.nick) == ready) {
  355.     var %p = $pokemon($iif($5,$2 $3,$2)).name, %i = $p_item($iif($5,$4-,$iif($p_item($3-).name,$3-,$4-))).name
  356.     if (!%i) { .notice $nick That isn't an item! }
  357.     elseif ($p_item(%i).type != hold) { .notice $nick You can't give that to him! }
  358.     elseif (!%p) { .notice $nick I think you misspelled the pokemon name, or have the name and item in the wrong order. }
  359.     elseif ($has_pokemon($.nick,%p) != has) { .notice $nick You don't have a %p }
  360.     elseif (!$p_item($.nick,%i)) { .notice $nick You don't have a %i }
  361.     else {
  362.       set -l %sql SELECT item FROM $sql_esc($.nick) WHERE pokemon=' $+ $sql_esc(%p) $+ '
  363.       set -l %query $sqlite_query(%pdb,%sql)
  364.       set -l %fetch $sqlite_fetch_row(%query,pitem,$SQLITE_ASSOC)
  365.       sqlite_exec %pdb UPDATE $sql_esc($.nick) SET item=' $+ $sql_esc(%i) $+ ' WHERE pokemon=' $+ $sql_esc(%p) $+ '
  366.       p_item $.nick $sql_esc(%i) -1
  367.       if ($hget(pitem,item)) {
  368.         var %new = $v1
  369.         .notice $nick You exchange %p $+ 's $sql_re(%new) for your %i
  370.         p_item $.nick $sql_esc(%new)
  371.       }
  372.       else { .notice $nick You give the %i to %p }
  373.     }
  374.   }
  375.   sqlite_free %query
  376. }
  377. on $*:text:/^!travel\s(north|south|east|west)/i:#:{
  378.   if ($p_status($.nick) == ready) {
  379.     tokenize 32 $($+($!p_loc($.nick),.,$2),2)
  380.     if ($hget(pokemon,$+($.nick,.travel))) { .notice $nick You cant travel yet, You need to wait $duration($v1) }
  381.     elseif ($p_stat($.nick,$p_active($.nick)).lvl < $p_loc($1,$2).lvl) { .notice $nick You should wait until you are stronger before going to $p_loc($1,$2).name ( $+ $p_loc($1,$2).lvl $+ ) }
  382.     else {
  383.       if ($p_loc($1,$2)) && ($p_loc($.nick) != $1 $2) {
  384.         hadd -z pokemon $+($.nick,.,travel) $iif($p_item($.nick,bicycle),600,900)
  385.         p_loc $.nick $1 $2
  386.         .notice $nick You travel to $p_loc($.nick).name $+ . $iif($p_loc($.nick).npc,Points of interest: [ $+ $replace($v1,$chr(44),] - [) $+ ])
  387.       }
  388.       else { .notice $nick You cant travel there! }
  389.     }
  390.   }
  391. }
  392. on $*:text:/^!(location|map)/i:#:{
  393.   if ($p_status($.nick) == ready) {
  394.     .notice $nick $p_loc($.nick).map
  395.     if ($p_loc($.nick).npc) { .notice $nick Points of interest: [ $+ $replace($p_loc($.nick).npc,$chr(44),] - [) $+ ] }
  396.   }
  397. }
  398. alias p_loc {
  399.   if ($isid) {
  400.     if (!$2) { tokenize 32 $1 }
  401.     if ($1 !isnum) {
  402.       set -l %sql SELECT loc FROM p_players WHERE name=' $+ $sql_esc($1) $+ '
  403.       set -l %query $sqlite_query(%pdb,%sql)
  404.       set -l %fetch $sqlite_fetch_row(%query,loc,$SQLITE_ASSOC)
  405.       sqlite_free %query
  406.       tokenize 32 $hget(loc,loc)
  407.       if ($hget(loc)) { hfree loc }
  408.     }
  409.     var %x = $iif(!$2,$1,$gettok($p_ini(loc,$1),$2,44)), %n = $iif($1 > 1,$gettok($p_ini(loc,$calc($1 - 1)),$2,44),0), %e = $iif($2 < 5,$gettok($p_ini(loc,$1),$calc($2 + 1),44),0), %s = $iif($1 < 5,$gettok($p_ini(loc,$calc($1 + 1)),$2,44),0), %w = $iif($2 > 1,$gettok($p_ini(loc,$1),$calc($2 - 1),44),0)
  410.     if (!%x) { return 0 }
  411.     if ($prop == npc) {
  412.       var %tf = txt/pokemon/loc $+ $ticks, %a
  413.       filter -ffg txt/pokemon/npc.txt %tf /(\x09|\x2C)( %x |\*)(\x09|\x2C)/x
  414.       .fopen locnpc %tf
  415.       while ($fread(locnpc)) { %a = $addtok(%a,$gettok($v1,3,9),44) }
  416.       .fclose locnpc
  417.       .remove %tf
  418.       return %a
  419.     }
  420.     if ($prop == name) { return $p_ini(area,%x) }
  421.     if ($prop == num) { return %x }
  422.     if ($prop == map) { return [Current Location: $p_ini(area,%x) $+ ] $iif(%n,[North: $p_ini(area,%n) $+ ]) $iif(%e,[East: $p_ini(area,%e) $+ ]) $iif(%s,[South: $p_ini(area,%s) $+ ]) $iif(%w,[West: $p_ini(area,%w) $+ ])  }
  423.     if ($prop == lvl) { return $p_ini(level,%x) }
  424.     if ($prop == north) && (%n) { return $calc($1 - 1) $2 }
  425.     if ($prop == east) && (%e) { return $1 $calc($2 + 1) }
  426.     if ($prop == south) && (%s) { return $calc($1 + 1) $2 }
  427.     if ($prop == west) && (%w) { return $1 $calc($2 - 1) }
  428.     if ($prop == rand) {
  429.       var %r = $1 $2 $iif(%n,$chr(44) $calc($1 - 1) $2) $iif(%e,$chr(44) $1 $calc($2 + 1)) $iif(%s,$chr(44) $calc($1 + 1) $2) $iif(%w,$chr(44) $1 $calc($2 - 1))
  430.       return $.rand(%r)
  431.     }
  432.     return $1-
  433.   }
  434.   sqlite_exec %pdb UPDATE p_players SET loc=' $+ $2- $+ ' WHERE name=' $+ $sql_esc($1) $+ '
  435. }
  436. alias pokemon {
  437.   if (!$1) {
  438.     if ($prop) { return }
  439.     return $gettok($read(txt/pokemon/pokemon.txt),2,9)
  440.   }
  441.   var %x = $read(txt/pokemon/pokemon.txt,r,/^\d{3}\x09[^\x09]* $replace($sql_re($1-),$chr(32),\s,$chr(40),.,$chr(41),.) .*\x09/ix)
  442.   if ($prop == num) { return $gettok(%x,1,9) }
  443.   if ($prop == name) { return $gettok(%x,2,9) }
  444.   if ($prop == type) { return $gettok(%x,3,9) }
  445.   if ($prop == hp) { return $gettok(%x,4,9) }
  446.   if ($prop == atk) { return $gettok(%x,5,9) }
  447.   if ($prop == def) { return $gettok(%x,6,9) }
  448.   if ($prop == satk) { return $gettok(%x,7,9) }
  449.   if ($prop == sdef) { return $gettok(%x,8,9) }
  450.   if ($prop == spd) { return $gettok(%x,9,9) }
  451.   if ($prop == total) { return $gettok(%x,10,9) }
  452.   if ($prop == fmt) { return ( $+ $gettok(%x,1,9) $+ ) $gettok(%x,2,9) [Type: $gettok(%x,3,9) $+ ] }
  453.   if (stat* iswm $prop) { return $gettok(%x,3-9,9) }
  454.   else { return %x }
  455. }
  456. alias p_get {
  457.   var %f = txt/pokemon/pget $+ $ticks, %a = $iif($2,$2,$p_loc($.nick).num), %m
  458.   filter -ffg txt/pokemon/area.txt %f /(?<=^|\x2C)( %a )(?=\x2C|\x09)/ix
  459.   var %m = $($str( $+ $!gettok( $+ $!read( $+ %f $+ ),2,9) $!+ $!chr(44) $chr(32) ,$iif($1,$1,1)),2)
  460.   .remove %f
  461.   return %m
  462. }
  463. alias p_rare {
  464.   if ($1) {
  465.     var %x = $pokemon($1-).name
  466.     return $iif($read(txt/pokemon/rare.txt,r,/(\x09 $regescape(%x) )$/ix),$true,$false)
  467.   }
  468.   var %f = txt/pokemon/prare $+ $ticks, %a = $p_loc($.nick).num
  469.   filter -ffg txt/pokemon/rare.txt %f /(?<=^|\x2C)( %a )(?=\x2C|\x09)/ix
  470.   .timerrare 1 1 .remove %f
  471.   return $gettok($read(%f),2,9)
  472. }
  473. alias p_uncom {
  474.   if ($1) {
  475.     var %x = $pokemon($1-).name
  476.     return $iif($read(txt/pokemon/uncommon.txt,w,%x $+ *),$true,$false)
  477.   }
  478. }
  479. alias p_traded {
  480.   set -l %sql SELECT * FROM $sql_esc($1) WHERE pokemon=' $+ $2 $+ '
  481.   set -l %query $sqlite_query(%pdb,%sql)
  482.   set -l %fetch $sqlite_fetch_row(%query,traded,$SQLITE_ASSOC)
  483.   var %x = $iif($hget(traded,traded) == 1,$true,$false)
  484.   sqlite_free %query
  485.   if ($hget(traded)) { hfree traded }
  486.   return %x
  487. }
  488. alias p_exp { return $ceil($calc((7 * $1 ^ 3) / 5)) }
  489. alias p_mexp { return $ceil($calc($iif($p_traded($.nick,%p),1.5,1) * $p_bexp($1).exp * $2 / 7)) }
  490. alias p_+exp {
  491.   sqlite_begin %pdb
  492.   if ($1 == rare candy) {
  493.     var %p = $2, %exp = $calc($p_exp($calc($p_stat($.nick,%p).lvl + 1)) - $p_stat($.nick,%p).exp)
  494.     sqlite_exec %pdb UPDATE $sql_esc($.nick) SET exp=exp+ %exp WHERE pokemon=' $+ $sql_esc(%p) $+ '
  495.   }
  496.   else {
  497.     var %p = $p_active($.nick), %exp = $ceil($calc($iif($p_traded($.nick,%p),1.5,1) * $p_bexp($1).exp * $2 / 7))
  498.     sqlite_exec %pdb UPDATE $sql_esc($.nick) SET exp=exp+ %exp , evhp=evhp+ $p_bexp($1).hp , evatk=evatk+ $p_bexp($1).atk , evdef=evdef+ $p_bexp($1).def , evspatk=evspatk+ $p_bexp($1).spatk , evspdef=evspdef+ $p_bexp($1).spdef , evspd=evspd+ $p_bexp($1).spd WHERE pokemon=' $+ $sql_esc(%p) $+ '
  499.   }
  500.   set -l %sql SELECT * FROM $sql_esc($.nick) WHERE pokemon=' $+ $sql_esc(%p) $+ '
  501.   set -l %query $sqlite_query(%pdb,%sql)
  502.   set -l %fetch $sqlite_fetch_row(%query,pkexp,$SQLITE_ASSOC)
  503.   if ($p_exp($calc($hget(pkexp,lvl) + 1)) <= $hget(pkexp,exp)) && ($hget(pkexp,lvl) < 99) {
  504.     var %lvl = $hget(pkexp,lvl) + 1, %e = $p_path(%p), %n = $gettok(%e,$calc($findtok(%e,%p,1,9) + 1),9)
  505.     if (%lvl >= $p_el(%p)) && (%lvl != 99) && ($has_pokemon($.nick,%n) != has) {
  506.       if (| isin %n) {
  507.         if (%p == Wurmple) { %n = $iif($calc($hget(pkexp,pv) % 10) < 5,Silcoon,Cascoon) }
  508.         elseif ($regex(%p,/^(Silcoon|Cascoon)$/i)) { %n = $iif(%p == Silcoon,Beautifly,Dustox) }
  509.         else {
  510.           var %x = 1, %y = $numtok(%n,124), %a, %s
  511.           while (%x <= %y) {
  512.             var %a = $gettok(%n,%x,124)
  513.             if ($sql_re($hget(pkexp,item)) == $p_ei(%a)) { %s = %a }
  514.             inc %x
  515.           }
  516.           if (!%s) { goto level }
  517.           else { %n = %s }
  518.         }
  519.       }
  520.       elseif ($p_ei(%n)) {
  521.         if ($sql_re($hget(pkexp,item)) != $p_ei(%n)) { goto level }
  522.         else { sqlite_exec %pdb UPDATE $sql_esc($.nick) SET item=' $+ $null $+ ' WHERE pokemon=' $+ $sql_esc(%p) $+ ' }
  523.       }
  524.       var %pv = $hget(pkexp,pv), %ability = $gettok($read(txt/pokemon/abilitylist.txt,w,%n $+ *),2,9), %ability = $iif($numtok(%ability,44) == 2 && $odd(%pv),$gettok(%ability,2,44),$gettok(%ability,1,44))
  525.       msg $chan %p is Evolving! %p evolved in to %n
  526.       p_team $.nick $reptok($p_team($.nick),%p,%n,1,124)
  527.       sqlite_exec %pdb UPDATE $sql_esc($.nick) SET pokemon=' $+ $sql_esc(%n) $+ ', ability=' $+ $sql_esc(%ability) $+ ' WHERE pokemon=' $+ $sql_esc(%p) $+ '
  528.       sqlite_exec %pdb UPDATE p_pokemon SET $sql_esc(%n) $+ ='1' WHERE name=' $+ $sql_esc($.nick) $+ '
  529.       sqlite_exec %pdb DELETE * FROM $sql_esc($.nick) WHERE pokemon=' $+ $sql_esc(%p) $+ '
  530.       lock_pokemon $.nick %p
  531.       hadd pkexp pokemon %n
  532.       if ($p_active($.nick) == %p) { p_active $.nick %n }
  533.     }
  534.     :level
  535.     var %p = $hget(pkexp,pokemon), %n = $read(txt/pokemon/nature.txt,w,$hget(pkexp,nature) $+ *), %ps = $pokemon($hget(pkexp,pokemon)).stat, %hp = $gettok(%ps,2,9), %atk = $gettok(%ps,3,9), %def = $gettok(%ps,4,9), %spatk = $gettok(%ps,5,9), %spdef = $gettok(%ps,6,9), %spd = $gettok(%ps,7,9)
  536.     var %hp = $iif(%p == Shedinja,1,$calc(($hget(pkexp,ivhp) + (2 * %hp) + ($hget(pkexp,evhp) / 4)) * (%lvl / 100) + 10 + %lvl)), %atk = $calc((($hget(pkexp,ivatk) + (2 * %atk) + ($hget(pkexp,evatk) / 4)) * (%lvl / 100) + 5)), %def = $calc((($hget(pkexp,ivdef) + (2 * %def) + ($hget(pkexp,evdef) / 4)) * (%lvl / 100) + 5)), %spatk = $calc((($hget(pkexp,ivspatk) + (2 * %spatk) + ($hget(pkexp,evspatk) / 4)) * (%lvl / 100) + 5)), %spdef = $calc((($hget(pkexp,ivspdef) + (2 * %spdef) + ($hget(pkexp,evspdef) / 4)) * (%lvl / 100) + 5)), %spd = $calc((($hget(pkexp,ivspd) + (2 * %spd) + ($hget(pkexp,evspd) / 4)) * (%lvl / 100) + 5))
  537.     if ($gettok(%n,2,32)) {
  538.       inc $gettok(%n,2,32) $calc($gettok(%n,2,32) * .1)
  539.       dec $gettok(%n,3,32) $calc($gettok(%n,3,32) * .1)
  540.     }
  541.     msg $chan %p gained a level ( $+ %lvl $+ ) $+([HP: +,$floor($calc(%hp - $hget(pkexp,hp))),]) $+([ATK: +,$floor($calc(%atk - $hget(pkexp,atk))),]) $+([DEF: +,$floor($calc(%def - $hget(pkexp,def))),]) $+([SP.ATK: +,$floor($calc(%spatk - $hget(pkexp,spatk))),]) $+([SP.DEF: +,$floor($calc(%spdef - $hget(pkexp,spdef))),]) $+([SPD: +,$floor($calc(%spd - $hget(pkexp,spd))),])
  542.     sqlite_exec %pdb UPDATE $sql_esc($.nick) SET lvl=' $+ %lvl $+ ', hp=' $+ $floor(%hp) $+ ', atk=' $+ $floor(%atk) $+ ', def=' $+ $floor(%def) $+ ', spatk=' $+ $floor(%spatk) $+ ', spdef=' $+ $floor(%spdef) $+ ', spd=' $+ $floor(%spd) $+ ' WHERE pokemon=' $+ $sql_esc(%p) $+ '
  543.     var %m1 = $hget(pkexp,m1), %m2 = $hget(pkexp,m2), %m3 = $hget(pkexp,m3), %m4 = $hget(pkexp,m4), %mlist = $+(%m1,$chr(44),%m2,$chr(44),%m3,$chr(44),%m4)
  544.     if ($p_move(%p,%lvl)) {
  545.       var %nm = $v1
  546.       if ($numtok(%mlist,44) < 4) {
  547.         msg $chan $sql_re(%p) learned %nm $+ !
  548.         sqlite_exec %pdb UPDATE $sql_esc($.nick) SET $+(m,$calc($numtok(%mlist,44) + 1)) =' $+ $sql_esc(%nm) $+ ' WHERE pokemon=' $+ $sql_esc(%p) $+ '
  549.       }
  550.       else {
  551.         msg $chan $sql_re(%p wants to learn %nm [Current moves: %m1 $+ $chr(44) %m2 $+ $chr(44) %m3 $+ $chr(44) %m4 $+ ] - Type !forget <name> and !pokemove <name> to see stats.)
  552.         p_mark $.nick $+(%m1,$chr(44),%m2,$chr(44),%m3,$chr(44),%m4,$chr(44),%nm)
  553.         p_status $.nick learn
  554.       }
  555.     }
  556.   }
  557.   sqlite_commit %pdb
  558.   sqlite_free %query
  559.   if ($hget(pkexp)) { hfree pkexp }
  560.   return %exp
  561. }
  562. alias p_+daycare {
  563.   var %p = $p_daycare($1), %cl = $p_stat($1,%p).lvl
  564.   sqlite_exec %pdb UPDATE $sql_esc($1) SET exp=exp+ $cap($calc(%cl * 2),100) WHERE pokemon=' $+ $sql_esc(%p) $+ '
  565.   set -l %sql SELECT * FROM $sql_esc($1) WHERE pokemon=' $+ $sql_esc(%p) $+ '
  566.   set -l %query $sqlite_query(%pdb,%sql)
  567.   set -l %fetch $sqlite_fetch_row(%query,pkexp,$SQLITE_ASSOC)
  568.   if ($p_exp($calc($hget(pkexp,lvl) + 1)) <= $hget(pkexp,exp)) && ($hget(pkexp,lvl) < 99) {
  569.     var %lvl = $hget(pkexp,lvl) + 1, %p = $hget(pkexp,pokemon), %n = $read(txt/pokemon/nature.txt,w,$hget(pkexp,nature) $+ *), %ps = $pokemon($hget(pkexp,pokemon)).stat, %hp = $gettok(%ps,2,9), %atk = $gettok(%ps,3,9), %def = $gettok(%ps,4,9), %spatk = $gettok(%ps,5,9), %spdef = $gettok(%ps,6,9), %spd = $gettok(%ps,7,9)
  570.     var %hp = $iif(%p == Shedinja,1,$calc(($hget(pkexp,ivhp) + (2 * %hp) + ($hget(pkexp,evhp) / 4)) * (%lvl / 100) + 10 + %lvl)), %atk = $calc((($hget(pkexp,ivatk) + (2 * %atk) + ($hget(pkexp,evatk) / 4)) * (%lvl / 100) + 5)), %def = $calc((($hget(pkexp,ivdef) + (2 * %def) + ($hget(pkexp,evdef) / 4)) * (%lvl / 100) + 5)), %spatk = $calc((($hget(pkexp,ivspatk) + (2 * %spatk) + ($hget(pkexp,evspatk) / 4)) * (%lvl / 100) + 5)), %spdef = $calc((($hget(pkexp,ivspdef) + (2 * %spdef) + ($hget(pkexp,evspdef) / 4)) * (%lvl / 100) + 5)), %spd = $calc((($hget(pkexp,ivspd) + (2 * %spd) + ($hget(pkexp,evspd) / 4)) * (%lvl / 100) + 5))
  571.     if ($gettok(%n,2,32)) {
  572.       inc $gettok(%n,2,32) $calc($gettok(%n,2,32) * .1)
  573.       dec $gettok(%n,3,32) $calc($gettok(%n,3,32) * .1)
  574.     }
  575.     sqlite_exec %pdb UPDATE $sql_esc($1) SET lvl=' $+ %lvl $+ ', hp=' $+ $floor(%hp) $+ ', atk=' $+ $floor(%atk) $+ ', def=' $+ $floor(%def) $+ ', spatk=' $+ $floor(%spatk) $+ ', spdef=' $+ $floor(%spdef) $+ ', spd=' $+ $floor(%spd) $+ ' WHERE pokemon=' $+ $sql_esc(%p) $+ '
  576.     p_ps $1 dcl
  577.     if ($p_move(%p,%lvl)) {
  578.       var %m1 = $hget(pkexp,m1), %m2 = $hget(pkexp,m2), %m3 = $hget(pkexp,m3), %m4 = $hget(pkexp,m4), %all = $+(%m1,$chr(9),%m2,$chr(9),%m3,$chr(9),%m4,$chr(9),$p_move(%p,%lvl))
  579.       if ($numtok(%all,9) <= 4) { var %c = $numtok(%all,9), %m = %all $+ $str($chr(9),$calc(4 - %c)) }
  580.       else {
  581.         while ($numtok(%m,9) < 4) { %m = $addtok(%m,$p_movesel($1,%all),9) }
  582.       }
  583.       sqlite_exec %pdb UPDATE $sql_esc($1) SET m1=' $+ $gettok(%m,1,9) $+ ' m2=' $+ $gettok(%m,2,9) $+ ' m3=' $+ $gettok(%m,3,9) $+ ' m4=' $+ $gettok(%m,4,9) $+ ' WHERE pokemon=' $+ $sql_esc(%p) $+ '
  584.     }
  585.   }
  586.   sqlite_commit %pdb
  587.   sqlite_free %query
  588.   if ($hget(pkexp)) { hfree pkexp }
  589. }
  590. on *:text:!forget*:#:{
  591.   if ($p_status($.nick) == learn) || ($p_status($.nick) == tm) {
  592.     var %m = $p_mark($.nick), %x = $iif($p_status($.nick) == tm,$gettok(%m,2,124),$p_mark($.nick)), %p = $iif($p_status($.nick) == tm,$gettok(%m,1,124),$p_active($.nick))
  593.     if ($istok(%x,$pokemove($2-).name,44)) { %x = $remtok(%x,$pokemove($2-).name,1,44)
  594.       .notice $nick %p forgot $pokemove($2-).name $+ . $+([,$gettok(%x,1,44),$chr(44) , $gettok(%x,2,44),$chr(44) , $gettok(%x,3,44),$chr(44) , $gettok(%x,4,44),])
  595.       sqlite_exec %pdb UPDATE $sql_esc($.nick) SET m1=' $+ $sql_esc($gettok(%x,1,44)) $+ ', m2=' $+ $sql_esc($gettok(%x,2,44)) $+ ', m3=' $sql_esc($+ $gettok(%x,3,44)) $+ ', m4=' $+ $sql_esc($gettok(%x,4,44)) $+ ' WHERE pokemon=' $+ %p $+ '
  596.       p_status $.nick ready
  597.     }
  598.     else { .notice $nick That isn't a valid option. }
  599.   }
  600. }
  601. alias p_bexp {
  602.   tokenize 9 $read(txt/pokemon/ev.txt,r,/\x09 $replace($pokemon($1-).name,$chr(32),\s,$chr(40),.,$chr(41),.) \s\x09/xi)
  603.   if ($prop == exp) { return $3 }
  604.   if ($prop == hp) { return $4 }
  605.   if ($prop == atk) { return $5 }
  606.   if ($prop == def) { return $6 }
  607.   if ($prop == spatk) { return $7 }
  608.   if ($prop == spdef) { return $8 }
  609.   if ($prop == spd) { return $9 }
  610. }
  611. alias p_cr {
  612.   var %x = $read(txt/pokemon/cr.txt,w,$pokemon($1).name $+ *)
  613.   return $gettok(%x,2,9)
  614. }
  615. alias p_el {
  616.   if ($1) {
  617.     var %x = $read(txt/pokemon/level.txt,w,$pokemon($1).name $+ *)
  618.     return $iif(%x,$calc($gettok(%x,2,9) + 1),$null)
  619.   }
  620. }
  621. alias p_path {
  622.   var %p = $pokemon($1).name, %x = $read(txt/pokemon/path.txt,w,* $+ %p $+ *), %t = $calc($findtok(%x,%p,1,9) $prop 1)
  623.   if ($prop) { return $gettok(%x,%t,9) }
  624.   return %x
  625. }
  626. alias p_ml {
  627.   if ($1) {
  628.     var %x = $pokemon($1).name, %p = $p_path(%x), %t = $findtok(%p,%x,1,9) - 1
  629.     return $iif(%t,$p_el($gettok(%p,%t,9)),1)
  630.   }
  631. }
  632. alias p_ei {
  633.   if ($1) {
  634.     var %x = $pokemon($1).name
  635.     if %x { %x = $read(txt/pokemon/evolve.item.txt,w,%x $+ *) }
  636.     return $iif(%x,$gettok(%x,2,9),$null)
  637.   }
  638. }
  639. alias p_ep {
  640.   var %p = $read(txt/pokemon/path.txt,w,* $+ $pokemon($1).name $+ * )
  641.   return $($regsubex(%p,/([^\|]+?)(\x09)/g,\1->( $!+ $!p_el( $+ \1 $+ ) $!+ $!iif( $!+ $!read(txt/pokemon/evolve.item.txt,w,* $!+ $!p_path( $+ \1 $+ ).+ $!+ *) $!+ ,*) $!+ )->),3)
  642. }
  643. alias p_vs {
  644.   var %x = 1, %a1, %d1, %dam1, %a2, %d2, %dam2, %h, %m, %hp1, %hp2
  645.   var %apm1 = $ceil($calc(($gettok($1,7,9) + 1) ^ .6 + 3)), %apm2 = $ceil($calc(($gettok($2,7,9) + 1) ^ .6 + 3)), %mod1 = $p_type($gettok($1,1,9),$gettok($2,1,9)), %mod2 = $p_type($gettok($2,1,9),$gettok($1,1,9))
  646.   while (%x <= %apm1) {
  647.     var %h = $rand(1,20), %m = $rand(1,20)
  648.     if (%m > %h) || (%h < 3) { dec %apm1 }
  649.     elseif (%h == 20) { inc %apm1 }
  650.     inc %x
  651.   }
  652.   %a1 = $calc($bottom($floor($calc(1 $($str( $!chr(32) + $!chr(32) $!chr(40) $!+ $!gettok($1, $!.rand(3,5).str ,9) ^ . $!+ $!.rand(6,8) $!+ $!chr(41) $!chr(32) ,%apm1),2))),1) * %mod1)
  653.   %d1 = $bottom($floor($calc(1 $($str( $!chr(32) + $!chr(32) $!chr(40) $!+ $!gettok($2, $!.rand(4,6).str ,9) ^ . $!+ $!.rand(2,4) $!+ $!chr(41) $!chr(32) ,%apm1),2))),1)
  654.   %x = 1
  655.   while (%x <= %apm2) {
  656.     var %h = $rand(1,20), %m = $rand(1,20)
  657.     if (%m > %h) || (%h < 3) { dec %apm2 }
  658.     elseif (%h == 20) { inc %apm2 }
  659.     inc %x
  660.   }
  661.   %a2 = $calc($bottom($floor($calc(1 $($str( $!chr(32) + $!chr(32) $!chr(40) $!+ $!gettok($2, $!.rand(3,5).str ,9) ^ . $!+ $!.rand(6,8) $!+ $!chr(41) $!chr(32) ,%apm2),2))),1) * %mod2)
  662.   %d2 = $bottom($floor($calc(1 $($str( $!chr(32) + $!chr(32) $!chr(40) $!+ $!gettok($1, $!.rand(4,6).str ,9) ^ . $!+ $!.rand(2,4) $!+ $!chr(41) $!chr(32) ,%apm2),2))),1)
  663.   %dam1 = $bottom($calc(%a1 - %d1),1)
  664.   %dam2 = $bottom($calc(%a2 - %d2),1)
  665.   %hp1 = $calc($gettok($1,2,9) - %dam2)
  666.   %hp2 = $calc($gettok($2,2,9) - %dam1)
  667.   return $iif(%hp1 > %hp2,1,2)
  668. }
  669. alias p_gen {
  670.   var %x, %y = $lines(txt/pokemon/ev.txt), %p = $pokemon($1).stat, %l = 1, %exp = 1, %pv = $rand(0,4294967295)
  671.   var %hp = $gettok(%p,2,9), %atk = $gettok(%p,3,9), %def = $gettok(%p,4,9), %spatk = $gettok(%p,5,9), %spdef = $gettok(%p,6,9), %spd = $gettok(%p,7,9), %ivhp = $rand(1,32), %ivatk = $rand(1,32), %ivdef = $rand(1,32), %ivspatk = $rand(1,32), %ivspdef = $rand(1,32), %ivspd = $rand(1,32), %evhp = 0, %evatk = 0, %evdef = 0, %evspatk = 0, %evspdef = 0, %evspd = 0
  672.   var %ability = $gettok($read(txt/pokemon/abilitylist.txt,w,$1 $+ *),2,9), %ability = $iif($numtok(%ability,44) == 2 && $odd(%pv),$gettok(%ability,2,44),$gettok(%ability,1,44)), %nature = $read(txt/pokemon/nature.txt,s,$calc(%pv % 25)), %n = $read(txt/pokemon/nature.txt,nw,%nature $+ *)
  673.   .fopen npc txt/pokemon/ev.txt
  674.   while (%l < $2) {
  675.     .fseek -l npc $rand(1,%y)
  676.     %x = $fread(npc)
  677.     inc %exp $floor($calc($gettok(%x,3,9) * %l / 7))
  678.     inc %evhp $gettok(%x,4,9)
  679.     inc %evatk $gettok(%x,5,9)
  680.     inc %evdef $gettok(%x,6,9)
  681.     inc %evspatk $gettok(%x,7,9)
  682.     inc %evspdef $gettok(%x,8,9)
  683.     inc %evspd $gettok(%x,9,9)
  684.     while (%exp > $p_exp($calc(%l + 1))) { inc %l }
  685.   }
  686.   set -l %sql SELECT * FROM p_learnset WHERE name LIKE $+('%,$sql_esc($1),$(%',0))
  687.   set -l %query $sqlite_query(%pdb,%sql)
  688.   set -l %fetch $sqlite_fetch_row(%query,npcmove,$SQLITE_ASSOC)
  689.   var %n = 1, %m, %physical, %status, %special, %all
  690.   while (%n <= $2) {
  691.     if ($hget(npcmove,$+(l,%n))) {
  692.       %m = $hget(npcmove,$+(l,%n))
  693.       %all = $addtok(%all,%m,9)
  694.       var % $+ $pokemove(%m).cat $addtok($($+(%,$pokemove(%m).cat),2),%m,9)
  695.     }
  696.     inc %n
  697.   }
  698.   var %m
  699.   if ($numtok(%all,9) <= 4) { var %c = $numtok(%all,9), %m = %all $+ $str($chr(9),$calc(4 - %c)) }
  700.   else {
  701.     while ($numtok(%m,9) < 4) { %m = $addtok(%m,$p_movesel($1,%all),9) }
  702.   }
  703.   var %hp = $iif($1 == Shedinja,1,$calc((%ivhp + (2 * %hp) + (%evhp / 4)) * (%l / 100) + 10 + %l)), %atk = $calc(((%ivatk + (2 * %atk) + (%evatk / 4)) * (%l / 100) + 5)), %def = $calc(((%ivdef + (2 * %def) + (%evdef / 4)) * (%l / 100) + 5)), %spatk = $calc(((%ivspatk + (2 * %spatk) + (%evspatk / 4)) * (%l / 100) + 5)), %spdef = $calc(((%ivspdef + (2 * %spdef) + (%evspdef / 4)) * (%l / 100) + 5)), %spd = $calc(((%ivspd + (2 * %spd) + (%evspd / 4)) * (%l / 100) + 5))
  704.   if ($gettok(%n,2,32)) {
  705.     inc $gettok(%n,2,32) $calc($gettok(%n,2,32) * .1)
  706.     dec $gettok(%n,3,32) $calc($gettok(%n,3,32) * .1)
  707.   }
  708.   .fclose npc
  709.   sqlite_free %query
  710.   if ($hget(npcmove)) { hfree npcmove }
  711.   return $+($1,$chr(9),%pv,$chr(9),%ability,$chr(9),%nature,$chr(9),0,$chr(9),,$chr(9),%m,$chr(9),%l,$chr(9),%exp,$chr(9),$floor(%hp),$chr(9),$floor(%atk),$chr(9),$floor(%def),$chr(9),$floor(%spatk),$chr(9),$floor(%spdef),$chr(9),$floor(%spd),$chr(9),%ivhp,$chr(9),%ivatk,$chr(9),%ivdef,$chr(9),%ivspatk,$chr(9),%ivspdef,$chr(9),%ivspd,$chr(9),%evhp,$chr(9),%evatk,$chr(9),%evdef,$chr(9),%evspatk,$chr(9),%evspdef,$chr(9),%evspd)
  712. }
  713. alias p_move {
  714.   set -l %sql SELECT l $+ $2 FROM p_learnset WHERE name LIKE $+('%,$sql_esc($1),$(%',0))
  715.   set -l %query $sqlite_query(%pdb,%sql)
  716.   set -l %fetch $sqlite_fetch_row(%query,pkmove,$SQLITE_ASSOC)
  717.   var %x = $hget(pkmove,l $+ $2)
  718.   sqlite_free %query
  719.   if ($hget(pkmove)) { hfree pkmove }
  720.   return $iif(%x,$v1,$null)
  721. }
  722. alias add_pokemon {
  723.   var %x = $replace($sql_esc($2-),$chr(9),' $+ $chr(44) $+ '), %e = $read(txt/pokemon/path.txt,r,/ $gettok($2,1,9) /ix), %n = $findtok(%e,$gettok($2,1,9),1,9), %a = 1, %p
  724.   sqlite_begin %pdb
  725.   if ($has_pokemon($1,$gettok($2-,1,9)) == has) {
  726.     .notice $nick You caught $gettok($2-,1,9) but you already have a $gettok($2-,1,9) $+ ! Do you want to !keep or !release the new one?
  727.     .notice $nick Old: $p_statfmt($1,$p_stat($1,$gettok($2-,1,9)))
  728.     .notice $nick New: $p_statfmt($1,$2-)
  729.     p_mark $1 $replace($2-,$chr(9),*)
  730.     p_status $1 replace
  731.     return
  732.   }
  733.   var %t = $p_team($1)
  734.   if ($numtok(%t,124) < 6) {
  735.     p_team $1 $addtok(%t,$gettok($2,1,9),124)
  736.   }
  737.   noop $p_+exp($gettok($2-,1,9),$gettok($filltok($2-,-,9),11,9))
  738.   sqlite_exec %pdb UPDATE p_pokemon SET $sql_esc($gettok($2-,1,9)) $+ ='1' WHERE name=' $+ $sql_esc($1) $+ '
  739.   sqlite_exec %pdb INSERT INTO $sql_esc($1) VALUES (' $+ %x $+ ')
  740.   sqlite_commit %pdb
  741. }
  742. on *:text:!keep:#:{
  743.   if ($p_status($.nick) == replace) {
  744.     var %x = $p_mark($.nick), %p = $gettok(%x,1,42)
  745.     .notice $nick You keep the new %p and set your old one free.
  746.     p_status $.nick ready
  747.     replace_pokemon $.nick %x
  748.     noop $p_+exp(%p,$gettok($filltok(%x,-,42),11,42))
  749.   }
  750. }
  751. on *:text:!release:#:{
  752.   if ($p_status($.nick) == replace) {
  753.     var %x = $p_mark($.nick), %p = $gettok(%x,1,42)
  754.     .notice $nick You keep your %p and let the new one go.
  755.     p_status $.nick ready
  756.     noop $p_+exp(%p,$gettok($filltok(%x,-,42),11,42))
  757.   }
  758. }
  759. alias replace_pokemon {
  760.   var %p = $gettok($2-,1,42), %x = $replace($sql_esc($2-),$chr(42),' $+ $chr(44) $+ ')
  761.   sqlite_exec %pdb DELETE FROM $sql_esc($1) WHERE pokemon=' $+ $sql_esc(%p) $+ '
  762.   sqlite_exec %pdb INSERT INTO $sql_esc($1) VALUES (' $+ %x $+ ')
  763. }
  764. alias see_pokemon {
  765.   if (!$has_pokemon($1,$2)) {
  766.     sqlite_exec %pdb UPDATE p_pokemon SET $sql_esc($pokemon($2).name) $+ ='s' WHERE name=' $+ $sql_esc($1) $+ '
  767.   }
  768. }
  769. alias lock_pokemon {
  770.   sqlite_exec %pdb UPDATE p_pokemon SET $sql_esc($pokemon($2).name) $+ ='x' WHERE name=' $+ $sql_esc($1) $+ '
  771. }
  772. alias has_pokemon {
  773.   set -l %sql SELECT $sql_esc($2) FROM p_pokemon WHERE name=' $+ $sql_esc($1) $+ '
  774.   set -l %query $sqlite_query(%pdb,%sql)
  775.   set -l %fetch $sqlite_fetch_row(%query,haspkm,$SQLITE_ASSOC)
  776.   sqlite_free %query
  777.   var %x = $replacex($hget(haspkm,$sql_esc($2)),1,has,x,had,s,seen)
  778.   if ($hget(haspkm)) { hfree haspkm }
  779.   return %x
  780. }
  781. alias trade_pokemon { }
  782.  
  783. on *:text:!buy*:#:{
  784.   if ($p_status($.nick) == ready) {
  785.     var %t = $iif($2 isnum,$3-,$2-), %c
  786.     if (TM* iswm %t) {
  787.       if (!$istok($p_loc($.nick).npc,The Mall,44)) { .notice $nick You aren't near The Mall! }
  788.       else {
  789.         if ($tm(%t).r == 1) {
  790.           %c = $iif($2 isnum,$2,1)
  791.           if ($p_item($.nick,cash) >= $calc(%c * 20000)) {
  792.             .notice $nick You buy $iif($2 isnum,$2 $upper(%t) $+ s,a $upper(%t))
  793.             p_item $.nick %t + $+ %c
  794.             p_item $.nick cash - $+ $calc(20000 * %c)
  795.           }
  796.           else { .notice $nick You don't have enough cash! }
  797.         }
  798.         elseif ($tm(%t).r == 2) {
  799.           var %m = $hget(pokemon,p_mall)
  800.           if (!$istok(%m,$2,32)) { .notice $nick That isn't for sale! }
  801.           elseif ($2 isnum) { .notice $nick We only have 1 $upper($3) in stock. }
  802.           else {
  803.             if ($p_item($.nick,cash) >= 30000) {
  804.               .notice $nick You buy a $upper(%t) $+ .
  805.               p_item $.nick %t +1
  806.               p_item $.nick cash -30000
  807.               %m = $replace(%m,$2,$tm(2))
  808.               hadd pokemon p_mall $dupe(%m)
  809.             }
  810.           }
  811.         }
  812.         else { .notice $nick That isn't for sale! }
  813.       }
  814.     }
  815.     else {
  816.       if (!$istok($p_loc($.nick).npc,Pokemart,44)) { .notice $nick There isn't a Pokemart close by! }
  817.       else {
  818.         if ($regex($2-,/((poke|great|ultra)?\s?ball|(super|hyper|max)?\s?potion|full\srestore|antidote|paralyze\sheal|awakening|burn\sheal|ice\sheal|full\sheal|bicycle)\s?/i)) {
  819.           if (*ball* iswm %t) { %t = $p_cug($.nick).ball }
  820.           if (*potion* iswm %t) { %t = $p_cug($.nick).potion }
  821.           %c = $iif($2 isnum,$calc($p_item(%t).cost * $2),$p_item(%t).cost)
  822.           if ($p_item($.nick,cash) >= %c) {
  823.             if (%t == bicycle) && ($p_item($.nick,bicycle)) { .notice $nick You already have a Bicycle! }
  824.             else {
  825.               .notice $nick You buy $iif($2 isnum,$2 %t $+ s,a %t)
  826.               if (*ball* iswm %t) { p_item $.nick Pokeball $iif($2 isnum,+ $+ $2) }
  827.               elseif (*potion* iswm %t) { p_item $.nick Potion $iif($2 isnum,+ $+ $2) }
  828.               else { p_item $.nick $sql_esc($p_item(%t).name) $iif($2 isnum,+ $+ $2) }
  829.               p_item $.nick cash - $+ %c
  830.             }
  831.           }
  832.           else { .notice $nick You don't have enough cash! ($ $+ $bytes(%c,b) - You have $ $+ $bytes($p_item($.nick,cash),b) $+ ) }
  833.         }
  834.         else { .notice $nick You can't buy that! }
  835.       }
  836.     }
  837.   }
  838. }
  839. on $*:text:/^!upgrade\s(.*)(ball|potion)(.*)/:#:{
  840.   if ($p_status($.nick) == ready) {
  841.     if (!$istok($p_loc($.nick).npc,Pokemart,44)) { .notice $nick There isn't a Pokemart close by! }
  842.     else {
  843.       var %x, %c
  844.       if (*ball* iswm $2) { %x = $p_cug($.nick).ball }
  845.       elseif (*potion* iswm $2) { %x = $p_cug($.nick).potion }
  846.       %c = $calc($p_iug(%x).cost + $p_item($.nick,$iif(*ball* iswm $2,pokeball,potion)) * $p_item($iif(*ball* iswm $2,pokeball,potion)).cost)
  847.       if ($p_iug(%x)) {
  848.         if ($p_item($.nick,cash) >= %c) {
  849.           p_item $.nick $sql_esc($p_iug(%x))
  850.           p_item $.nick cash - $+ %c
  851.           .notice $nick You upgrade your %x to $p_iug(%x)
  852.         }
  853.         else { .notice $nick you don't have enough cash! ($ $+ $bytes(%c,b) - You have $ $+ $bytes($p_item($.nick,cash),b) $+ ) }
  854.       }
  855.       else { .notice $nick You can't upgrade that! }
  856.     }
  857.   }
  858. }
  859. on *:text:!sell*:#:{
  860.   if ($p_status($.nick) == ready) {
  861.     if (!$istok($p_loc($.nick).npc,Pokemart,44)) { .notice $nick There isn't a Pokemart close by! }
  862.     var %i = $p_item($iif($2 isnum,$3-,$2-)).name, %n = $iif($2 isnum,$2,1), %c = $calc(($p_item(%i).cost * $iif(TM* iswm %i,5000,.1)) * %n)
  863.     if (!%i) || (!%c) { notice $nick You can't sell that! }
  864.     elseif ($p_item($.nick,%i) >= %n) {
  865.       .notice $nick You sell %n %i $+ $iif(%n > 1,$+ 's) for $ $+ %c $+ .
  866.       p_item $.nick $sql_esc(%i) - $+ %n
  867.       p_item $.nick cash + $+ %c
  868.     }
  869.     else { .notice $nick You don't have that many! }
  870.   }
  871. }
  872.  
  873. on *:text:!inventory*:#:{
  874.   if ($p_status($.nick) == ready) {
  875.     if ($regex($2,/(T|H)Ms?/i)) {
  876.       set -l %sql SELECT * FROM p_tm WHERE name=' $+ $sql_esc($.nick) $+ '
  877.       set -l %query $sqlite_query(%pdb,%sql)
  878.       set -l %fetch $sqlite_fetch_row(%query,pinv,$SQLITE_ASSOC)
  879.       sqlite_free %query
  880.       var %x = 1, %y = $hget(pinv,0).item, %m, %t
  881.       while (%x <= %y) {
  882.         if ($hget(pinv,%x).item != name) && ($hget(pinv,$hget(pinv,%x).item)) { %m = $addtok(%m,$chr(32) $hget(pinv,%x).item ( $+ $v1 $+ ) $chr(32),45) }
  883.         if ($numtok(%m,45) > 9) {
  884.           .notice $nick $sql_re(%m)
  885.           %m = $null
  886.           inc %t
  887.         }
  888.         inc %x
  889.       }
  890.       if (%m) { .notice $nick $sql_re(%m) }
  891.       elseif (!%t) { .notice $nick You don't have any TM's. }
  892.     }
  893.     else {
  894.       set -l %sql SELECT * FROM p_inventory WHERE name=' $+ $sql_esc($.nick) $+ '
  895.       set -l %query $sqlite_query(%pdb,%sql)
  896.       set -l %fetch $sqlite_fetch_row(%query,pinv,$SQLITE_ASSOC)
  897.       sqlite_free %query
  898.       if (!$2) {
  899.         .notice $nick Cash $ $+ $bytes($hget(pinv,cash),b) - $p_cug($.nick).ball ( $+ $hget(pinv,pokeball) $+ ) - $p_cug($.nick).potion ( $+ $hget(pinv,potion) $+ )
  900.         .notice $nick Antidote ( $+ $hget(pinv,Antidote) $+ ) - Paralyze heal ( $+ $hget(pinv,Paralyze_32heal) $+ ) - Awakening ( $+ $hget(pinv,Awakening) $+ ) - Burn heal ( $+ $hget(pinv,Burn_32heal) $+ ) - Ice heal ( $+ $hget(pinv,Ice_32heal) $+ ) - Full heal ( $+ $hget(pinv,Full_32heal) $+ ) - Full restore ( $+ $hget(pinv,Full_32restore) $+ )
  901.         var %m = $iif($hget(pinv,bicycle),Bicycle ( $+ $v1 $+ ) ) $iif($hget(pinv,Masterball),Masterball ( $+ $v1 $+ ) ) $iif($hget(pinv,Rare_32candy),Rare Candy ( $+ $v1 $+ ) ) $iif($hget(pinv,Gold_32Nugget),Gold Nugget ( $+ $v1 $+ ) )
  902.         if (%m) { .notice $nick $regsubex(%m,/(\x29)\s(.)/g,\1 - \2) }
  903.       }
  904.       else {
  905.         var %x = 1, %n, %m, %i
  906.         if (*ball* iswm $2) { %i = Pokeball,Masterball }
  907.         if (* $+ $2 $+ * iswm *equipment*hold*) { %i = Thunder_32stone,Fire_32stone,Water_32stone,Leaf_32stone,Sun_32stone,Moon_32stone,Oval_32stone,Dusk_32stone,Dawn_32stone,Shiny_32stone,Dragon_32scale,Metal_32coat,King_39s_32Rock,Attack_32up,Defense_32up,Special_32up,Black_32belt,BlackGlasses,Magnet,Spell_32tag,Poison_32Barb,Sharp_32beak,Silk_32Scarf,SilverPowder,Soft_32Sand,TwistedSpoon,NeverMeltIce,Hard_32Stone,Leftovers,Shell_32Bell,Muscle_32band,Scope_32lens,Wide_32lens,Wise_32Glasses,Quick_32claw,Amulet_32Coin }
  908.         elseif (spec* iswm $2) { %i = Bicycle,Rare_32candy,Gold_32nugget,Blue_32shard,Red_32shard,Yellow_32shard,Green_32shard,Black_32Apricorn,White_32Apricorn,Blue_32Apricorn,Green_32Apricorn,Yellow_32Apricorn,Red_32Apricorn }
  909.         while (%x <= $numtok(%i,44)) {
  910.           %n = $gettok(%i,%x,44)
  911.           if ($hget(pinv,%n)) { %m = $addtok(%m,$chr(32) $iif(%n == Pokeball,$p_cug($.nick).ball,%n) ( $+ $hget(pinv,%n) $+ ) $chr(32),45) }
  912.           if ($numtok(%m,45) > 7) {
  913.             .notice $nick $sql_re(%m)
  914.             %m = $null
  915.           }
  916.           inc %x
  917.         }
  918.         if (%m) { .notice $nick $sql_re(%m) }
  919.       }
  920.     }
  921.   }
  922. }
  923. on *:text:!use*:#:{
  924.   if ($p_status($.nick) == ready) {
  925.     var %p = $pokemon($iif($4,$4-,$3-)).name, %i = $p_item($iif($4,$iif($p_item($2 $3).name,$2 $3,$2),$2)).name
  926.     if (!%p) { .notice $nick That isn't a pokemon! }
  927.     elseif (!%i) { .notice $nick That isn't an item! }
  928.     elseif ($p_item($.nick,%i) < 1) { .notice $nick You don't have a %i $+ ! }
  929.     elseif ($has_pokemon($.nick,%p) != has) { .notice $nick You don't have a %p $+ ! }
  930.     else {
  931.       if (%i == rare candy) {
  932.         noop $p_+exp(rare candy,%p)
  933.         p_item $.nick Rare_32candy -1          
  934.       }
  935.       elseif ($regex($2,/(T|H)M\d\d/i)) {
  936.         if (%i !isin $read(txt/pokemon/tmcom.txt,w,%p $+ *)) { .notice $nick %p can't learn that! }
  937.         else {
  938.           set -l %sql SELECT * FROM $sql_esc($.nick) WHERE pokemon=' $+ $sql_esc(%p) $+ '
  939.           set -l %query $sqlite_query(%pdb,%sql)
  940.           set -l %fetch $sqlite_fetch_row(%query,pkexp,$SQLITE_ASSOC)
  941.           var %m1 = $hget(pkexp,m1), %m2 = $hget(pkexp,m2), %m3 = $hget(pkexp,m3), %m4 = $hget(pkexp,m4), %mlist = $+(%m1,$chr(44),%m2,$chr(44),%m3,$chr(44),%m4)
  942.           var %nm = $tm(%i)
  943.           if ($istok($sql_re(%mlist),%nm,44)) { .notice $nick %p already knows that move! }
  944.           else {
  945.             p_item $.nick %i -1
  946.             if ($numtok(%mlist,44) < 4) {
  947.               msg $chan $sql_re(%p) learned %nm $+ !
  948.               sqlite_exec %pdb UPDATE $sql_esc($.nick) SET $+(m,$calc($numtok(%mlist,44) + 1)) =' $+ $sql_esc(%nm) $+ ' WHERE pokemon=' $+ $sql_esc(%p) $+ '
  949.             }
  950.             else {
  951.               msg $chan $sql_re(%p wants to learn %nm [Current moves: %m1 $+ $chr(44) %m2 $+ $chr(44) %m3 $+ $chr(44) %m4 $+ ] - Type !forget <name> and !pokemove <name> to see stats.)
  952.               p_mark $.nick $+(%p,|,%m1,$chr(44),%m2,$chr(44),%m3,$chr(44),%m4,$chr(44),%nm)
  953.               p_status $.nick tm
  954.             }
  955.           }
  956.         }
  957.       }
  958.       else { .notice $nick That doesn't do anything }
  959.     }
  960.   }
  961. }
  962. on *:text:!pokeitem*:#:{
  963.   if ($p_item($2-).name) {
  964.     tokenize 9 $p_item($2-).desc
  965.     msg $chan $1 [Type: $2 $+ ] $6
  966.   }
  967. }
  968. alias p_getitem {
  969.   set -l %sql SELECT name FROM p_items WHERE type LIKE $+('%,$1,$(%',0)) ORDER BY RANDOM() LIMIT 1
  970.   set -l %query $sqlite_query(%pdb,%sql)
  971.   set -l %fetch $sqlite_fetch_row(%query,pgitem,$SQLITE_ASSOC)
  972.   sqlite_free %query
  973.   var %x = $sql_re($hget(pgitem,name))
  974.   if ($hget(pgitem)) { hfree pgitem }
  975.   return %x
  976. }
  977. alias p_item {
  978.   var %t = $iif($regex($2,/^(T|H)M/i),p_tm,p_inventory), %f = $iif($regex($1,/^(T|H)M/i),txt/pokemon/tms.txt,txt/pokemon/items.txt)
  979.   if ($isid) {
  980.     if ($prop == name) { return $gettok($read(%f,w,* $+ $1 $+ *),1,9) }
  981.     if ($prop == type) { return $gettok($read(txt/pokemon/items.txt,w,* $+ $1 $+ *),2,9) }
  982.     if ($prop == cost) { return $gettok($read(%f,w,* $+ $1 $+ *),3,9) }
  983.     if ($prop == desc) { return $read(txt/pokemon/items.txt,w,* $+ $1 $+ *) }
  984.     set -l %sql SELECT $sql_esc($2) FROM %t WHERE name=' $+ $sql_esc($1) $+ '
  985.     set -l %query $sqlite_query(%pdb,%sql)
  986.     set -l %fetch $sqlite_fetch_row(%query,pitem,$SQLITE_ASSOC)
  987.     sqlite_free %query
  988.     var %x = $hget(pitem,$sql_esc($2))
  989.     if ($hget(pitem)) { hfree pitem }
  990.     return %x
  991.   }
  992.   sqlite_exec %pdb UPDATE %t SET $sql_esc($2) $+ = $sql_esc($2) $iif($3,$3,+1) WHERE name=' $+ $sql_esc($1) $+ '
  993. }
  994. alias p_iug {
  995.   if ($prop == cost) { var %x = $replacex($1,Pokeball,10000,Greatball,20000,Potion,5000,Super Potion,25000,Hyper Potion,50000) }
  996.   else { var %x = $replacex($1,Pokeball,Greatball,Greatball,Ultraball,Ultraball,$null,Potion,Super Potion,Super Potion,Hyper Potion,Hyper Potion,Max Potion,Max Potion,$null) }
  997.   return %x
  998. }
  999. alias p_cug {
  1000.   set -l %sql SELECT * FROM p_inventory WHERE name=' $+ $sql_esc($1) $+ '
  1001.   set -l %query $sqlite_query(%pdb,%sql)
  1002.   set -l %fetch $sqlite_fetch_row(%query,pcug,$SQLITE_ASSOC)
  1003.   var %x = $iif($prop == ball,Pokeball,Potion)
  1004.   while ($hget(pcug,$sql_esc($p_iug(%x)))) { %x = $p_iug(%x) }
  1005.   if ($hget(pcug)) { hfree pcug }
  1006.   sqlite_free %query
  1007.   return %x
  1008. }
  1009. alias p_bmod {
  1010.   set -l %sql SELECT mod FROM p_items WHERE name=" $+ $sql_esc($1) $+ "
  1011.   set -l %query $sqlite_query(%pdb,%sql)
  1012.   set -l %fetch $sqlite_fetch_row(%query,pbmod,$SQLITE_ASSOC)
  1013.   var %x = $hget(pbmod,mod)
  1014.   if ($hget(pcug)) { hfree pcug }
  1015.   sqlite_free %quest
  1016.   return %x
  1017. }
  1018. alias p_type {
  1019.   if (/ isin $1) { return $max($p_typex($gettok($1,1,47),$2),$p_typex($gettok($1,2,47),$2)) }
  1020.   else { return $p_typex($1,$2) }
  1021. }
  1022. alias p_typex {
  1023.   set -l %sql SELECT * FROM p_types WHERE type=' $+ $1 $+ '
  1024.   set -l %query $sqlite_query(%pdb,%sql)
  1025.   set -l %fetch $sqlite_fetch_row(%query,ptype,$SQLITE_ASSOC)
  1026.   sqlite_free %query
  1027.   tokenize 47 $2
  1028.   if ($2) {
  1029.     var %x = $calc($hget(ptype,$1) + $hget(ptype,$2))
  1030.     return $p_typec(%x).dual
  1031.   }
  1032.   else { return $p_typec($hget(ptype,$1)) }
  1033. }
  1034. alias p_typec {
  1035.   if ($prop == dual) { return $replacex($1,2,0,3,0,5,0,9,0,4,.25,6,.5,10,1,8,1,12,2,16,4) }
  1036.   return $replacex($1,1,0,2,.5,4,1,8,2)
  1037. }
  1038. on *:text:!pokemon*:#:{
  1039.   var %a
  1040.   if ($2 isnum) { set -l %sql SELECT pokemon, lvl, pv FROM $sql_esc($.nick) WHERE lvl BETWEEN $2 AND 99 ORDER BY lvl ASC }
  1041.   else { set -l %sql SELECT pokemon, lvl, pv FROM $sql_esc($.nick) ORDER BY lvl ASC }
  1042.   set -l %query $sqlite_query(%pdb,%sql)
  1043.   while ($sqlite_fetch_row(%query,listp,$SQLITE_ASSOC)) {
  1044.     whilefix
  1045.     if ($2 isnum) {
  1046.       if ($hget(listp,lvl) > 9) {  %a = $addtok(%a,$p_shiny($.nick,$hget(listp,pv)) $sql_re($hget(listp,pokemon) $iif($p_rare($hget(listp,pokemon)),[Rare]) $+ $iif($p_uncom($hget(listp,pokemon)),[Uncommon]) ( $+ $hget(listp,lvl) $+ )),44) }
  1047.     }
  1048.     else { %a = $addtok(%a,$p_shiny($.nick,$hget(listp,pv)) $sql_re($hget(listp,pokemon) $iif($p_rare($hget(listp,pokemon)),[Rare]) $+ $iif($p_uncom($hget(listp,pokemon)),[Uncommon]) ( $+ $hget(listp,lvl) $+ )),44) }
  1049.     if ($numtok(%a,44) > 24) {
  1050.       .notice $nick %a
  1051.       %a = $null
  1052.     }
  1053.   }
  1054.   if (%a) { .notice $nick %a }
  1055.   sqlite_free %query
  1056. }
  1057. on $*:text:/^!(poke)?dex(stat)?\s/i:#:{
  1058.   var %x = $pokemon($2-), %a = $replace($gettok($read(txt/pokemon/abilitylist.txt,w,$pokemon($2-).name $+ *),2,9),$chr(44),/), %e = $p_ep($pokemon($2-).name), %l = $regsubex($($regsubex($gettok($read(txt/pokemon/area.txt,w,* $+ $pokemon($2-).name),1,9),/(\d+)/g,$!p_loc( $+ \1 $+ ).name $!+ $!chr(44)),2),/(\x2C$)/,)
  1059.   if (%x) {
  1060.     msg $chan $iif($p_rare($2-),[Rare]) $iif($p_uncom($2-),[Uncommon]) $pokemon($2-).fmt [Height: $p_height($2-) $+ ] [Weight: $p_weight($2-) $+ ] [Ability: %a $+ ] [Evolution: $iif(%e,%e,Does not evolve) $+ ] $iif($has_pokemon($.nick,$2-),[Locations: %l $+ ])
  1061.     if (*stat* iswm $1) { msg $chan $pokemon($2-).name Base stats - [HP: $gettok(%x,4,9) Atk: $gettok(%x,5,9) Def: $gettok(%x,6,9) Sp.Atk: $gettok(%x,7,9) Sp.Def: $gettok(%x,8,9) Spd: $gettok(%x,9,9) $+ ]  }
  1062.   }
  1063. }
  1064. on *:text:!pokestat*:#:{
  1065.   if ($p_status($.nick)) {
  1066.     if ($2) && ($has_pokemon($.nick,$2-) != has) { .notice $nick You don't have a $2- $+ , $.nick $+ . }
  1067.     else { msg $chan $p_statfmt($.nick,$p_stat($.nick,$iif($2-,$pokemon($2-).name,$p_active($.nick)))) }
  1068.   }
  1069. }
  1070. alias p_statfmt {
  1071.   tokenize 9 $1 $+ $chr(9) $sql_re($filltok($replace($2,*,$chr(9)),-,9))
  1072.   return $p_shiny($1,$3) $2 ( $+ $12 $+ ) [Exp: $13 $+ / $+ $p_exp($calc($12 + 1)) $+ ] [Type: $pokemon($2).type $+ ] [Nature: $5 $+ ] [Ability: $4 $+ ] [HP: $14 $+ ] [Atk: $15 $+ ] [Def: $16 $+ ] [Sp.Atk: $17 $+ ] [Sp.Def: $18 $+ ] [Spd: $19 $+ ] [Attacks: $8 $+ $iif($9 != -,$chr(44) $9) $+ $iif($10 != -,$chr(44) $10,) $+ $iif($11 != -,$chr(44) $11) $+ ] $iif($7 != -,[Holding: $sql_re($7) $+ ])
  1073. }
  1074. alias p_stat {
  1075.   var %x = $pokemon($2).name, %t = txt/pokemon/pstat $+ $ticks
  1076.   set -l %sql SELECT * FROM $sql_esc($1) WHERE pokemon=' $+ $sql_esc(%x) $+ '
  1077.   set -l %query $sqlite_query(%pdb,%sql)
  1078.   set -l %fetch $sqlite_fetch_all(%query,%t)
  1079.   if (!%fetch) { return error %sqlite_errstr }
  1080.   sqlite_free %query
  1081.   .timer 1 1 .remove %t
  1082.   %x = $filltok($read(%t,1),-,9)
  1083.   if ($prop == lvl) { return $gettok(%x,11,9) }
  1084.   if ($prop == exp) { return $gettok(%x,12,9) }
  1085.   if ($prop == vs) { return $pokemon($gettok(%x,1,9)).type $+ $chr(9) $+ $gettok(%x,13-18,9) }
  1086.   return %x
  1087. }
  1088. on *:text:!pokemove*:#:{
  1089.   tokenize 44 $replace($regsubex($2-,/\x2C(\s)/x,$chr(44)),*,.+?)
  1090.   if ($len($1) >= 3) {
  1091.     filter -cffg txt/pokemon/attacks.txt txt/pokemon/temp.txt /^[^\x09]*( $regsubex($1,/(\s)/g,.*) )(.+?)/ix
  1092.     if ($len($2) >= 3) { filter -ffg txt/pokemon/attacks.txt txt/pokemon/temp.txt /^[^\x09]*( $regsubex($2,/(\s)/g,.*) )(.+?)/ix }
  1093.     if ($len($3) >= 3) { filter -ffg txt/pokemon/attacks.txt txt/pokemon/temp.txt /^[^\x09]*( $regsubex($3,/(\s)/g,.*) )(.+?)/ix }
  1094.     if ($len($4) >= 3) { filter -ffg txt/pokemon/attacks.txt txt/pokemon/temp.txt /^[^\x09]*( $regsubex($4,/(\s)/g,.*) )(.+?)/ix }
  1095.     .fopen pmove txt/pokemon/temp.txt
  1096.     while ($fread(pmove)) {
  1097.       var %x = $v1
  1098.       msg $chan $iif($read(txt/pokemon/tms.txt,w,* $+ $gettok(%x,1,9) $+ *),( $+ $gettok($v1,1,9) $+ ) ) $pokemove(%x)
  1099.     }
  1100.     .fclose pmove
  1101.   }
  1102. }
  1103. alias pokemove {
  1104.   if ($2) { var %t = $2 }
  1105.   tokenize 9 $read(txt/pokemon/attacks.txt,w,$1 $+ *)
  1106.   if ($prop == name) { return $1 }
  1107.   if ($prop == type) { return $2 }
  1108.   if (cat* iswm $prop) { return $3 }
  1109.   if ($prop == power) { return $4 }
  1110.   if (acc* iswm $prop) { return $5 }
  1111.   if ($prop == pp) { return $6 }
  1112.   if ($prop == effect) { return $7 }
  1113.   if (prob* iswm $prop) { return $8 }
  1114.   if ($prop == rating) {
  1115.     return $calc(((3 + $rand(1,3) - $rand(1,3)) + ($replace($3,status,1,physical,1.5,special,2) * $+(1.,$rand(0,5))) + (((50 - $6) * .1) + $rand(1,5) - $rand(1,5)) $iif($4 != -,+ ($+(.,$rand(1,2)) * $4)) $iif($5 != -,+ ($+(.,$rand(1,15)) * $5)) $iif($8 != -,+ ($8 * .1))) $iif($2 isin %t,* 1.5))
  1116.   }
  1117.   if ($1) {
  1118.     return $1 [Type: $2 $+ ] [Category: $3 $+ ] $iif($4 != -,[Power: $4 $+ ]) $iif($5 != -,[Accuracy: $5 $+ ]) [PP: $6 $+ ] $iif($7 != -,[Effect: $iif($8 != -,$8 $+ % chance -) $7 $+ ])
  1119.   }
  1120. }
  1121. alias p_movesel {
  1122.   var %x = 1, %y = $numtok($2-,9), %t = $pokemon($1).type, %a, %cr, %m, %r = 0
  1123.   while (%x <= %y) {
  1124.     %a = $gettok($2-,%x,9)
  1125.     %cr = $pokemove(%a,%t).rating
  1126.     if (%cr > %r) { var %m = %a, %r = %cr }
  1127.     inc %x
  1128.   }
  1129.   return %m
  1130. }
  1131. on $*:text:/^!((T|H)M\d\d)(\slist)?$/i:#:{
  1132.   if ($2 == list) {
  1133.     var %a
  1134.     filter -cff txt/pokemon/tmcom.txt txt/pokemon/temp.txt * $+ $regml(1) $+ *  
  1135.     .fopen tmcom txt/pokemon/temp.txt
  1136.     while ($fread(tmcom)) {
  1137.       %a = $addtok(%a,$gettok($v1,1,9),44)
  1138.       if ($numtok(%a,44) > 14) {
  1139.         msg $chan %a
  1140.         %a = $null
  1141.       }
  1142.     }
  1143.     .fclose tmcom
  1144.     if (%a) { msg $chan %a }
  1145.   }
  1146.   else { msg $chan ( $+ $upper($regml(1)) $+ ) $pokemove($tm($regml(1))) }
  1147. }
  1148. alias tm {
  1149.   if ($1 isnum 1-3) {
  1150.     var %f = txt/pokemon/tm $+ $ticks, %a
  1151.     filter -ffg txt/pokemon/tms.txt %f /\x09( $1 )$/x
  1152.     %a = $read(%f)
  1153.     .remove %f
  1154.     return $gettok(%a,1,9)
  1155.   }
  1156.   tokenize 9 $read(txt/pokemon/tms.txt,w,$1 $+ *)
  1157.   if ($prop == r) { return $3 }
  1158.   if ($1) { return $2 }
  1159. }
  1160. on *:text:!ability*:#:{
  1161.   tokenize 9 $read(txt/pokemon/ability.txt,w,$2- $+ *)
  1162.   if ($1) { msg $chan $1 $+ : $2 }
  1163. }
  1164. on *:text:!nature*:#:{
  1165.   var %x = $replace($read(txt/pokemon/nature.txt,wn,$2- $+ *),%,$null)
  1166.   if (%x) {
  1167.     tokenize 32 %x
  1168.     msg $chan $1 $+ : $iif($2,+ $+ $2 - $+ $3,No effect)
  1169.   }
  1170.   else {
  1171.     var %a, %n = $2
  1172.     filter -cffg txt/pokemon/nature.txt txt/pokemon/temp.txt /\s% $2 \s/ix
  1173.     .fopen nature txt/pokemon/temp.txt
  1174.     while ($fread(nature)) {
  1175.       tokenize 32 $remove($v1,%)
  1176.       %a = $addtok(%a,$chr(32) $1 $+ : - $+ $3,44)
  1177.     }
  1178.     .fclose nature
  1179.     msg $chan + $+ $upper($2) natures: %a
  1180.   }
  1181. }
  1182. alias p_shiny {
  1183.   if (!$3) {
  1184.     set -l %sql SELECT id, sid FROM p_players WHERE name=" $+ $sql_esc($1) $+ "
  1185.     set -l %query $sqlite_query(%pdb,%sql)
  1186.     set -l %fetch $sqlite_fetch_row(%query,pshiny,$SQLITE_ASSOC)
  1187.     tokenize 32 $hget(pshiny,id) $hget(pshiny,sid) $2
  1188.   }
  1189.   var %x = $xor($xor($1,$2),$xor($base($left($base($3,10,2),16),2,10),$base($right($base($3,10,2),16),2,10)))
  1190.   if (%x < 8) { msg #Flip shiny! }
  1191.   return $iif(%x < 8,Shiny)
  1192. }
  1193. alias p_height {
  1194.   noop $read(txt/pokemon/height.txt,w,* $+ $1- $+ *)
  1195.   return $gettok($read(txt/pokemon/height.txt,$readn),1,9)
  1196. }
  1197. alias p_weight { return $gettok($read(txt/pokemon/weight.txt,w,$1- $+ *),2,9) }
  1198. alias p_active {
  1199.   if ($isid) { return $p_player($1,active) }
  1200.   sqlite_exec %pdb UPDATE p_players SET active=' $+ $sql_esc($2-) $+ ' WHERE name=' $+ $sql_esc($1) $+ '
  1201. }
  1202. alias p_team {
  1203.   if ($isid) { return $p_player($1,team) }
  1204.   sqlite_exec %pdb UPDATE p_players SET team=' $+ $sql_esc($2-) $+ ' WHERE name=' $+ $sql_esc($1) $+ '
  1205. }
  1206. alias p_status {
  1207.   if ($isid) { return $p_player($1,status) }
  1208.   sqlite_exec %pdb UPDATE p_players SET status=' $+ $sql_esc($2) $+ ' WHERE name=' $+ $sql_esc($1) $+ '
  1209. }
  1210. alias p_mark {
  1211.   if ($isid) { return $p_player($1,mark) }
  1212.   sqlite_exec %pdb UPDATE p_players SET mark=' $+ $sql_esc($2-) $+ ' WHERE name=' $+ $sql_esc($1) $+ '
  1213. }
  1214. alias p_daycare {
  1215.   if ($isid) { return $p_player($1,daycare) }
  1216.   sqlite_exec %pdb UPDATE p_players SET daycare=' $+ $sql_esc($2-) $+ ' WHERE name=' $+ $sql_esc($1) $+ '
  1217. }
  1218. alias p_ps {
  1219.   if ($isid) { return $p_player($1,$2) }
  1220.   sqlite_exec %pdb UPDATE p_players SET $2 = $2 + 1 WHERE name=' $+ $sql_esc($1) $+ '
  1221. }
  1222. alias p_player {
  1223.   if ($isid) {
  1224.     set -l %sql SELECT $2 FROM p_players WHERE name=' $+ $sql_esc($1) $+ '
  1225.     set -l %query $sqlite_query(%pdb,%sql)
  1226.     set -l %fetch $sqlite_fetch_row(%query,player,$SQLITE_ASSOC)
  1227.     var %x = $iif($sql_re($hget(player,$2)),$v1,none)
  1228.     sqlite_free %query
  1229.     if ($hget(player)) { hfree player }
  1230.     return %x
  1231.   }
  1232.   else { sqlite_exec %pdb UPDATE p_players SET $2 =' $+ $sql_esc($3) $+ ' WHERE name=' $+ $sql_esc($1) $+ ' }
  1233. }
  1234. alias p_noncom { return $p_ini(cr,$1) }
  1235. alias p_ini {
  1236.   if ($isid) { return $readini(txt/pokemon/pokemon.ini,$1,$2) }
  1237.   else { writeini txt/pokemon/pokemon.ini $1 $2 $3 }
  1238. }
  1239. on *:text:*:#:{  
  1240.   if ($p_status($.nick) == choiceadv) && ($regex($1-,/^( $gettok($p_mark($.nick),1,42) )$/ix)) {
  1241.     var %m = $p_mark($.nick), %adv = $gettok(%m,2,42)
  1242.     if ($1 == leave) {
  1243.       msg $chan $nick $+ : You decide to leave and continue exploring.
  1244.       p_status $.nick ready
  1245.     }
  1246.     elseif (%adv isnum 11-30) || (%adv isnum 36-37) {
  1247.       var %i = $gettok(%m,3,42), %c = $gettok(%m,4,42)
  1248.       if ($1 == buy) {
  1249.         if ($p_item($.nick,cash) >= %c) {
  1250.           msg $chan $nick $+ : You buy the %i and continue on your journey.
  1251.           p_item $.nick $sql_esc(%i) +1
  1252.           p_item $.nick cash - $+ %c
  1253.           p_status $.nick ready
  1254.         }
  1255.         else { msg $chan $nick $+ : You don't have enough cash, so you continue on your journey. }
  1256.         p_status $.nick ready
  1257.       }
  1258.     }
  1259.     elseif (%adv == 38) {
  1260.       var %c = $gettok(%m,3,42)
  1261.       if ($p_item($.nick,cash) > %c) {
  1262.         msg $chan $nick $+ : You buy the $upper($1) and continue on your journey.
  1263.         p_item $.nick $upper($1) +1
  1264.         p_item $.nick cash - $+ %c
  1265.       }
  1266.       else { msg $chan $nick $+ : You don't have enough cash, so you continue on your journey. }
  1267.       p_status $.nick ready
  1268.     }
  1269.     elseif (%adv == daycare) {
  1270.       var %t = $p_team($.nick)
  1271.       if ($1 == yes) {
  1272.         if ($numtok(%t,124) < 6) {
  1273.           var %dcl = $calc($p_player($.nick,dcl) * 1000)
  1274.           if ($p_item($.nick,cash) < %dcl) { .notice $nick You don't have enough to pay The Daycare lady! }
  1275.           else {
  1276.             .notice $nick You take $p_daycare($.nick) with you.
  1277.             p_team $.nick $addtok(%t,$p_daycare($.nick),124)
  1278.             p_player $.nick dcl 0
  1279.             p_item $.nick cash - $+ %dcl
  1280.             p_daycare $.nick
  1281.           }
  1282.         }
  1283.         else { .notice $nick You don't have room in your team! }
  1284.       }
  1285.       elseif ($1 == no) { .notice $nick You leave The Daycare lady's house. }
  1286.       else {
  1287.         .notice $nick You let $1 stay with The daycare lady.
  1288.         p_team $.nick $remtok(%t,$1,1,124)
  1289.         p_daycare $.nick $pokemon($1).name
  1290.         if ($1 == $p_active($.nick)) { p_active $.nick $gettok($p_team($.nick),1,124) }
  1291.       }
  1292.       p_status $.nick ready
  1293.     }
  1294.   }
  1295. }
  1296. #pokemon end
  1297. alias p_reset {
  1298.   var %x = $iif($.nick($1).check,$.nick($1),$1)
  1299.   sqlite_exec %pdb DELETE FROM p_pokemon WHERE name=' $+ $sql_esc(%x) $+ '
  1300.   sqlite_exec %pdb DELETE FROM p_players WHERE name=' $+ $sql_esc(%x) $+ '
  1301.   sqlite_exec %pdb DELETE FROM p_inventory WHERE name=' $+ $sql_esc(%x) $+ '
  1302.   sqlite_exec %pdb DELETE FROM p_badges WHERE name=' $+ $sql_esc(%x) $+ '
  1303.   sqlite_exec %pdb DROP TABLE $sql_esc(%x)
  1304.   msg $chan %x reset
  1305. }
  1306. alias db_additem {
  1307.   var %a = $read(txt/pokemon/items.txt,w,$1- $+ *)
  1308.   sqlite_exec %pdb ALTER TABLE p_inventory ADD $sql_esc($1-) varchar(3) default 0
  1309.   sqlite_exec %pdb INSERT INTO p_items VALUES (' $+ $replace($filltok($sql_esc(%a),-,9),$chr(9),' $+ $chr(44) $+ ') $+ ')
  1310. }
  1311. alias db_flushitems {
  1312.   sqlite_exec %pdb DROP TABLE p_items
  1313.   sqlite_exec %pdb CREATE TABLE p_items (name varchar(20), type varchar(20), cost varchar(10), mod varchar(10), effect varchar(15), desc varchar(200))
  1314.   var %x = 1, %y = $lines(txt/pokemon/items.txt), %a
  1315.   while (%x <= %y) {
  1316.     %a = $read(txt/pokemon/items.txt,%x)
  1317.     sqlite_exec %pdb INSERT INTO p_items VALUES (' $+ $replace($filltok($sql_esc(%a),-,9),$chr(9),' $+ $chr(44) $+ ') $+ ')
  1318.     inc %x
  1319.   }
  1320. }
  1321. alias _pdb {
  1322.  
  1323. }
  1324. alias gendb {
  1325.   var %sql.db = $sqlite_open(txt/pokemon/pokemon.new.db3)
  1326.   sqlite_begin %sql.db
  1327.   sqlite_exec %sql.db CREATE TABLE p_players (name varchar(20), id varcahr(6), sid varchar(6), loc varchar(5), active varchar(20), team varchar(150), status varchar(10), attempts varchar(7), battles varchar(3), wins varchar(7), mark varchar(250), daycare varchar(20))
  1328.   sqlite_exec %sql.db CREATE TABLE p_badges (name varchar(20))
  1329.   sqlite_exec %sql.db CREATE TABLE p_pokemon (name varchar(20))
  1330.   var %x = 1, %y = $lines(txt/pokemon/pokemon.txt), %a
  1331.   while (%x <= %y) {
  1332.     %a = $gettok($read(txt/pokemon/pokemon.txt,%x),2,9)
  1333.     sqlite_exec %sql.db ALTER TABLE p_pokemon ADD $sql_esc(%a) char(1)
  1334.     inc %x
  1335.   }
  1336.   sqlite_exec %sql.db CREATE TABLE p_types (type varchar(8),Bug varchar(2),Fighting varchar(2),Flying varchar(2),Ghost varchar(2),Ground varchar(2),Normal varchar(2),Poison varchar(2),Rock varchar(2),Steel varchar(2),Dark varchar(2),Dragon varchar(2),Electric varchar(2),Fire varchar(2),Grass varchar(2),Ice varchar(2),Psychic varchar(2),Water varchar(2))
  1337.   var %x = 2, %y = $lines(txt/pokemon/resource/chart.txt), %a
  1338.   while (%x <= %y) {
  1339.     %a = $replace($read(txt/pokemon/resource/chart.txt,%x),;,' $+ $chr(44) $+ ')
  1340.     sqlite_exec %sql.db INSERT INTO p_types (type,Bug,Fighting,Flying,Ghost,Ground,Normal,Poison,Rock,Steel,Dark,Dragon,Electric,Fire,Grass,Ice,Psychic,Water) VALUES (' $+ %a $+ ')
  1341.     inc %x
  1342.   }
  1343.   sqlite_exec %sql.db CREATE TABLE p_inventory (name varchar(20), Cash varchar(20))
  1344.   sqlite_exec %sql.db CREATE TABLE p_items (name varchar(20), type varchar(20), cost varchar(10), mod varchar(10), effect varchar(15), desc varchar(200))
  1345.   var %x = 1, %y = $lines(txt/pokemon/items.txt), %a
  1346.   while (%x <= %y) {
  1347.     %a = $read(txt/pokemon/items.txt,%x)
  1348.     sqlite_exec %sql.db ALTER TABLE p_inventory ADD $sql_esc($gettok(%a,1,9)) varchar(3) default 0
  1349.     sqlite_exec %sql.db INSERT INTO p_items VALUES (' $+ $replace($filltok($sql_esc(%a),-,9),$chr(9),' $+ $chr(44) $+ ') $+ ')
  1350.     inc %x
  1351.   }
  1352.   var %x = 1, %y = $lines(txt/pokemon/tms.txt), %a
  1353.   sqlite_exec %sql.db CREATE TABLE p_tm (name varchar(20))
  1354.   while (%x <= %y) {
  1355.     %a = $gettok($read(txt/pokemon/tms.txt,%x),1,9)
  1356.     sqlite_exec %sql.db ALTER TABLE p_tm ADD %a varchar(3) default 0
  1357.     inc %x
  1358.   }
  1359.   sqlite_exec %sql.db CREATE TABLE p_learnset (name varchar(50))
  1360.   %x = 1
  1361.   while (%x <= 99) {
  1362.     sqlite_exec %sql.db ALTER TABLE p_learnset ADD l $+ %x varchar(20)
  1363.     inc %x
  1364.   }
  1365.   var %x = 1, %y = $lines(txt/pokemon/learnset.txt), %a, %n, %t
  1366.   while (%x <= %y) {
  1367.     %a = $read(txt/pokemon/learnset.txt,%x)
  1368.     tokenize 9 %a
  1369.     %n = 1
  1370.     %t = $numtok($2,44)
  1371.     sqlite_exec %sql.db INSERT INTO p_learnset (name) VALUES (' $+ $replace($sql_esc($1),_44,*) $+ ')
  1372.     while (%n <= %t) {
  1373.       sqlite_exec %sql.db UPDATE p_learnset SET l $+ $replace($gettok($2,%n,44),|,=') $+ ' WHERE name=' $+ $replace($sql_esc($1),_44,*) $+ '
  1374.       inc %n
  1375.     }
  1376.     inc %x
  1377.   }
  1378.   sqlite_commit %sql.db
  1379.   sqlite_close %sql.db
  1380. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement