Jump to content

sader1992

Content Moderator
  • Posts

    1677
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by sader1992

  1. try cmake mkdir build && cd build && cmake -G"Unix Makefiles" -DINSTALL_TO_SOURCE=ON .. && make
  2. what is your hash ? check out this https://github.com/rathena/rathena/pull/4885/files and this https://github.com/rathena/rathena/pull/5077/files
  3. what is the output for g++ -v ? I don't see g++ install in your information above
  4. View File @AnalyzeItem count item in your server @aitem this command allows you to check how many of the item in the server command @aitem2 allows you to check also who have the items @aitem is fast, but @aitem2 will take some time to finish the time depend on how big your database is! Keep in mind that this script work with sql , so if you got an item you will need to wait xtime(default 30 sec) to save in sql so you can see it with the command (or relogin or any act in the server that force you data to be saved , it's all depends on your server setting and your usage) you should wait until the command is done , do not logout/talk to npc/ anything until you get the results! '@AnalyzeItem' return the count of the item in the server. '@AnalyzeItem2' return the count of the item and the lst of who have it in the server (take more time). USAGE: @AnalyzeItem <ITEM_ID> @AnalyzeItem2 <ITEM_ID> OR @AItem <ITEM_ID> @AItem2 <ITEM_ID> Wait until you get the results in your chat to add more tables (like other storages) check the array .@tables$ and .@id$ F_GET_REAL_OWNER_NAME(<"string table">,<id>) get the name for id Submitter sader1992 Submitted 06/22/2020 Category Utilities Video Content Author sader1992  
  5. Version 1.0.0

    455 downloads

    @aitem this command allows you to check how many of the item in the server command @aitem2 allows you to check also who have the items @aitem is fast, but @aitem2 will take some time to finish the time depend on how big your database is! Keep in mind that this script work with sql , so if you got an item you will need to wait xtime(default 30 sec) to save in sql so you can see it with the command (or relogin or any act in the server that force you data to be saved , it's all depends on your server setting and your usage) you should wait until the command is done , do not logout/talk to npc/ anything until you get the results! '@AnalyzeItem' return the count of the item in the server. '@AnalyzeItem2' return the count of the item and the lst of who have it in the server (take more time). USAGE: @AnalyzeItem <ITEM_ID> @AnalyzeItem2 <ITEM_ID> OR @AItem <ITEM_ID> @AItem2 <ITEM_ID> Wait until you get the results in your chat to add more tables (like other storages) check the array .@tables$ and .@id$ F_GET_REAL_OWNER_NAME(<"string table">,<id>) get the name for id
    Free
  6. the instance name must be changed on everything if you want to change it , including the instance_db lines.
  7. line 97 for (.@i = 0; .@i < @inventorylist_count; ++.@i) { if (@inventorylist_id[.@i] == .@refineitemid && !@inventorylist_equip[.@i] && @inventorylist_card1[.@i] == 0 && @inventorylist_refine[.@i] == 0) { delitem @inventorylist_id[.@i], 1; } } this could delete more that what it need to refine an item , you see it will delete all the items , for example , you need 5 to refine and you have 10 , the 10 will be deleted also like 4 (.@safe = 10;)is not used in the script
  8. I would suggest to ask the script creator , this instances has no support yet in rathena , and the information you provided says nothing about the script.
  9. check nemo , i think your fix would be there, not sure but maybe the hourly announcement
  10. this mod is not to add new items(that's not in ragnarok renewal of pre-renewal) , and does not effect the ability to add new items , it's only add the (items,monsters,maps) that are in renewal and not in pre-renewal to your pre-renewal server
  11. https://www.google.com/search?q=rathena+how+to+add+custom+item
  12. i am not sure if you can do that without hexing ofc but you can check the chat messages in the server and create an exception for item link , didn't look in to it , but if you know how , this is a suggestion for you.
  13. yes , stop the server, recompile after save and start the server
  14. #define PACKETVER 20150513 in your https://github.com/rathena/rathena/blob/master/src/custom/defines_pre.hpp and recompile the server
  15. also what was the fix of your first post ? please share it so people who get the same error knows
  16. the exe file what was it's name before you use nemo on it and rename it ?
  17. https://github.com/rathena/rathena/blob/e6bffc11fe15f676873f4e4621e109a061732a17/src/config/packets.hpp#L16 https://github.com/rathena/rathena/blob/master/src/custom/defines_pre.hpp and if it's not your client var , put your client var and close the server then recompile your server and start again
  18. if you did restart your server after you have put your config (in the screenshot above) and still get this error check your packetvar
  19. there is a login request ? yes like this
  20. i don't see your login request in the login-server if the 2nd screen shot what made after before the 1st one check if your login server receive any login request if not , than it's your client info file ip/port if there is a login request than check your packet var or what i said in the reply above
  21. maybe the login server is not running?
  22. maybe your ports, as i see you changed the default ports , if it's not from the ip than it's the port
×
×
  • Create New...