Jump to content
The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades. ×

Chaos92

Members
  • Posts

    1859
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Chaos92

  1. Use this PR. Easy since its included in rAthena. https://github.com/rathena/rathena/pull/5731
  2. add in below commands line. commands: { mobinfo: true iteminfo: true and etc. If you're adding this for groupid :0 which is normal account, then add it at id : 0 section.
  3. conf/inter_athena.conf // MySQL Web Server web_server_ip: 127.0.0.1 web_server_port: 3306 web_server_id: ragnarok web_server_pw: ragnarok web_server_db: ragnarok First make sure the Web server settings are correct. conf/web_athena.conf // Print requests and responses? // This is useful for debugging purposes, it will print the entire // request and response for each transaction. print_req_res: off Then u can on this one if u want to see request and response information.
  4. You can PM @Functor. He will give u some patch for it.
  5. Make sure you have NGHT_SIEGER in your mobdb yml. If you're using pre-renewal then find it in pre-re folder or else in renewal folder.
  6. This one : https://github.com/rathena/rathena/blob/e7ba7ebdb56b95d7d9d72d7a0d3d614e3f36ac86/sql-files/web.sql Run this SQL script in your ragnarok database. Then dont forget to : make web and ./web-server (for linux) or just recompile that web-server and run the web-server.exe
  7. 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.
  8. Your web server listening to port 8888. So change your port to 8888 in your lua files there.
  9. 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.
  10. if you @item, does the information shows or still unknown item ? Check your iteminfo.lua/lub
  11. rename that database to the database name that you're using for rathena
  12. 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.
  13. Like this ? bonus bStr,getrefine()/2; bonus bAtk,20*(getrefine()/2); if (getrefine()>9) { bonus bDex,5; bonus bStr,5; }
  14. Contact @Functor in rathena PM or skype him. Make sure you're contacting a correct person/Skype ID.
  15. try change hair colour, cloth color, hstyle to 1. 1 shouldnt have any problems. change in char table in your ragnarok database.
  16. Latest one ? https://github.com/rathena/rathena
  17. 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 ?
  18. What do you mean by bug it using alt+f4 ? Alt+f4 close the client right.
  19. 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
  20. GuildID. means the ID, not name. it should be in numbers. Check it in your database table 'guild'
  21. if (getcharid(2) == ?? ?? = GuildID
×
×
  • Create New...