Jump to content

Chaos92

Members
  • Posts

    1864
  • Joined

  • Last visited

  • Days Won

    63

Everything posted by Chaos92

  1. What do you mean by bug it using alt+f4 ? Alt+f4 close the client right.
  2. prontera,150,160,3 script Example 99,{ if(!getcharid(2)) { mes "Welcome"; close; } switch(select("Storage:Tool Dealer:Cashshop")){ case 1: openstorage; end; case 2: callshop "yourshop",1; end; case 3: callshop "yourshop",1; end; } { Above script will only open Storage, Tool Dealer, Cashshop IF characters have GUILD. prontera,150,160,3 script Example 99,{ if(!getcharid(2)) { mes "Welcome"; close; } if (getcharid(2) == 3){ switch(select("Storage:Tool Dealer:Cashshop")){ case 1: openstorage; end; case 2: callshop "yourshop",1; end; case 3: callshop "yourshop",1; end; } } { Something like this. You might want to add close; also for guildID that isnt == 3
  3. GuildID. means the ID, not name. it should be in numbers. Check it in your database table 'guild'
  4. if (getcharid(2) == ?? ?? = GuildID
  5. i didnt found any 'payon' words there.
  6. OnClock<hour><minute>: OnMinute<minute>: OnHour<hour>: On<weekday><hour><minute>: OnDay<month><day>: This will execute when the server clock hits the specified date or time. Hours and minutes are given in military time. ('0105' will mean 01:05 AM). Weekdays are Sun,Mon,Tue,Wed,Thu,Fri,Sat. Months are 01 to 12, days are 01 to 31. Remember the zero. https://github.com/rathena/rathena/blob/master/doc/script_commands.txt
  7. How about remove the item cost for the skills in skill_db.yml ?
  8. what windows ? what client date ? seems like old windows/client related issues. no much information provided here.
  9. Follow the example up there. include '_' underscore so you can follow the example there. make sure edit correct file accessoryid and accname. same goes to iteminfo.lua
  10. make sure you have set the correct client name .exe when setup your Thor Patcher.
  11. because of that setarray in your script. its reading between coma ',' for each mapflag. For sure it cant read your mf_restricted, 2,
  12. Hello, for client 2013 and above it should be in iteminfo.lua or any iteminfo files name that your client diffed located in System folder.
  13. Have u tried remove your mapflag restricted in your script ? its already added in restricted.txt right ?
  14. rathena are now using yml for itemdb
  15. theres a lot to guess. Maybe your client files issues, or map issues, or job sprite issues, etc.
  16. for GM Sprite, its client side, not server side. Server side = GM commands, configuration, etc.
  17. I dont know if this one is correct but you can try download and try.
  18. Maybe that account ID are exist in sclientinfo.xml or clientinfo.xml Make sure only GM account that you want to have GM Sprite are there and delete all unrelated accounts id there.
  19. Are you sure you're using latest rathena ? Because if im not mistaken I saw the update for the bonus before after that PR.
  20. Im just curious. Jailed, do you mean you want them to be unjailed later on (with their item also) ? Or else just ban them ? Try to suggest in rAthena github : https://github.com/rathena/rathena/issues
  21. if u mean the slot in client, its from iteminfo.lua. Make sure you're client reading the correct files. If the names of iteminfo is iteminfo.lua, then edit iteminfo.lua. if iteminfo_EN.lua, then iteminfo_EN.lua. I dont know which files your client are reading so depends on your setup when your hex/patch your client.
  22. use commands in that item script for example @job, @jlvl and @blvl.
  23. created accounts should be in 'login' table. TBH I dont think your issue because of your current database are not updated. But if you're asking on how, you can use the folder sql-files/upgrades/ and run the SQL query needed. If you want to update your rathena folder, you can use git pull origin master if you're using github before and fix all conflicts file (if any). backup rathena folder and database just incase, before git pull.
  24. Hello, I think you failed if you're using 4144 nemo patcher for this client 20151104. Disable game guard will be unsuccessful. If thats your case, Try to use old Nemo https://github.com/Neo-Mind/NEMO
  25. why novice suit ? which one ? U might get error too if you're using equipments/weapons that didnt exist in job sprites. For example, equipping balmung at acolyte, or bow at priest, etc.
×
×
  • Create New...