Jump to content

Mael

Forum Moderator
  • Posts

    832
  • Joined

  • Last visited

  • Days Won

    20

Community Answers

  1. Mael's post in I can't open KRO Data.grf was marked as the answer   
    Use this.
     
  2. Mael's post in Adding/Editing Item Use Effect was marked as the answer   
    These red/yellow/orange/white potion visual effect are hard-coded in the client itself.
     
  3. Mael's post in [GUIDE] Change Aura Max Level - New Clients was marked as the answer   
    I just tried on client 2018-06-21aRagexeRE
    thanks so much @melv0❤️ 
    1. How to change the maximum level of your server? https://gist.github.com/cydh/d82a06472f12c4ec7f38ab3de22fe86b
    2. How to make the aura appear at a maximum level other than 99? 
    data\luafiles514\lua files\service_korea\ExternalSettings_kr.lub & externalsettings_kr_sak.lub MaxLevelTable = { BaseLevel = 99, << Edit this part into 255 BaseLevel3rd = 185, BaseLevelExtend2 = 160, BaseLevelUpperJob = 185, BaseLevelHomun = 185, BaseLevelDoram = 185, JobLevelNovice = 10, JobLevelSuperNovice = 99, JobLevelBase = 50, JobLevel2nd = 70, JobLevel3rd = 65, JobLevelExtend2 = 50, JobLevelUpperJob = 60, JobLevelDoram = 55 } and that's it, see magic ingame ? 
  4. Mael's post in @gstorage problem was marked as the answer   
    storage skill i think ?
    Investigating in the discord of rAthena ❤️  I found the answer.
    FIXED. 
    diff --git a/src/custom/defines_post.hpp b/src/custom/defines_post.hpp index 253b8cdbf..4c10c0623 100644 --- a/src/custom/defines_post.hpp +++ b/src/custom/defines_post.hpp @@ -9,6 +9,8 @@ * For detailed guidance on these check http://rathena.org/wiki/SRC/config/ **/ - +#ifdef OFFICIAL_GUILD_STORAGE +#undef OFFICIAL_GUILD_STORAGE +#endif #endif /* CONFIG_CUSTOM_DEFINES_POST_HPP */ thanks to @Secrets
    another solution is... "for pre-re"
    db/pre-re/guild_skill_tree.yml
    - Id: GD_GUILD_STORAGE MaxLevel: 5 db/pre-re/skill_db.yml
    - Id: 10016 Name: GD_GUILD_STORAGE Description: Guild Storage Expansion MaxLevel: 5 Flags: IsGuild: true thanks to Aglao for the complementary information.
  5. Mael's post in ENDLESS CELLAR was marked as the answer   
    https://github.com/Nyliar/RagnarokContent/tree/master/Instance/Officials/Rathena/EndlessCellar
  6. Mael's post in Script for weapon was marked as the answer   
    32107,Adaga_da_perdicao,Adaga_da_perdicao,4,2400,,600,43,,1,4,0x00001000,7,2,2,1,1,1,1,{ if(getequipid(EQI_HAND_R) == 12345){ unequip(EQI_HAND_R); dispbottom "You can only equip one type of this weapon."; } else if(EQI_HAND_L == 12345){ unequip(EQI_HAND_L); dispbottom "You can only equip one type of this weapon."; } },{},{}  
  7. Mael's post in Random Daily QuestS was marked as the answer   
  8. Mael's post in guys im looking for daily reward npc was marked as the answer   
  9. Mael's post in please, i want the EndlessCellar a npc script for "rathena" was marked as the answer   
    https://github.com/Nyliar/RagnarokContent/tree/master/Instance/Officials/Rathena/EndlessCellar
  10. Mael's post in PLAGIARISM NPC was marked as the answer   
    I use this, it is much simpler.
    prontera,190,213,3 script Plagearism Master 4_M_TWMASKMAN,{ mes "[ ^FF0000Fu^000000 ]"; mes "I have the ability of many Jobs, I am a Master!"; mes "What Skill do you need to copy?"; set .@SkillID,select( implode( .SkillName$,":" ) ) - 1; mes "Selected "+.Skillname$[.@SkillID]; close2; unitskilluseid getnpcid(0),.SkillID[.@SkillID],10,getcharid(3); end; OnInit: setarray .SkillID[0],14,19,20,90,84,89,535,537,540,62,379; setarray .SkillName$[0],"Cold Bolt","Fire Bolt","Lightning Bolt","Earth Spike","Jupitel Thunder","Storm Gust","Crimson Fire Formation","Lightning Spear of Ice","Wind Blade","Bowling Bash","Soul Breaker"; end; }  
×
×
  • Create New...