Jump to content

Surefirer

Members
  • Posts

    113
  • Joined

  • Last visited

Everything posted by Surefirer

  1. I have this issue as well. Really need a solution. Thanks. If the script can add a restriction on certian map, and move all the punching bag to this map, anyone who is in this map will not get points.
  2. Yes, I did. I used GRF editor 1.8 version. Thank you. I will try this version. Thank you. It worked. I think I used outdated grf editor version. Thanks a lot.
  3. Hello, I tried to use GRF editor 1.8 to encrypt my grf like I used to be, but it doesn't work on the client 2022-11-03. It there an updated way to encrypt? Thanks in advance.
  4. My log always have this error: [ Error ] : intif_parse_Mail_delete: char not found 150384 [ Error ] : intif_parse_Mail_delete: char not found 154439 Does anyone know how to fixt it? Or I need to open an issue on github? Thanks in advance.
  5. this is true. maybe you can open an issue on github. I remember that RA dev they tested once before, and they can not reproduce this issue, but I could be wrong.
  6. prontera,145,182,6 script doubleExp 4W_F_KAFRA2,{ .@Price = 10000; // Zeny required for heal .@expeventBuffs = 0; // Also buff players? (1: yes / 0: no) .@Delay = 3600; // Heal delay, in seconds if (@EB > gettimetick(2)) end; if (.@Price) { message strcharinfo(0), "Cost " + callfunc("F_InsertComma",.@Price) + " Zeny."; if (Zeny < .@Price) end; if (select("^0055FFUes it^000000:^777777Cancel^000000") == 2) end; Zeny -= .@Price; } specialeffect2 EF_HEAL2; percentheal 100,100; if (.@expeventBuffs) { sc_start SC_EXPBOOST,3600000,50; sc_start SC_JEXPBOOST,3600000,50; } if (.@Delay) @EB = gettimetick(2) + .@Delay; end; } try this one, don't use @reloadmobdb
  7. I have this issue too, then I get ride of this script, I made an npc to give double exp stats to solve this problem. Haven't test double exp script on the lastest RA thought.
  8. awesome! it's working. Thank you so much.
  9. Hello, I just tried this method, it didn't work, do I have to add something in the client side file? where can I find the type 13 reference? Thanks.
  10. How to make this new cart working in the game? Thanks in advance.
  11. I am not able to update load mob zip file, no matter what I do, it does not read and convert and add into sql table, after I upload the zip file, I can find the folder with actual files in public_html foler. I appreciate if anyone can help me on this, been trying for 2 days.
  12. Looking for item #19111 Laser of Eagle Chance to transform become Shechil while attacking script. thanks in advance.
  13. no update so far. it's fixed in 2020 client.
  14. the offical ra GeffenMagicTournament.txt is located at \GitHub\rathena\npc\re\scripts_athena.conf you also need to uncomment in the instance_db.yml hope this fix your problem.
  15. you need first to create an custom item, then add items you want to give in the item_package.txt. You can find an offical egg or box as an example. You also need to give your custom box an id in the const.txt file. 1. create custom item. eg: 22953,Enchant_Stone_Box7,Enchant_Stone_Box7,18,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Enchant_Stone_Box7); },{},{} 2. add your egg or box id in const.txt eg: IG_Enchant_Stone_Box7 1028 3. add your items in the item_package.txt ( you need to read the doc at the very top to configure the database structure) eg: IG_Enchant_Stone_Box7,6963,2,1 IG_Enchant_Stone_Box7,6964,1,1 IG_Enchant_Stone_Box7,6999,2,1 IG_Enchant_Stone_Box7,25000,2,1 IG_Enchant_Stone_Box7,6943,3,1 IG_Enchant_Stone_Box7,6642,3,1 IG_Enchant_Stone_Box7,25016,3,1 IG_Enchant_Stone_Box7,6944,3,1
  16. Thank you for the reply. However, these methods do not solve the problem. You can test it if you don't mind. I have tested it, and tried many different way, not still can not figure out where to make this work.
  17. I believe it's the problem of penalty. Find level_penalty.txt, delete the drop penalty inside the txt.
  18. The reason why I post here instead of open an issue on git is I want to make sure it is not my problem. I am useing the lastest Ra, renew. client is 20180831. My script is below: I have this event script in my server. Every Friday, Saturday, Sunday from 20:00 - 2:00. The server will have 1.5 exp boost event. The event will trigger when it starts with no issue, but it will make the map server crash when its end when is 2:00. The server will crash and it will restart. I have been tested this in my live server for couple weeks before I post this just want to make sure its not a one time thing. If its my script error that makes the crash, can some one please help me fix the script, but I don't think there is any problem in my script. If this issue happen in your server, please let me know as well, so maybe I can open an issue on git. Thanks.
  19. you are right, I just tested, and realized it should be instance_enter just like you mentioned. thanks for ur help. I have one more request, when the character re-enter the instance map, the character will be dead to avoid player abuse this function. Thanks.
  20. Hello, I have a custom instance, when the player disconnect or logout the game, when they log in again, I want the character back to the instance map, so they can continue enjoy the game, however it only allow re-enter the instance map once. hope you understand, if not I will try explain more detail.
  21. Thank you for the help. I think you get my idea. But your script shows error. Please see attached picture.
  22. Hello, I was trying to make a script about if a player for some reason logout or disconnect, when the player logout back in, the character will return to where he disconnected. But only allow once. If logout second time, the character will return to save point. I am able to do it without count logout time, I was tried many methods, but did not work. I hope someone can teach me how to do it. I script as following: - script reset_map -1,{ OnInit: setarray .maplist$[0],"prt_fild08"; end; OnPCLogoutEvent: getmapxy (.@map$, .@x, .@y, BL_PC); if (inarray(.maplist$[0],.@map$) == -1) end; warp "prt_fild08",0,0; end; } (I was tired to count the logout times, and use OnPCLogoutEvent to warp character to save point if the character logout the map second with no luck.)
  23. Hello, May I ask what is your solution for make the pet smaller?
×
×
  • Create New...