Jump to content

Jaburak

Members
  • Posts

    1125
  • Joined

  • Days Won

    31

Everything posted by Jaburak

  1. http://rathena.org/board/files/file/2356-warp-go-damage-delay/
  2. Jaburak

    Cliente Ro

    Aquí: https://subversion.assembla.com/svn/weetools/trunk/ShinsDiffPatcher/
  3. Still not working Weird, it works fine on me.
  4. trunk/conf/ login_athena.conf map_athena.conf char_athena.conf
  5. http://rathena.org/wiki/Permanent_Monster_Spawn
  6. @sir anakid how can i use hamachi to host my server to other im using hamachi for offline mode and its work Install Hamachi Set your Hamachi IP in char_athena.conf and map_athena.con Put Hamachi IP in clientinfo.xml sir i have my new post ,posting my config with hamachi and wan ip http://rathena.org/board/topic/83530-failed-to-connect-to-server-help/ I already replied on it.
  7. Try this: char_athena.conf login_ip: 25.60.37.14 char_ip: 25.60.37.14 map_athena.conf char_ip: 25.60.37.14 map_ip: 25.60.37.14 Put your Hamachi IP in your clientinfo.xml Tell to your friend to download and install Hamachi; then connect to your hamachi IP.
  8. @sir anakid how can i use hamachi to host my server to other im using hamachi for offline mode and its work Install Hamachi Set your Hamachi IP in char_athena.conf and map_athena.con Put Hamachi IP in clientinfo.xml
  9. battle/skill.conf // Can Rogues plagiarize advanced job skills // 0 = no restriction // 1 = only stalker may plagiarize advanced skills // 2 = advanced skills cannot be plagiarized by anyone // Official servers setting: 2 copyskill_restrict: 2 I'm not sure, just try to change it to 0 or 1.
  10. ^ Link down. Other helpful link; http://rathena.org/board/topic/75875-mvp-kill-reward-npc/
  11. Try using other email like Gmail and Hotmail.
  12. Well you need a guild to be able to see your party name.
  13. trunk/src/map/battle.c Find: case RK_DRAGONBREATH: md.damage = ((status_get_hp(src) / 50) + (status_get_max_sp(src) / 4)) * skill_lv; RE_LVL_MDMOD(150); if (sd) md.damage = (int64)md.damage * (100 + 5 * (pc_checkskill(sd,RK_DRAGONTRAINING) - 1)) / 100; md.flag |= BF_LONG|BF_WEAPON; Replace: case RK_DRAGONBREATH: md.damage = ((status_get_hp(src) / 50) + (status_get_max_sp(src) / 4)) * skill_lv; RE_LVL_MDMOD(150); if (sd) md.damage = (int64)md.damage * (50 + 5 * (pc_checkskill(sd,RK_DRAGONTRAINING) - 1)) / 100; md.flag |= BF_LONG|BF_WEAPON;
  14. prontera,164,167,2 script DB Trader 912,{ mes "[ Sarah ]"; mes "Hello, traveller!"; mes "How may I help you today?"; menu "My Gold Coin to Dead Branch!",Ldb, "My Gold Coin to Bloody Branch!",Lbb, "Nothing",L_Not; Ldb: mes "[ Sarah ]"; mes "I will replace your 1 Gold Coin into 10 Bloody Branch!"; next; if(countitem(671) < 1) goto L_CantMake; delitem 671,1; mes "Oh! Thank you..."; next; mes "Here you go!!!"; getitem 604,50; close; Lbb: mes "[ Sarah ]"; mes "I will replace your 1 Gold Coin into 50 Dead Branch!"; next; if(countitem(671) < 1) goto L_CantMake; delitem 671,1; mes "Oh! Thank you..."; next; mes "Here you go!!!"; getitem 12103,10; close; L_Not: mes "[ Sarah ]"; mes "You do not have enough Gold Coin to complete this action."; close; }
  15. Jaburak

    Vending Tax

    trunk/conf/battle/items.conf // Tax to apply to all vending transactions (eg: 10000 = 100%, 50 = 0.50%) // When a tax is applied, the item's full price is charged to the buyer, but // the vender will not get the whole price paid (they get 100% - this tax). vending_tax: 200
  16. Set a mapflag in your castles.
  17. Try this; 12028,Box_Of_Thunder,Box of Thunder,2,1000,0,200,,,,,0xFFFFFFFF,7,2,,,2,,,{ sc_start SC_SpeedUp0,20000,0; },{},{}
  18. Add: if(Weight >= MaxWeight/2) goto Low; Low: mes "You are Overweight!"; close; why when i put this script it will keep telling You are Overweight! if(Weight >= MaxWeight/2) goto Low; and Low: mes "You are Overweight!"; close; but when this script only everything works fine the npc will closed automatic but i want to add message when the player is overweight the npc will tell. if(Weight >= MaxWeight/2) Where did you put it? Can you post your script? prontera,141,226,6 script Lotti Girl 714,{ mes "[Lotti Girl]"; mes "Hello Sir! Are you out"; mes "shopping in the city?!"; next; mes "[Lotti Girl]"; mes "I'm Lotti! I'll exchange cool"; mes "random prizes for every"; mes "^ff00001 Premium Ticket^000000."; next; mes "[Lotti Girl]"; mes "Our Grand prize is:"; mes "^ff0000Combat Knife^000000"; mes "Special prizes are:"; mes "^ff0000+7 Armor Refine Deed^000000"; mes "^ff0000+10 Weapon Refine Deed^000000"; mes "and ^ff0000+6 Armor Refine Deed^000000"; next; mes "[Lotti Girl]"; mes "You can still get random item"; mes "if you failed to get the grand"; mes "prize and special prizes."; if (countitem(7608) < 1) close; next; if(Weight >= MaxWeight/2) goto Low; Low: mes "You are Overweight!"; close; next; if(select("Deal me in!:No way...")==2) close; mes "[Lotti Girl]"; mes "Here we go..."; delitem 7608,1; set .@Total,2;//<%>,<ItemID>,<Amount> setarray .@P1[0],10,6233,1; setarray .@P2[0],20,1228,1; setarray .@P3[0],90,2423,1; setarray .@Default[0], 14232,5; set .@i, rand(1,.@Total); if (rand(1,100) > getd(".@P"+.@i+"[0]")) { for(set .@j,0; .@j<getarraysize(.@Default); set .@j,.@j+2) { getitem .@Default[.@j], .@Default[.@j+1]; if(!.@k[0]) setarray .@k[0], .@Default[.@j], .@Default[.@j+1]; }} else{ for(set .@j,1; .@j<getarraysize(getd(".@P"+.@i)); set .@j,.@j+2) { getitem getd(".@P"+.@i+"["+.@j+"]"), getd(".@P"+.@i+"["+(.@j+1)+"]"); if (!.@k[0]) { set .@gz,.@i; setarray .@k[0], getd(".@P"+.@i+"["+.@j+"]"), getd(".@P"+.@i+"["+(.@j+1)+"]"); break; } } } if(1<=.@gz&&.@gz<=4) announce "Congratulations! "+strcharinfo(0)+" just received "+getitemname(.@k[0])+" x "+.@k[1]+" from Lotti Girl (prontera 139 173)!",0; specialeffect2 248; close;} // http://rathena.org/board/topic/83017-pro-lotti-girl-refine-master/ prontera,141,226,6 script Lotti Girl 714,{ if(Weight >= MaxWeight/2) goto Low; mes "[Lotti Girl]"; mes "Hello Sir! Are you out"; mes "shopping in the city?!"; next; mes "[Lotti Girl]"; mes "I'm Lotti! I'll exchange cool"; mes "random prizes for every"; mes "^ff00001 Premium Ticket^000000."; next; mes "[Lotti Girl]"; mes "Our Grand prize is:"; mes "^ff0000+8 Armor Refine Deed^000000"; mes "Special prizes are:"; mes "^ff0000+7 Armor Refine Deed^000000"; mes "^ff0000+10 Weapon Refine Deed^000000"; mes "and ^ff0000+6 Armor Refine Deed^000000"; next; mes "[Lotti Girl]"; mes "You can still get random item"; mes "if you failed to get the grand"; mes "prize and special prizes."; if (countitem(7608) < 1) close; next; if(select("Deal me in!:No way...")==2) close; mes "[Lotti Girl]"; mes "Here we go..."; delitem 7608,1; set .@Total,8; //<%>,<ItemID>,<Amount> setarray .@P1[0],0,8012,1; setarray .@P2[0],1,8011,1; setarray .@P3[0],5,8006,1; setarray .@P4[0],20,8010,1; setarray .@P5[0],90,13517,5; setarray .@P6[0],80,12080,10; setarray .@P7[0],90,30110,5; setarray .@P8[0],80,12075,10; setarray .@Default[0],30095,5; set .@i, rand(1,.@Total); if (rand(1,100) > getd(".@P"+.@i+"[0]")) { for(set .@j,0; .@j<getarraysize(.@Default); set .@j,.@j+2) { getitem .@Default[.@j], .@Default[.@j+1]; if(!.@k[0]) setarray .@k[0], .@Default[.@j], .@Default[.@j+1]; } } else{ for(set .@j,1; .@j<getarraysize(getd(".@P"+.@i)); set .@j,.@j+2) { getitem getd(".@P"+.@i+"["+.@j+"]"), getd(".@P"+.@i+"["+(.@j+1)+"]"); if (!.@k[0]) { set .@gz,.@i; setarray .@k[0], getd(".@P"+.@i+"["+.@j+"]"), getd(".@P"+.@i+"["+(.@j+1)+"]"); break; } } } if(1<=.@gz&&.@gz<=4) announce "Congratulations! "+strcharinfo(0)+" just received "+getitemname(.@k[0])+" x "+.@k[1]+" from Lotti Girl (prontera 139 173)!",0; specialeffect2 248; close; Low: mes "You are Overweight!"; close; }
  19. http://rathena.org/board/topic/82967-hot-castle-event/
  20. trunk/src/map/battle.c Find: case WZ_STORMGUST: skillratio += 40*skill_lv; break; Replace: case WZ_STORMGUST: skillratio += 30*skill_lv; break;
  21. Jaburak

    Offline

    http://rathena.org/board/files/file/2502-gm-online-list/
×
×
  • Create New...