you can add it / modify it here
http://subversion.assembla.com/svn/ClientSide/Lua_Project/lua%20files/stateicon/stateiconinfo.lua
some might need some edit in this files too
trunk/src/map/status.c
if( compare( strcharinfo(3),"prontera" ) || compare( strcharinfo(3),"payon" ) || compare( strcharinfo(3),"morocc" ){
openstorage;
}else{
dispbottom "You cant use at this map.";
}
end;
the method that Euphy show you is a simplified way for just Guild Castle maps.....
and compare cant support multiple parameters.
just put the item database / contents inside it and load it normally like you do in item_db.txt or others..
the different is just the item_db2.txt will overwrite the contents in item_db.txt if both file contain similar database.
i belive your should remove it through the Source mod...
if you simply remove a message from the msg_athena..
i think it might have chances to resulting random crash when the client try to announce an empty string...
remove these...
trunk/src/map/pc.c
strcpy(tmp_soutput, (data == 0) ? msg_txt(502) : msg_txt(60)); // The day has arrived!
strcpy(tmp_soutput, (data == 0) ? msg_txt(503) : msg_txt(59)); // The night has fallen...
if( compare( strcharinfo(0),"[GM]" ) || compare( strcharinfo(0),"[ GM ]" ) ) end;
you can also use array + loop ....
save all "name" in array...and use loop to compare all name
if you want....you can try change the datatype in sql to "text" ...then it will be able to store more than 255 characters.
like i did in this script...
https://rathena.org/board/index.php?/files/file/2550-%7B?%7D/
otherwise, change your way to save the variable...like using bitmask...or etc....
maybe you should try show your zeny.php ?
and these php command ...or query....should be done in the modules folder..the themes folder just for html / php tag to display the contents.