![]() |
Regeneration armor uhm uhm! - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: General Help (/Forum-General-Help) +--- Thread: Regeneration armor uhm uhm! (/Thread-Regeneration-armor-uhm-uhm) |
Regeneration armor uhm uhm! - Crusader - 03-01-2013 10:22 PM What's the best way to do a regenerative armor (regen hits, or mana, or stam) ? i mean, that every single piece of the armor can regenerate urself up to a certain hitpoints (like i have 100 hits,but i regen fast till 50) the old way was to do add a timer on the items...and on timer (like 3 secs) it will gain 1-2 more hits if the healt was below 50. But maybe there is a better way? i tried with life regen override tags, but i don't think i'm very good at using them....it ends up with a mess. Suggestions? RE: Regeneration armor uhm uhm! - darksun84 - 03-01-2013 11:44 PM I think that using a timer/timerf is the only way if you don't want to use regen tags . RE: Regeneration armor uhm uhm! - admin phoenix - 03-02-2013 12:31 AM TAG.OVERRIDE.REGEN_$statid This is used as a modifier for the REGEN rate from Sphere.ini. The value is subtracted from the normal REGEN rate. [Edit] Sorry, didnĀ“t read your post rightly ![]() RE: Regeneration armor uhm uhm! - Crusader - 03-02-2013 01:29 AM i had also a problem with armors that drains mana: badly regen tags doesn't work properly, they always regen even if i put zero or -100 as a regen value. i guess the only way to do this is modify the typedef of the armor and add a timer every 3 seconds that lower mana to 0. I tryed also this: EDIT: i just fixed this version and now seems to work properly Code: [TYPEDEF T_ARMOR_LEATHER] // but also t_armor Now i need to address the regen life problem. For the moment, the best approach seems to be: 1) a typedef to add as tevents on all the pieces of the armor, with timer that every 3 second give +1 hitpoint, if hits are below 50. 2) like before, but instead of having every pieces of the armor with timer, use only one timer within a memory, to add to the player as the first item is equipped, and through the more1 value, raise his regen value (every armor piece added will increase the more by one, so On timer the player will be healed for the <more1> value of the memory Any other suggestions are more than appreciated! RE: Regeneration armor uhm uhm! - RanXerox - 03-02-2013 09:25 AM I made regen work using this technique... a TAG is added to the equipable item (armor or whatever)... then an event on all equipable items handles the triggers: Code: [EVENT e_equipitem] RE: Regeneration armor uhm uhm! - UltimaAku - 04-16-2013 05:29 AM how fast do you want the life regen? |