Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. 3065
  2. 3063
  3. 3061
  4. 3059
  5. change rentitem to getitem
  6. 3057
  7. OnInit: waitingroom "Item Mall",0; end;
  8. 3054
  9. yes you have to create an account to login... the default "server" account wont be able to connect to game.
  10. 3052
  11. 3050
  12. remove the item from item_db ... but you will get spammed with dummy error if you still didnt remove the exist item in your char.. or better way login your SQL database..and delete it...
  13. try this. BUILDIN_FUNC( pcisdead ){ TBL_PC* sd; return ( pc_isdead(sd) )?1:0; } BUILDIN_DEF(pcisdead,""),
  14. 3048
  15. 3046
  16. 3044
  17. edit here ?? clif_displaymessage(fd,"There is a 15 minutes delay in using @off command");
  18. you need that to select which server you are going to connect..
  19. hmm ????? what mean
  20. by refer this http://rathena.org/w..._delay_when_hit maybe you can try it like this.. doesnt sure this will work or not..... open src/map/pc.h find: unsigned int canuseitem_tick; // [skotlex] then add below: unsigned int pvpdelay_tick; open src/map/pc.c find: sd->canuseitem_tick = tick; then add below: sd->pvpdelay_tick = tick; open src/map/atcommand.c find: ACMD_FUNC(pvpon) then add this inside the function: unsigned int tick = gettick(); int delaytick = ( 15 * 60000 ); //This is the delay in milliseconds you can set what ever delay you want sd->pvpdelay_tick = tick+delaytick; //This is the timer find: ACMD_FUNC(pvpoff) then add this inside the function: unsigned int tick = gettick(); We are still in the @pvpoff function scroll down until you find this inside the function: nullpo_retr(-1, sd); then add below: if(DIFF_TICK(sd->pvpdelay_tick,tick)>0) { //This is for computing the delay if the cooldown or delay is not yet finish restrict using @pvpoff clif_displaymessage(fd,"There is a 15 minutes delay in using @off command"); return 0; }
  21. 3042
  22. Emistry

    NPC Redeemer

    dispbottom "VotePoints left : "+#VotePoints+" Points.";
  23. 3040
  24. change OnTimer30000: to OnTimer150000:
  25. 3035
×
×
  • Create New...