Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. configure the log setting here. conf/log_athena.conf
  2. Please do not remove the contents after your issue solved.
  3. alway refer your map-server and check for error messages....
  4. sql-files/logs.sql
  5. if ( .@rate < rand( 100 ) ) { change to if ( .@rate < rand( 100 ) || KARMAPOINTS >= 95000 ) {
  6. If you want to sell, then use the IP Nexus. https://rathena.org/board/files/ This is not a valid release topic as you didnt have any thing released and allow member to download/buy it.
  7. Emistry

    Bug Relog

    make sure all the changes or update for database are applied when you use latest server file. sql-files/upgrades
  8. Emistry

    Bug Relog

    did you apply all the latest changes to SQL ??
  9. i think belong to this *transform <monster name/ID>,<duration>,<sc type>{,<val1>,<val2>,<val3>,<val4>}; This command will turn a player into a monster for a given duration and grants an SC attribute effect while transformed. Note that players cannot be transformed during War of Emperium or if already disguised.
  10. .@amount = countitem( 7420 ); delitem 7420,.@amount; getitem 7420,.@amount; // <<--- correct the variable name.
  11. these are the solution you can try. permanent mob spawn = set the range of mob spawn. mob spawn script = using areamonster or do some calculation to check for boundary before spawn use WeeMapcache edit the map files and set to wall or unreachable zone, then update ur db/re/mapcache.dat.
  12. .@amount = countitem( 7420 ); delitem 7420,.@amount; getitem 7420,.@amount;
  13. Enchant Poison ?? or Enchant Deadly Poison ??
  14. depend on what is the value you have set.
  15. you need a website that provide a sms services which can help you to create the gateway to send sms...
  16. refer Cydh post in the link above
  17. did you add the source mod ??
  18. the bmp file is missing.. .go find the missing bmp file and add it into your grf.
  19. you can follow this method https://rathena.org/board/topic/70442-question-regarding-to-isnight/#entry135576 or https://rathena.org/board/topic/71921-is-it-able-to-set-mapflag-on-daynight-change/?p=143269
  20. if( gettime(4)== 0 ) { //Saturday remove this checking if you want it to work everyday. by the way.... Saturday = 6 .. not 0 (sunday)
  21. OnAgitStart: disablenpc strnpcinfo(0); end; OnAgitEnd: enablenpc strnpcinfo(0); end; try this
  22. you can try this - script atcmd_example -1,{ OnInit: bindatcmd "bgm",strnpcinfo(3)+"::OnAtcommand"; end; OnAtcommand: if ( .can_play ) { initnpctimer; .can_play = 0; playbgm .@atcmd_parameters$[0]; } else { dispbottom "Please try again later."; } end; OnTimer300000: // 5 minute stopnpctimer; .can_play = 1; end; } @bgm <#number>
  23. maybe you can try replace the GM sprite with the Tuxedo sprite at the clientside ??
  24. place your BGM into the BGM folder and edit your mp3nametable.txt
  25. anything after the "::" in a npc name will become the main npc name. in your case, the npc name should be shop callshop "shop";
×
×
  • Create New...