
12-09-2002, 12:13 AM
|
Registered User
|
 |
Join Date: Nov 2002
Location: < -- way
Posts: 262
|
|
I think you are using something like
if (playerenters){
do all this stuff;
}
well that only occurs once, you need to have a timeout loop to keep checking the players mp
example:
//#CLIENTSIDE
if (playerenters || timeout){
changeimgpart 402,0,0,int(playermp),25; //<your script\/
showimg 402,mptest.gif,screenwidth-550,screenheight-400;
timeout = .1;
} |
|
|