Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. Emistry

    PvP warper

    you can try this http://upaste.me/0eed591e5d14fac
  2. for those char who are bugged due to this problem..you have to update your SQL database ... update the char current hp to more than 0 ... the diff will only solve those future problem..not the previous 1...
  3. check Euphy topic in Script Release section if you are looking for his script
  4. Emistry

    RFYL

    change this if ( .@mapnvz$ == "quiz_01" && getmapusers("quiz_01") = 1 ) { into this if ( getmapusers("quiz_01") == 1 ) {
  5. http://trac.rathena.org/changeset/16363/rathena
  6. for that ....i remember i have seen it somewhere is bugreport ...and already fixed with some src mod.. just try browser the tracker and find it.. http://trac.rathena.org/timeline
  7. isnt inside the script also got 1 example for you set @Currency$,"#CASHPOINTS";
  8. remove these 2 line.. disablenpc "Baby Manager"; disablenpc "Novice Manager";
  9. OnPCLoginEvent: if( countitem(x) >= y ){ blbablablabalbala } end; x = itemID y = amount
  10. you cant add name in the rental items... in normal cases.. a rental item shouldnt have name / card inside it.
  11. you can add this below the header of the npc OnWhisperGlobal:
  12. remove this if( BaseClass == Job_Bard || BaseClass == Job_Dancer ){
  13. try this https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/atcommand.c change your @command code to this ACMD_FUNC(commands) { nullpo_retr(-1, sd); if ( ![sd->bl.m].flag.town ) { clif_displaymessage(fd, "This command can only use in Town Map"); return -1; } atcommand_commands_sub(sd, fd, COMMAND_ATCOMMAND); return 0; }
  14. be specify on your topic ? explain more ?
  15. you can try this if you want http://rathena.org/board/topic/56124-package-getitem-map-itemmap/
  16. http://rathena.org/wiki/Adding_a_Script
  17. - script Sample -1,{ OnNPCKillEvent: if( killedrid == 1288 && agitcheck() ) getitem 7227,1; end; }
  18. callfunc "Sample"; function script Sample { getmapxy( .@Map$,.@X,.@Y,0 ); if( getcharid(2) ){ warpguild .@Map$,.@X,.@Y,getcharid(2); announce "Player("+strcharinfo(0)+") clicked the scroll and recall his guild.",0; } end; }
×
×
  • Create New...