Thread: img layers
View Single Post
  #4  
Old 12-09-2002, 12:13 AM
Ningnong Ningnong is offline
Registered User
Ningnong's Avatar
Join Date: Nov 2002
Location: < -- way
Posts: 262
Ningnong is on a distinguished road
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;
}
Reply With Quote