Vesar2005-07-20 18:26:29
I've been experimenting with deep wound curing, and I've noticed that the cure messages don't comply with what is being cured (well, not specifically).
Example: When I apply health to my legs, it tells me "The deep damage in your legs completely heals." Now, for this particular case, I had damage to both left and right legs. When I applied health to "legs," this is what it told me, however, I still had damage to one of my legs.
My idea is simply to tell us WHICH body part we are healing. For example, say I have damage to both legs. I apply health to legs, and get the message "The deep damage in your left leg completely heals." The same can be done with arms, as well.
What does everyone else think? Could/should this small change be implemented?
Edit: The same is true for "skin." If you just apply health, it tells you "The deep damage in your skin completely heals." Could we also get the correct curing message put on this, as well?
Example: When I apply health to my legs, it tells me "The deep damage in your legs completely heals." Now, for this particular case, I had damage to both left and right legs. When I applied health to "legs," this is what it told me, however, I still had damage to one of my legs.
My idea is simply to tell us WHICH body part we are healing. For example, say I have damage to both legs. I apply health to legs, and get the message "The deep damage in your left leg completely heals." The same can be done with arms, as well.
What does everyone else think? Could/should this small change be implemented?
Edit: The same is true for "skin." If you just apply health, it tells you "The deep damage in your skin completely heals." Could we also get the correct curing message put on this, as well?
Gwylifar2005-07-20 18:45:44
By the same token we should be able to apply to a specific limb.
Richter2005-07-20 18:49:28
Doesn't it cure the most wounded leg/arm first?
Gwylifar2005-07-20 18:55:42
Last time I checked, it was left first.
Vesar2005-07-20 22:20:33
No, it doesn't cure most wounded first. I tested with heavy gut damage and light chest, just "apply health" and it cured the chest first.
Shiri2005-07-21 02:12:55
And it seems to cure legs over all others. Priority is all kinds of weird.
Vesar2005-07-21 02:31:48
So how about it? Can this be tweaked?
Ekard2005-07-21 10:09:01
Yea, left limb is cured as first, if you heal legs, then your left leg will he cured, if you dont have deepwounds in left leg then your right leg will be cured.
I have something like this:
And i think it works fine.
Edit: It would be to easy to track waht you cured. Dont change anything. Lusternia have few things that make making curing system a challenge. Like failsafe for herbs is easy cose you know what herb you have eaten, but for pipes and potions it isnt so easy.
I have something like this:
CODE
#TRIGGER {^The deep damage in your (*) completely heals.$} {
 #if %1="head" {#var wound_head 100}
 #if %1="gut" {#var wound_gut 100}
 #if %1="chest" {#var wound_chest 100}
 #if %1="arms" {#if @wound_larm<100 {#var wound_larm 100} {#var wound_rarm 100}}
 #if %1="legs" {#if @wound_lleg<100 {#var wound_lleg 100} {#var wound_rleg 100}}
 #if @balance_potion="trying" {#var balance_potion no}
 }
 #if %1="head" {#var wound_head 100}
 #if %1="gut" {#var wound_gut 100}
 #if %1="chest" {#var wound_chest 100}
 #if %1="arms" {#if @wound_larm<100 {#var wound_larm 100} {#var wound_rarm 100}}
 #if %1="legs" {#if @wound_lleg<100 {#var wound_lleg 100} {#var wound_rleg 100}}
 #if @balance_potion="trying" {#var balance_potion no}
 }
And i think it works fine.
Edit: It would be to easy to track waht you cured. Dont change anything. Lusternia have few things that make making curing system a challenge. Like failsafe for herbs is easy cose you know what herb you have eaten, but for pipes and potions it isnt so easy.
Terenas2005-07-21 16:36:19
The parts for arms and legs will of course only work if you were tracking the limbs beforehand though. The easiest method I know of is obviously by limb afflictions given off, otherwise you will have to do WOUNDS to determine your current wound levels of your arms and legs.
Ekard2005-07-22 05:42:23
Yea, i have such wound tracker.
Like i sad, making system here is fun!
Like i sad, making system here is fun!