Jump to content

LearningRO

Members
  • Posts

    770
  • Joined

  • Last visited

  • Days Won

    11

Community Answers

  1. LearningRO's post in How to allign this icons? was marked as the answer   
    on nemo you will find patch "skip icon"
    or just use search on nemo type "skip"
  2. LearningRO's post in Can someone send to me a data.grf with fix the invisible char? (See picture) was marked as the answer   
    try this file
    https://rathena.org/board/topic/104923-job-sprite-third-job-costumes-new-classes-corrected/
  3. LearningRO's post in Cutin with Buttons was marked as the answer   
    you can addd it on /data/book/
  4. 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
  5. 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; }  
  6. 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?
     
  7. 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;
  8. LearningRO's post in Adding Green Aura to Custom MVP was marked as the answer   
    in client side system/monster_size_effect.lub
  9. LearningRO's post in PVP drop skull on specific time was marked as the answer   
  10. 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
  11. 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
  12. LearningRO's post in Disguise Event that gives random reward was marked as the answer   
    getitem callfunc("F_Rand",6635,19598),1; 
  13. LearningRO's post in Request> Simple Script [TIA] was marked as the answer   
    {.@r= getrefine(); if (.@r >=9 ) { bonus bAddMaxWeight,5000; }  
  14. LearningRO's post in H< How to keep refine and cards. was marked as the answer   
    added this script command
    .@refine = getequiprefinerycnt(EQI_ARMOR);
     
    and then change 
    getitem2 .@itemid, 1, 1, 0, 0, 0, 0, 0, .@addpart; to
     
    getitem2 .@itemid, 1, 1, .@refine, 0, 0, 0, 0, .@addpart;
  15. 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 
  16. LearningRO's post in script npc error getmapxy was marked as the answer   
    change this:
    getmapxy .@map$,.@x,.@y,0;
    to :
    getmapxy .@map$,.@x,.@y;
  17. 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 ?
  18. LearningRO's post in Missing Sprites? was marked as the answer   
    add this file on map folder
    veil.bmp
  19. 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  
×
×
  • Create New...