The Dink Network

BattleSys 3.1 Finished, but still 1 problem

February 7th 2003, 10:15 AM
old.gif
Ok, I wanna know how they made the timer in Mystery Island? ( Ye know, the time you have to destroy all the cameras )

Because I wanna modify it so that it displays the enemies hitpoints.

How do I do that...

Like this:

&buzzy = sp_hitpoints(&creasu, -1);

//SAY "Hitpoints: &buzzy"

when you hit the creature it updates again...

I cannot find the command for this...
February 7th 2003, 10:48 AM
wizardb.gif
Phoenix
Peasant He/Him Norway
Back from the ashes 
: Ok, I wanna know how they made the timer in Mystery Island? ( Ye know, the time you have to destroy all the cameras )

: Because I wanna modify it so that it displays the enemies hitpoints.

: How do I do that...

: Like this:

: &buzzy = sp_hitpoints(&creasu, -1);

: //SAY "Hitpoints: &buzzy"

: when you hit the creature it updates again...

: I cannot find the command for this...

It's simple. you need a global variable.. then:

&theglobal = say_xy("Oh joy", 390, 0);

sp_kill(&theglobal, 0);

and when you update it, you

sp_active(&theglobal, 0);

and then repeat that up there with the new points. (If I'm wrong about something here anyone, feel free to correct me. )
February 7th 2003, 10:55 AM
old.gif