The Dink Network

Update status bar ?

February 2nd 2003, 10:16 AM
pq_frog.gif
Ric
Peasant They/Them Canada
 
I'm scripting an option where Dink may pay for something with &lifemax. But I need to know how to update the status bar. It automaticaly updates when I &lifemax += 10; but still looks long when I &lifemax -= 10;
February 2nd 2003, 11:02 AM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
: I'm scripting an option where Dink may pay for something with &lifemax. But I need to know how to update the status bar. It automaticaly updates when I &lifemax += 10; but still looks long when I &lifemax -= 10;

Did you try draw_status(); ? Also, you need to set this var to 1:

&update_status = 1;

February 2nd 2003, 12:07 PM
pq_frog.gif
Ric
Peasant They/Them Canada
 
: Did you try draw_status(); ? Also, you need to set this var to 1:

: &update_status = 1;

Yes! that works. Thanks. I'm not sure what &update_status does, but this works.