diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-04-07 22:42:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-04-07 22:42:19 -0300 |
commit | eae179a2b611b5026e475ec6b73a3523787dbc9d (patch) | |
tree | 35a03f9013efc732980a639bdb87d03f967f48ea | |
parent | 6b4d062d8f38d471833b1af9bd02d41d7dc692d8 (diff) | |
download | serverdata-eae179a2b611b5026e475ec6b73a3523787dbc9d.tar.gz serverdata-eae179a2b611b5026e475ec6b73a3523787dbc9d.tar.bz2 serverdata-eae179a2b611b5026e475ec6b73a3523787dbc9d.tar.xz serverdata-eae179a2b611b5026e475ec6b73a3523787dbc9d.zip |
Try to fix Arnea
-rw-r--r-- | npc/003-10/arnea.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-10/arnea.txt b/npc/003-10/arnea.txt index 3467a14fa..6d158912e 100644 --- a/npc/003-10/arnea.txt +++ b/npc/003-10/arnea.txt @@ -37,7 +37,7 @@ L_NewArena: // Register to HTTable $@ARENAS (or override existing entry) your ID and a password //.@PASSWORD=(getcharid(0)**1.137); .@PASSWORD=(gettime(7)*4)+24+getcharid(0)+getcharid(3); - htput($@ARENAS, .@PASSWORD, getcharid(0)); + htput($@ARENAS, str(.@PASSWORD), getcharid(0)); // XXX - Important Note - XXX // map name MUST be only 4 chars long (eg. "abcd") on char instances @@ -77,7 +77,7 @@ L_JoinArena: mesq l("Okay, to join an arena, you need the unique password. Leave blank if you don't know."); input .@user_password; - .@m = htget($@ARENAS, .@user_password, -1); + .@m = htget($@ARENAS, str(.@user_password), -1); if (.@m > 0) { if(has_instance2("003-10@"+.@m)) { warp "AREN@"+str(.@m), 31,31; |