diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-07 15:28:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-07 15:28:28 -0300 |
commit | 4e1594bf4f027493cadd6a408b36d0ec10803d73 (patch) | |
tree | 3cce655b72abf8db922e497f86eb17edd457eadc /npc | |
parent | 0eaa0129e7d218b058c34fab9853b1d38853e6b9 (diff) | |
download | serverdata-4e1594bf4f027493cadd6a408b36d0ec10803d73.tar.gz serverdata-4e1594bf4f027493cadd6a408b36d0ec10803d73.tar.bz2 serverdata-4e1594bf4f027493cadd6a408b36d0ec10803d73.tar.xz serverdata-4e1594bf4f027493cadd6a408b36d0ec10803d73.zip |
...But it will NOT give you any equip.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/029-0/event.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/npc/029-0/event.txt b/npc/029-0/event.txt index 4af454c62..490d72a1d 100644 --- a/npc/029-0/event.txt +++ b/npc/029-0/event.txt @@ -249,11 +249,9 @@ L_PowerUp: next; mesc l("Awake lost potential? This will mess with your char data irreversibly, beware."), 1; if (askyesno() == ASK_NO) close; - .@equip=true; + // IP Blacklist - if (array_find($@IPBLIST$, getcharip()) >= 0) - .@equip=false; - else + if (array_find($@IPBLIST$, getcharip()) < 0) array_push($@IPBLIST$, getcharip()); // Level up @@ -275,7 +273,7 @@ L_PowerUp: // Monster points MPQUEST=true; if (!Mobpt) - Mobpt+=1000000; + Mobpt+=100000; // Magic Power adddefaultskills(); |