Thread: Image Issue
View Single Post
  #3  
Old 08-28-2011, 07:46 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Couple more issues.
You don't need to start showing the image when it is created. Just show it once in the timeout. And also your styling should be styled with this.

Here is what you need.
PHP Code:
//#CLIENTSIDE 

function onCreated() {
  
//Start the timer
  
setTimer(0.05);
}

function 
onTimeOut() {
  
//Show the image.
  
showImg(1,"block.png",player.x,player.y);
  
//Keep looping 
  
setTimer(0.05);

Hope that helped!
__________________
Reply With Quote