Drink action wont show up
Under the verb, put "set src in usr", this says only give my verb to whoever I am in.
i'm not sure how to subtract thirst from player. And have it stop at 0
An easy way to 'snap' between a range is to use the max/min procedures. You can run the code below after changing the value and it will always stop between 0 and 100.
var/max_value = 100
var/min_value = 0
var/current_value = 150
current_value = min(max(current_value,min_value),max_value)
Oh I see what you are coding. Yeah, I already have bottle'o'water in game, its just i'm not sure how to subtract thirst from player. And have it stop at 0