Oraios Posted July 31, 2013 Group: Members Topic Count: 31 Topics Per Day: 0.01 Content Count: 60 Reputation: 1 Joined: 11/06/12 Last Seen: December 16, 2016 Share Posted July 31, 2013 Hi community! First sorry for my bad English... So, I have a few Questions : Buffer : Can anyone make a script of a buffer on which one we can take all buffs (see buffs) until lvl 500 and only at lvl 500 agi and bless + 100% heal. The buffer should also keep elements of the weapons (which should be able to take even after lvl 500) ? Buffs : percentheal 100,100; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; sc_start SC_ASPDPOTION2,360000,0; sc_start SC_STRFood,360000,10; sc_start SC_AGIFood,360000,10; sc_start SC_VITFood,360000,10; sc_start SC_INTFood,360000,10; sc_start SC_DEXFood,360000,10; sc_start SC_LUKFood,360000,10; sc_start SC_HitFood,1200000,30; sc_start SC_FleeFood,1200000,30; sc_start SC_BATKFood,1200000,10; sc_start SC_MATKFood,120000,10; Questions : 1) Does anyone have a exp table of the homunculus until lvl 500? 2) Where can I change the Asura Strike Damage? I want him to make 50% less damage... 3) Where can I change that we arent freeze immun after 400 luk? Thank you very much for your help! ~Oraios Quote Link to comment Share on other sites More sharing options...
Capuche Posted July 31, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted July 31, 2013 //===== rAthena Script ======================================= //= Healer //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.0a //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= Basic healer script. //============================================================ - script Healer -1,{ set .@Price,0; // Zeny required for heal set .@Buffs,1; // Also buff players? (1: yes / 0: no) set .@Delay,0; // Heal delay, in seconds if (@HD > gettimetick(2)) end; if (.@Price) { message strcharinfo(0),"Healing costs "+.@Price+" Zeny."; if (Zeny < .@Price) end; if(select("^0055FFHeal^000000:^777777Cancel^000000") == 2) end; set Zeny, Zeny-.@Price; } specialeffect2 EF_HEAL2; percentheal 100,100; if (.@Buffs) { if ( BaseLevel < 499 ){ sc_start SC_ASPDPOTION2,360000,0; sc_start SC_STRFood,360000,10; sc_start SC_AGIFood,360000,10; sc_start SC_VITFood,360000,10; sc_start SC_INTFood,360000,10; sc_start SC_DEXFood,360000,10; sc_start SC_LUKFood,360000,10; sc_start SC_HitFood,1200000,30; sc_start SC_FleeFood,1200000,30; sc_start SC_BATKFood,1200000,10; sc_start SC_MATKFood,120000,10; } specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; } if (.@Delay) set @HD, gettimetick(2)+.@Delay; end; } alberta,25,240,6 duplicate(Healer) Healer#alb 909 aldebaran,135,118,6 duplicate(Healer) Healer#alde 909 amatsu,200,79,4 duplicate(Healer) Healer#ama 909 ayothaya,207,169,6 duplicate(Healer) Healer#ayo 909 brasilis,194,221,6 duplicate(Healer) Healer#bra 909 comodo,184,158,6 duplicate(Healer) Healer#com 909 dewata,193,175,6 duplicate(Healer) Healer#dew 909 eclage,105,35,4 duplicate(Healer) Healer#ecl 909 einbech,142,244,4 duplicate(Healer) Healer#einbe 909 einbroch,57,202,6 duplicate(Healer) Healer#einbr 909 dicastes01,201,194,4 duplicate(Healer) Healer#dic 909 geffen,115,72,6 duplicate(Healer) Healer#gef 909 gonryun,156,122,6 duplicate(Healer) Healer#gon 909 hugel,89,150,6 duplicate(Healer) Healer#hug 909 izlude,125,118,5 duplicate(Healer) Healer#izl 909 lighthalzen,149,103,6 duplicate(Healer) Healer#li 909 louyang,225,103,4 duplicate(Healer) Healer#lou 909 malangdo,132,114,6 duplicate(Healer) Healer#mal 909 malaya,205,205,6 duplicate(Healer) Healer#malay 909 manuk,256,176,6 duplicate(Healer) Healer#man 909 mid_camp,203,289,6 duplicate(Healer) Healer#mid 909 mora,106,100,6 duplicate(Healer) Healer#mora 909 morocc,153,97,6 duplicate(Healer) Healer#mor 909 moscovia,215,194,6 duplicate(Healer) Healer#mos 909 niflheim,188,180,5 duplicate(Healer) Healer#nif 909 payon,179,106,4 duplicate(Healer) Healer#pay 909 prontera,162,193,4 duplicate(Healer) Healer#pront 909 rachel,125,116,6 duplicate(Healer) Healer#rac 909 splendide,201,153,4 duplicate(Healer) Healer#spl 909 thor_camp,249,74,4 duplicate(Healer) Healer#thor 909 umbala,129,132,4 duplicate(Healer) Healer#umb 909 veins,217,121,4 duplicate(Healer) Healer#ve 909 xmas,143,136,6 duplicate(Healer) Healer#xmas 909 yuno,164,45,4 duplicate(Healer) Healer#yuno 909 1/ http://rathena.org/board/topic/80057-homunculus-max-level/?p=186575 2/ in battle.c... 3/ to quote Akinari in http://rathena.org/board/tracker/issue-7518-lastest-rathena-no-luk-300-immune-to-status/ This was changed in r17201 when Playtester found that luk status defense does not exist. Quote Link to comment Share on other sites More sharing options...
Oraios Posted August 1, 2013 Group: Members Topic Count: 31 Topics Per Day: 0.01 Content Count: 60 Reputation: 1 Joined: 11/06/12 Last Seen: December 16, 2016 Author Share Posted August 1, 2013 Thx very much! In the Buffer script are there the elemental weapon buffs? And where can I change the cart weight for a whitesmith or merchant? ~Oraios Quote Link to comment Share on other sites More sharing options...
Oraios Posted August 3, 2013 Group: Members Topic Count: 31 Topics Per Day: 0.01 Content Count: 60 Reputation: 1 Joined: 11/06/12 Last Seen: December 16, 2016 Author Share Posted August 3, 2013 help Quote Link to comment Share on other sites More sharing options...
Emistry Posted August 3, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted August 3, 2013 conf/battle/player.conf#L104 // Max weight carts can hold. max_cart_weight: 8000 Quote Link to comment Share on other sites More sharing options...
Question
Oraios
Hi community!
First sorry for my bad English...
So, I have a few Questions :
Buffer :
Can anyone make a script of a buffer on which one we can take all buffs (see buffs) until lvl 500 and only at lvl 500 agi and bless + 100% heal. The buffer should also keep elements of the weapons (which should be able to take even after lvl 500) ?
Buffs :
Questions :
1) Does anyone have a exp table of the homunculus until lvl 500?
2) Where can I change the Asura Strike Damage? I want him to make 50% less damage...
3) Where can I change that we arent freeze immun after 400 luk?
Thank you very much for your help!
~Oraios
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.