-
Posts
217 -
Joined
-
Days Won
32
Community Answers
-
Easycore's post in how to make monster size with spawn was marked as the answer
prontera,0,0,0,0 monster Big Poring 1002,1,7200000,3600000,"",2
-
Easycore's post in Drop rates apparently double was marked as the answer
https://github.com/rathena/rathena/blob/55ca79961da77d1ba6c244393de0101709e7bc0d/conf/battle/gm.conf#L42
-
Easycore's post in Drop rates apparently double was marked as the answer
This is caused by #RENEWAL_DROP and actually I don't know how it works.
Your emulator has this setting enabled.
-
Easycore's post in How to remove a Quest was marked as the answer
Depending on your client:
RecommendedQuestInfoList.lub RecommendedQuestInfoList_Sakray.lub RecommendedQuestInfoList_True.lub You can remove it in one of those files located in 'RO\System\'.
-
Easycore's post in NPC Refine was marked as the answer
https://github.com/rathena/rathena/blob/master/npc/re/merchants/ticket_refiner.txt
-
Easycore's post in Random Cards with image card was marked as the answer
You can use cutin script.
*cutin "<filename>",<position>; This command will display a picture, usually an NPC illustration, also called cutin, for the currently attached client. The position parameter determines the placement of the illustration and takes following values: 0 bottom left corner 1 bottom middle 2 bottom right corner 3 middle of screen in a movable window with an empty title bar 4 middle of screen without the window header, but still movable 255 clear all displayed cutins But you also need to copy all the BMP files located in data.grf from 'texture\À¯ÀúÀÎÅÍÆäÀ̽º\cardbmp\' to 'texture\À¯ÀúÀÎÅÍÆäÀ̽º\illust\'.
-
Easycore's post in How to write this item code. was marked as the answer
autobonus "{ bonus2 bHPRegenRate,500,400; }",20,9200,BF_MAGIC;
-
Easycore's post in Slight Heal change was marked as the answer
https://github.com/rathena/rathena/blob/master/src/map/skill.cpp#L6274
Add:
status_percent_heal(bl, x, 0);
Replace X by the percentage.
-
Easycore's post in Editing Attendance was marked as the answer
First message:
https://github.com/rathena/rathena/blob/master/conf/char_athena.conf#L15
Second message:
https://github.com/zackdreaver/ROenglishRE/blob/master/Ragnarok/data/msgstringtable.txt#L3470
-
Easycore's post in Use atcommand in Skill SRC was marked as the answer
is_atcommand(fd, sd, "@command", 1);
-
Easycore's post in How can I change Steel Crow passive bonus? was marked as the answer
md.damage = (sstatus->dex / 10 + sstatus->int_ / 2 + skill * 3 + 40) * 2; skill is equal to Steel Crow level.
-
Easycore's post in bonus custom hat was marked as the answer
You can use this:
bonus2 bExpAddClass,Class_All,100;
-
Easycore's post in Buffing Arc Bishop Skills was marked as the answer
Adoramus:
https://github.com/rathena/rathena/blob/master/src/map/battle.c#L5897
Judex:
https://github.com/rathena/rathena/blob/master/src/map/battle.c#L5893
-
Easycore's post in Isequipped (<Weapon Category>) was marked as the answer
Well... the problem was that number of "getequipid" was wrong, the correct is 11.