Jump to content

Fluxion

Members
  • Posts

    83
  • Joined

  • Last visited

Everything posted by Fluxion

  1. You can see this topic: https://rathena.org/board/topic/124754-anti-multi-login-by-ip-need-to-exclude-at-merchants/
  2. You need to update your rathena on the last hash ?
  3. It is not necessary to make a topic of it, especially since it is not a request for help at the source level, I think that a moderator will delete this topic soon enough.
  4. AS you can see ----- > wants to merge That means it's not yet merged into the main rathena branch, I haven't read the commit details, but maybe it's still awaiting confirmation.
  5. Woow Amazing project! Me who loves ff15 I recognize Galdina and Altissia well, congratulations!
  6. have you try to use 2018-06-21aRagexeRE/ ? I read somewhere that the new client 2022 no longer use RE but the old ones yes, so use 2018-06-21aRagexeRE/ to try
  7. If you don't want the cash shop, you can only hide the button via diff. Otherwise, remove all items from the cash shop and specify to your community that the button is not hidden but that there will be no items in the cash shop.
  8. yes for sure, why you cant? You can see what patch you can diff here http://nemo.herc.ws/clients/2018-06-21aRagexeRE/ http://nemo.herc.ws/clients/2018-06-21aRagexe/
  9. I guess you want to have this effect. But the name is appleidun.tga. Go to your stateiconimginfo.lub, ctrl + f and type apple on search bar. Now go to stateiconinfo.lub and seach this: StateIconList[EFST_IDs.EFST_APPLEIDUN] = { haveTimeLimit = 1, posTimeLimitStr = 2, descript = { { "Apple of Idun", COLOR_TITLE_BUFF }, { "%s", COLOR_TIME }, { "Increases MaxHP" }, { "Increases HP regen" } } } Save all and re-upload all files in your grf. Now launch your client and seen if problem solved like this
  10. I don't have apple.tga. Did you change a few things in your client looking for apple.tga?
  11. https://github.com/rathena/rathena/blob/master/conf/battle/skill.conf
  12. You may be talking about @jump command?
  13. You can see on this link, this patch is not applicable on your executable.
  14. The solution for you is : bonus bCritical,20; bonus bCriticalLong,20; bonus bFlee,-30;
  15. From memory, having already made a server with a max level of 500, it is not possible to do this. I could only set the aura to 99 or 500 and not both.If you want to add an aura for level 250, you must define it in your externalsettings MaxLevelTable = { BaseLevel = 250, } and in client.conf but the aura will only be displayed for level 250. I hope I have helped anyway.
  16. This topic has been solved on discord, so I will post the solution so that other people can fix it. First of all, thanks to @mrfizi to help and comment this topic 2. The solution just below Step 1: Go to sclientinfo and check what langtype you use. If you use Langtype1, go directly to your client's grf which is read first by data.ini. Step 2: create service_usa folder on data/luafiles514/lua files/ Step 3: Extract ExternalSettings_kr.lub on your computer on raname it to ExternalSettings_usa.lub Step 4: Found MakeableRace = { Doram = true } and modify the "true" to "false". Step 5: Save the changes and put your files in the service_usa folder you created in step 2. Step 6: Save grf and launch your game, now its good, doram is disabled at character creation
  17. replace if (lastwarp$ == "") message strcharinfo(0),"You haven't warped anywhere yet."; else warp lastwarp$,lastwarpx,lastwarpy; end; to if (lastwarp$ == "") message strcharinfo(0),"You haven't warped anywhere yet."; else { sc_end SC_GEFFEN_MAGIC3; warp lastwarp$,lastwarpx,lastwarpy; } end; and replace function Go { set lastwarp$, getarg(0); set lastwarpx, getarg(1,0); set lastwarpy, getarg(2,0); warp getarg(0),getarg(1,0),getarg(2,0); end; } to function Go { set lastwarp$, getarg(0); set lastwarpx, getarg(1,0); set lastwarpy, getarg(2,0); sc_end SC_GEFFEN_MAGIC3; warp getarg(0),getarg(1,0),getarg(2,0); end; } Another Note: I haven't tested with this status, I tested with sc_freeze and it worked, should work with this status too Another Note ++ : @mrfizi is too fast >_<
  18. Maybe this can help you https://github.com/rathena/rathena/pull/5112
  19. according to your picture, it seems that it is already activated, right?
  20. Hi guys, i'm here because i have a little problem. For PR_REDEMPTIO, i can't use the skill. As in the picture, I do have the prerequisites for the skill, especially since there are 6 of us in the group, so I am no longer subject to the loss of experience, logically the fate should get started. But nothing to do "Skill Has Fail" for all situations. I currently have the same source code as the latest version of rathena. If other person confirms to me that there is a problem then I will open an issue in Github. If I am doing things wrong, please let me know so that I close this topic. Thank you ? PS: I use Pre-renewal EDIT: Problem solve, missing if((p = party_search(sd->status.party_id)) == NULL) dunno why but problem resolved
  21. Not work. Still the same, my statues stay female. Thanks for helping @Rynbef!
×
×
  • Create New...