Jump to content

Chaos92

Members
  • Posts

    1,085
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by Chaos92

  1. thats the old one. No need that anymore. You need to run the SQL for web in sql-files and also make sure port are correct. I saw from screenshot above your ports are not correct.
  2. Your web server listening to port 8888. So change your port to 8888 in your lua files there.
  3. 1. Connect to the same LAN connection. 2. Install/start local server. Get the IP. Might be192.xx.xx.xx. Can check in ipconfig. Important because sclientinfo.xml or clientinfo.xml should use this IP. 3. Connect to that local server IP. Every time you reconnect LAN connection, that IP might have changed, so need to edit sclientinfo.xml or clientinfo.xml also then.
  4. if you @item, does the information shows or still unknown item ? Check your iteminfo.lua/lub
  5. rename that database to the database name that you're using for rathena
  6. that is gender warning. Try check your char_id 150001 in char table for datatype 'sex'. It should be M or F only. Maybe its stated 'U' there.
  7. Like this ? bonus bStr,getrefine()/2; bonus bAtk,20*(getrefine()/2); if (getrefine()>9) { bonus bDex,5; bonus bStr,5; }
  8. Contact @Functor in rathena PM or skype him. Make sure you're contacting a correct person/Skype ID.
  9. try change hair colour, cloth color, hstyle to 1. 1 shouldnt have any problems. change in char table in your ragnarok database.
  10. Latest one ? https://github.com/rathena/rathena
  11. https://github.com/rathena/rathena/pull/5749 Because of MVP Green Aura in renewal. Maybe your SQL are outdated rathena which isnt later than 22 February ?
  12. What do you mean by bug it using alt+f4 ? Alt+f4 close the client right.
  13. 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
  14. GuildID. means the ID, not name. it should be in numbers. Check it in your database table 'guild'
  15. if (getcharid(2) == ?? ?? = GuildID
  16. 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
  17. How about remove the item cost for the skills in skill_db.yml ?
  18. what windows ? what client date ? seems like old windows/client related issues. no much information provided here.
  19. 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
  20. make sure you have set the correct client name .exe when setup your Thor Patcher.
  21. because of that setarray in your script. its reading between coma ',' for each mapflag. For sure it cant read your mf_restricted, 2,
  22. 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.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.