-
Content Count
221 -
Avg. Content Per Day
0 -
Joined
-
Last visited
-
Days Won
17
Balfear last won the day on February 17
Balfear had the most liked content!
Community Reputation
150 ExcellentAbout Balfear
-
Rank
Marin
- Birthday 05/22/1990
Profile Information
-
Gender
Male
-
Location
Russia
-
Server
PlayRO
- Github: Balferian
- Discord: Balfear#3330
-
Unexpected type for argument 2. Expected number.
Balfear replied to jayson14's question in Scripting Support
Read this to understand how variables works and what variable should use here: https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L455 ...$ - is a string variables you should use here [email protected] getitem .donate_item, [email protected]_Code; -
Item Shower / Item Rain when a monster is killed
Balfear replied to mawjustin's question in Script Requests
Yes, you can use makeitem command https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L4863 -
Also when you delete items (only if it is headgear or robe) from inventory you should update `char` table: set value 0 for head_top, head_mid, head_bottom, robe. SELECT * FROM `inventory` WHERE char_id = <char id> AND equip > 0; UPDATE `char` SET head_top = 0, head_mid = 0, head_bottom = 0, robe = 0 WHERE char_id = <char id>;
-
Hi, you can see sample of instance in rathena docs https://github.com/rathena/rathena/blob/master/doc/sample/instancing.txt monster instance_mapname("nov_grnds"),0,0,"Poring",1002,20;
-
only if you change exe to lower version, gravity remove it.
-
check this commit https://github.com/rathena/rathena/pull/5563/files colors depend on client version
-
- script Treasure Box Respawner -1,{ OnMinute00: monster "prontera",0,0,"Treasure Box",2288,1,"Treasure Box Respawner::OnTBoxDestroyed"; end; OnTBoxDestroyed: announce "The Treasure box has been destroyed by " + strcharinfo(0) + "!",3; end; } https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L857
-
add new group here https://github.com/rathena/rathena/blob/master/src/map/mob.hpp#L113 and here https://github.com/rathena/rathena/blob/master/src/map/script_constants.hpp#L4577 then recompile your server
-
Created Healing Item return as "Apple"
Balfear replied to norightinfo's question in Scripting Support
@norightinfo if you want to use high id in lua then you need use exe 2018-11-21 or higher. -
Created Healing Item return as "Apple"
Balfear replied to norightinfo's question in Scripting Support
What exe version you use? Maybe it`s old and don`t support high items id. -
View File Homunculus - highresolution sprites All homunculus sprites with high resolution. Free for use. Submitter Balfear Submitted 12/18/2020 Category Other Sprites Video Content Author Balfear
- 1 reply
-
- 2
-
-
-
-
Hi. You can use GRF Editor for this. itemInfo_true.lub
- 1 reply
-
- 1
-
-
You can see example in main file for Renewal: https://github.com/rathena/rathena/blob/master/db/re/item_randomopt_group.yml
-
You should set "costume = true" value in your item info for equips that you want to show in costume tab. Example: [2206] = { unidentifiedDisplayName = "Hat", unidentifiedResourceName = "ĸ", unidentifiedDescriptionName = { "Unknown Item, can be identified by using a ^6666CCMagnifier^000000." }, identifiedDisplayName = "Wedding Veil", identifiedResourceName = "�����", identifiedDescriptionName = { "A transparent veil worn by brides on the day of their wedding.", "Mdef +5", "Class:^6666CC Headgear^000000", "Defense:^0000FF 0^000000", "Position:^6666CC Upper^000000", "Weight:^009900 10^000000", "Jobs:^6666CC Female Only", "All jobs^000000" }, slotCount = 0, ClassNum = 44, costume = true },