View Single Post
  #3  
Old 07-08-2013, 10:18 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
Wouldn't:

NPC Code:

temp.obj = showImg(20, "shadow.png", player.x + 0.5, player.y + 1.5);
temp.obj.layer = 1;



Work? Or in this circumstance would he have to use fingImg(). I personally never use showImg(). I always use fingImg() for drawing whatever I need.

PHP Code:
temp.obj findImg(20);

with (temp.obj) {
  
image "shadow.png";
  
  
player.0.5;
  
player.1.5;
  
  
layer 0;

Reply With Quote