Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. try use getguildmaster and getguildmasterid
  2. http://supportmii.com/ro1/Clients/Weediff2012Pack_v5.7.7z
  3. 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
  4. add the savepoint to your job changer script.
  5. 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.
  6. if( strcharinfo(3) == "mapname" ) end; or http://pastebin.com/raw.php?i=2Wmym6JS
  7. it wont show up any elemental icon by default.... change it to SC_FIRE SC_WATER and etc... using sc_start
  8. 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.
  9. Emistry

    SQL Error

    trunk/sql-files/upgrades/upgrade_svn17080.sql trunk/sql-files/upgrades/upgrade_svn17080_log.sql trunk/sql-files/upgrades/upgrade_svn17086.sql trunk/sql-files/upgrades/upgrade_svn17086_log.sql
  10. change if((zeny < (.zenycost+(.@cardcount * .percardcost))) || (countitem(1000) < 1) || (countitem(715) < 1)) { to if( zeny < (.zenycost+(.@cardcount * .percardcost)) ) { and remove these delitem 1000,1; delitem 715,1;
  11. Emistry

    Msg_athena.

    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...
  12. you can try this http://rathena.org/board/topic/53320-%E3%80%90-emistry-%C2%A9-2013-%E3%80%91e-scripts-collection/page__st__40__p__71628#entry71628
  13. if( getgmlevel() && getgmlevel() < 80 )
  14. change the Emperium to plant type....or...copy the emperium database in RENEWAL mode...
  15. @caspa i dont think you uploaded the correct script... i cant find any line that is related to your problems that you shown in the mapserver....
  16. try this http://pastebin.com/raw.php?i=fjqacLvZ
  17. Emistry

    Item script

    try this ..........{ monster "this",-1,-1,"--ja--",1002,rand(5,10),""; },{},{}
  18. Emistry

    PVP ITEM DROP

    turn off the nightmare mapflag..or remove it.. trunk/conf/mapflag/nightmare.txt
  19. 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
  20. 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....
  21. waitingroom script command cant restrict job..but can restrict base level only.
  22. 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.
  23. tried this ? http://supportmii.com/ro1/Clients/Judas_Setups/2012_AI/
×
×
  • Create New...