Jump to content

gugusjungs

Members
  • Posts

    13
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Thailand

Recent Profile Visitors

4194 profile views

gugusjungs's Achievements

Poring

Poring (1/15)

  • Conversation Starter
  • Dedicated
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

7

Reputation

4

Community Answers

  1. @Radian data / texture / 유저인터페이스 / 전장적표시.bmp
  2. data / texture / effect in data.grf (jRO) BG_Icon.zip
  3. .@b = (BaseLevel/10); bonus bHit, 30-(.@b*3); bonus bMaxHP, 1000-(.@b*100); bonus bMaxSP, 200-(.@b*20); bonus bVariableCastrate,-10+.@b; bonus2 bAddItemHealRate,569,50-(.@b*10); bonus bHealPower,150-(.@b*10); bonus bHealPower2,150-(.@b*10); i not test.
  4. https://github.com/rathena/rathena/blob/master/conf/battle/monster.conf#L259 or /monsterhp
  5. in "function Equip_Menu" setarray .@pos$[1],"Upper Headgear","Armor","Left hand","Right hand","Garment","Footgear","Left Accessory","Right Accessory","Mid Headgear","Lower Headgear"; set .@menu$,""; for (set .@i,1; .@i <= 10; set .@i,.@i+1) { if (getequipisequiped(.@i)) set .@menu$, .@menu$+.@pos$[.@i]+" [^0055FF"+getequipname(.@i)+"^000000]"; set .@menu$, .@menu$+":"; } set @i, select(.@menu$); Replace to : setarray .@pos$[1],"Upper Headgear","Armor","Left hand","Right hand","Garment","Footgear","Left Accessory","Right Accessory","Mid Headgear","Lower Headgear"; setarray .@eq_pos[1], EQI_HEAD_TOP, EQI_ARMOR, EQI_HAND_L, EQI_HAND_R, EQI_GARMENT, EQI_SHOES, EQI_ACC_L, EQI_ACC_R, EQI_HEAD_MID, EQI_HEAD_LOW; set .@menu$,""; for (set .@i,1; .@i <= 10; set .@i,.@i+1) { if (getequipisequiped(.@eq_pos[.@i])) set .@menu$, .@menu$+.@pos$[.@i]+" [^0055FF"+getequipname(.@eq_pos[.@i])+"^000000]"; set .@menu$, .@menu$+":"; } set @i, .@eq_pos[select(.@menu$)];
  6. modify to remove prices file functions_kafras.txt in function F_KafSet search // VIP pricing varies across the regional servers; this is most practical. add before // VIP pricing varies across the regional servers; this is most practical. if (BaseLevel <= 30) for (set .@i, 0; .@i < getarraysize(@wrpP); set .@i, .@i + 1) set @wrpP[.@i], 0; // VIP pricing varies across the regional servers; this is most practical. added a sentence file functions_kafras.txt in function F_KafTele (add after line 6) mes "dont worry about prices if your'e under lvl 30"; or show text only lvl <30 if (BaseLevel <= 30) mes "dont worry about prices if your'e under lvl 30";
  7. Line 17 edit else { to else if (BaseLevel > 30) {
  8. rAthena skill 'random' is undefined! serve\src\map\skill.c:219::skill_chk This server download with last Github (https://github.com/rathena/rathena/commit/23540387212193d0496b311001f09becd59505a7) I got problem skill SIGHT BLASTER when use skill with monster or player. It’s show error rAthena skill 'random' is undefined! Server/src/map/skill.c219::skill_chk and src and db dind’t modify anything (original src & db) Maybe has other skill also please check it also skill 1028 is undefined skill.c:219::skill_chk skill 771 is undefined skill.c:219::skill_chk skill 778 is undefined skill.c:219::skill_chk skill 65535 status.c:95::status_skill2sc status_skill2sc unsupported skill id 65535 status_skill2sc unsupported skill id 0 VIDEO: free picture upload
  9. https://hashield.net/
  10. mes "You can <URL>YouTube<INFO>https://www.youtube.com/embed/UAXMc2ebEQ0,Width,Height</INFO></URL>"; without hex
  11. npc\re\jobs\novice\novice.txt
×
×
  • Create New...