-
Posts
1855 -
Joined
-
Last visited
-
Days Won
62
Community Answers
-
Chaos92's post in job_exp.yml e statpoint.yml for a 255/120 was marked as the answer
there is no exact formula, depends on you, but you can try generator here : https://x-files.amirazman.my/customfilegenerator
-
Chaos92's post in Pet Egg unclickable was marked as the answer
if u are making egg u should use @makeegg
===================
| 8. Pet Commands |
===================
@makeegg <egg ID>
Creates a Pet Egg based on the given ID.
---------------------------------------
@hatch
Opens the Hatch window (like using a Pet Incubator).
---------------------------------------
-
Chaos92's post in Is ragexe version should be lower or higher version than KROClient version? was marked as the answer
ROenglishRE from Chris (https://github.com/llchrisll/ROenglishRE) is from latest kRO, so you can use latest kRO for it.
About the question, you might encounter some issue for example u are using older ragexe which new client grf files isnt supported, or vise versa.
For example ragexe cant support newer files, or if its too old or not enough files you might encounter insufficient files error.
I suggest you follow that link given above and read the tutorial on how to use it.
-
Chaos92's post in Game crashes when opening skill tree was marked as the answer
Download Chris Translation from his github, and use the tools, it will be easier.
-
Chaos92's post in [SOLVED increase view id warp] Problem implementing custom hats using the generator Need Help please was marked as the answer
there is a patch to increase viewID. check WARP/NEMO.
-
Chaos92's post in Need Help For Explain GRF Folder was marked as the answer
change the encoding to korean, find it at settings, maybe easier since u can translate it.
-
Chaos92's post in Help - Add Costume Weapom was marked as the answer
Hmm, have you tried the generator in the signature below ?
Oh so you want costume, isnt it ? You need src modification which I didnt remember where to get it.
Or maybe can check the src part about it yourself.
-
Chaos92's post in Bonus correction item Star Eyepatch was marked as the answer
I dont know why you said not giving that effects, I saw from https://github.com/rathena/rathena/blob/master/db/re/item_combos.yml its there.
- Combo: - Star_Eyepatch_JP_ - Orc_Hero_Card Script: | if (BaseLevel >= 100) { bonus bBaseAtk,30*(readparam(bVit)/10); bonus bMatk,30*(readparam(bVit)/10); bonus bVit,3*(readparam(bLuk)/10); bonus bLuk,3*(readparam(bLuk)/10); } else if (BaseLevel <= 99) { bonus bBaseAtk,10*(readparam(bVit)/10); bonus bMatk,10*(readparam(bVit)/10); bonus bVit,readparam(bLuk)/10; bonus bLuk,readparam(bLuk)/10; } If you're using pre-re then its not there : https://github.com/rathena/rathena/blob/master/db/pre-re/item_combos.yml then you should add it yourself.
-
Chaos92's post in Top three rank in Prontera was marked as the answer
https://github.com/AnnieRuru/Release/blob/master/scripts/PvP %26 GvG/Dota PVP ladder/dota_sql_ladder_3.5r.txt
Maybe this one.
-
Chaos92's post in HatEffectInfo and StateIconIMGInfo Error was marked as the answer
1. Update your kRO
2. Update your client side file.
It should be either one isnt match.
-
Chaos92's post in Help in fixing Official Hourly Shop was marked as the answer
ive changed some codes, the result should be like this
//===== rAthena Script ======================================= //= Gold PC Bonus NPC //===== Description: ========================================= //= NPC that can be spawned via the Gold PC Timer Button. //===== Changelog: =========================================== //= 1.0 Initial release [Lemongrass] //= 1.1 Replay version [eppc0330] //= 1.2 Translation of the replay version [Lemongrass] //= 1.3 Cleanup of NPC logic [Lemongrass] //= 1.4 Added replay version of buff NPC [eppc0330] //============================================================ prontera,155,168,3 script Goldpoint Manager::GOLDPCCAFE 4_F_02,{ // ID:AMOUNT:PRICE setarray .items$[1], "14003:5:3", // World_Tour_Ticket 1 "13607:1:15", // K_Secret_Key 1 "23919:11:100",// K_Secret_Key 11 "23919:33:300";// K_Secret_Key 33 mes "[Goldpoint Manager]"; mes "You currently have ^0000ff"+Goldpc_Points+"^000000 points."; mes "What reward do you want?"; next; .@menu$ = "View current points"; for(.@i = 1; .@i < getarraysize(.items$); .@i++) { explode(.@array$, .items$[.@i], ":"); .@itemid = atoi(.@array$[0]); .@cost = atoi(.@array$[2]); .@menu$ += ":" + getitemname(.@itemid) + " (" + .@cost + " points)"; if( Goldpc_Points < .@cost ){ .@menu$ += " ^ff0000(not enough points)^000000"; } } .@s = select(.@menu$)-1; if(.@s == 0) { mes "[Goldpoint Manager]"; mes "You currently have ^0000ff"+Goldpc_Points+"^000000 points."; close; } explode(.@array$, .items$[.@s], ":"); .@itemid = atoi(.@array$[0]); .@amount = atoi(.@array$[1]); .@cost = atoi(.@array$[2]); if(Goldpc_Points < .@cost) { mes "[Goldpoint Manager]"; mes "You have ^0000ff"+Goldpc_Points+"^000000 points remaining."; mes "You cannot get the prize with this amount of points."; close; } mes "[Goldpoint Manager]"; mes "You chose the "+.@cost+" points gift. We will reward you immediately."; Goldpc_Points -= .@cost; getitem .@itemid,.@amount; mes "You have ^0000ff"+Goldpc_Points+"^000000 points remaining."; close; }
-
Chaos92's post in LF> Mvp green aura sprite was marked as the answer
monster_size_effect or something like that in your System folder.
monster_size_effect_EN.lub if you are using Chris English Translation Project.
-
Chaos92's post in Select wich RE or PRE-RE mechanics will work was marked as the answer
You can enable/disable it here : https://github.com/rathena/rathena/blob/master/src/config/renewal.hpp
comment it to disable it by adding // at early lines for example
//#define RENEWAL
-
Chaos92's post in Adding a 3rd class skill to a 2nd Rebith Class was marked as the answer
https://github.com/rathena/rathena/blob/master/db/re/skill_tree.yml
or
https://github.com/rathena/rathena/blob/master/db/pre-re/skill_tree.yml
-
Chaos92's post in grf data folder was marked as the answer
https://github.com/rathena/rathena/wiki/Data-Folder
Maybe this ?
-
Chaos92's post in Question grf was marked as the answer
I have multiple generator project, maybe u can try.
-
Chaos92's post in Unregistered ID was marked as the answer
create an account in login table, fill in the username, password, and also the groupID, which is 99 if u want it to be admin account.
and as above, if you enable _M _F registration, u also can do that in the client.
-
Chaos92's post in Guild Emblem Error Help was marked as the answer
should be sclientinfo.xml. your client read clientinfo not sclientinfo ?
Also just change IP at AssistAddr = only. doesnt need to touch another part.
-
Chaos92's post in Fixing new hairstyles was marked as the answer
https://kamishi.ragnawork.com/product/700-palettes-human-pack/
Kamishi already released 700 palette pack for FREE. Also, dont forget to read the instruction.
-
Chaos92's post in Recently updated rathena git was marked as the answer
Hello, you should check that line it might have the hint why that error occured.
- Item: ReloadShadow_Mix RewardGroup: RELOADSHADOW_MIX RequiredRequirementsCount: 3 MinimumRefine: 9 MaximumRefine: 10 Requirements: - Item: S_Reload_Armor - Item: S_Reload_Shoes - Item: S_Reload_Shield - Item: S2_Reload_Armor /item_group_db.yml try check there is it exist for reloadshadow_mix.
It just my guess since ive update for a few months once but didnt have your errors.
-
Chaos92's post in Change Unequip all to other language was marked as the answer
That part I think it should be in msgstringtable.txt
-
Chaos92's post in How to change the Command permisions on YML? was marked as the answer
conf/groups.yml
-
Chaos92's post in R> goku hair aura was marked as the answer
RMSC2012 Special Costume [0] [Costume Upper Head] Item ID# 18740 (C_Hair_Of_The_Strong)
-
Chaos92's post in cash/rop's remain on some accounts after wipe was marked as the answer
How are you so sure u wipe it all ? cash means you didnt wipe acc_reg_num tables.