Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. find this in your warp menu category Restrict("RE"); and remove it.
  2. depend on "When" did you save/update the values. the server itself save/update these values every short interval based on your conf configuration. Default: 300 seconds.
  3. you can follow the complete installation guide here. SQL_Installation#For_Windows
  4. update and add in your custom item info into the System/ItemInfo.lub
  5. try change for ( .@i = 0; .@i < .aidtotal; .@i++ ) { into this for ( .@i = .aidtotal - 1; .@i >= 0; .@i-- ) {
  6. find the npc inside this folder npc then you will found the coordinate.
  7. animated picture for loading screen or login screen are not possible. only static images are usable.
  8. You can follow the setup guide given to create your own version of Job Changer.
  9. set @hairdyemax,MaxHairDye; set @bodydyemax,MaxBodyDye; both MaxHairDye and MaxBodyDye doesn't have a value. make sure you set the value accordingly
  10. check your client side files. double check all your steps Custom_Items
  11. you can just use the mapwarp script command to warp out everyone when one of the member died and triggered the OnPCDieEvent
  12. npc/custom/etc/mvp_room.txt
  13. @kombat Please kindly read the rules of the board before you post a new topic next time. https://rathena.org/board/topic/85850-scripting-requests-rules/ You're required to clearly elaborate what you want.
  14. more of less the same idea you could use this and modify to your own need. https://pastebin.com/JnYju1Jv anyway for your own topic you should elaborate how your server check for VIP status. beside you can just apply disable dual client to limit the max entry for last mac
  15. Emistry

    Q> Pre-RE

    if you could provide enough info to justify it's a bug, then yes, they will fix it. that's why the Issue Tracker exist to help them track the bug
  16. double click on the gibberish text and edit the value. else change it at your LUA files.
  17. if ( rand( 10000 ) < 100 ) { // below 1.00% }
  18. always show your script when you ask for script support.
  19. so, what should be the actual ATK that you should received based on your current statuses? if you want other ppl to help to solve the issue, at least spend sometime to investigate the issues and provide more info.
  20. remove the nightenabled mapflag npc/mapflag/night.txt
  21. it was your graphic card compatibility issue.
  22. dumb question, have you double check to ensure your server does loaded this script ? anyway, judging from your current script shown in above ... the header is wrong. it should be moc_ruins,130,185,4 script refinemain 100,{ missing a curley at the end of the script. getequipisequiped are no longer usable in latest rathena. remove it. Fixed version : https://pastebin.com/70k4rbrd
  23. the getpartymember does return a variable named $@partymembercount you can use this variable to check on the amount of party member. Example : if ( $@partymembercount > 1 ) { // your party have more than one member. }
  24. depend on your database sizes, query statement, it affect the RAM usage too.
×
×
  • Create New...