-
Posts
722 -
Joined
-
Last visited
-
Days Won
10
Community Answers
-
LearningRO's post in command only usable during event was marked as the answer
- script atcmd_example -1,{ OnInit: bindatcmd "test",strnpcinfo(3) + "::OnAtcommand"; end; OnAtcommand: if(strcharinfo(3) == "mapevent" { do comand here } end; } try this
-
LearningRO's post in TAG for vip player was marked as the answer
yes possible just make your own HatEffect
and combine with
OnPcLoginEvent: if(getgroupid() == 5){ hateffect,<your Hat effect ID>,true; }
-
LearningRO's post in How to enable renewal guild skills? was marked as the answer
in mmo.hpp
change maxguild
into
#define MAX_GUILDSKILL 17
Hi, do you have solved your problem?
-
LearningRO's post in Get instance point when finishing the instance was marked as the answer
just Add this script when player finish the instance
setd #INSTANCEPOINTS, #INSTANCEPOINTS+ 100;
-
LearningRO's post in Adding Green Aura to Custom MVP was marked as the answer
in client side system/monster_size_effect.lub
-
LearningRO's post in Guild Storage not working on pre ren server lastest rathena was marked as the answer
Solved by increase MAX GUILD SKILL ON MMO.HPP from 15 to 17
-
LearningRO's post in item_randomopt_group.txt and 2 slot options was marked as the answer
By default yes
but you can try this diff
https://rathena.org/board/topic/122671-randomizing-random-option/
-
LearningRO's post in MVP Cards and Mini Boss was marked as the answer
you can configuration on system/iteminfo.lub
change the resource sprite to your sprite
-
LearningRO's post in Disguise Event that gives random reward was marked as the answer
getitem callfunc("F_Rand",6635,19598),1;
-
LearningRO's post in H< How to keep refine and cards. was marked as the answer
added this script command
[email protected] = getequiprefinerycnt(EQI_ARMOR);
and then change
getitem2 [email protected], 1, 1, 0, 0, 0, 0, 0, [email protected]; to
getitem2 [email protected], 1, 1, [email protected], 0, 0, 0, 0, [email protected]; -
LearningRO's post in Gabriel.spr & .act not showing on Kro database 2019 was marked as the answer
i think you missing file transparentitem.lub
-
LearningRO's post in script npc error getmapxy was marked as the answer
change this:
getmapxy [email protected]$,[email protected],[email protected],0;
to :
getmapxy [email protected]$,[email protected],[email protected];
-
LearningRO's post in Thor Patcher didn't read main.INI was marked as the answer
Problem Solve
i just add www to my url and work it
coz my nginx config always direct my site with www i think thiss is the problem 😄
-
LearningRO's post in Random box (use getitem2) was marked as the answer
thanks u for ur help
but i found more simple script
function script L_CustomLRGmid { set @randOBB,rand(6); if(@randOBB==0){ getitem2 32121,1,1,0,0,7905,7905,0,0; } if(@randOBB==1){ getitem2 19509,1,1,0,0,7905,7905,0,0; } if(@randOBB==2){ getitem2 20318,1,1,0,0,7905,7905,0,0;; } if(@randOBB==3){ getitem2 20131,1,1,0,0,7905,7905,0,0;; } if(@randOBB==4){ getitem2 20399,1,1,0,0,7905,7905,0,0;; } if(@randOBB==5){ getitem2 20314,1,1,0,0,7905,7905,0,0;; } end; } and on item db just call that function