Thread: Help - Showimg
View Single Post
  #2  
Old 07-23-2010, 07:37 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
PHP Code:
//#CLIENTSIDE
function onCreated() {
 
this.setShape(1,80,32);
 
showimg(200,"treetrunk1.png",this.x-5,this.y-6);
 
changeimgvis(200,1);
 
showimg(201,"treetop1.png",this.x-5,this.y-15);

Firstly, you need to surround your strings(words, or anything not numerical) in quotations. Secondly, you want to use an index of 200 and over... since it's clientside, it only needs to show for that player(as each player will get their own instance). Anything under 200 attempts to display the image to all players, and that's only useful for weapons like boomerangs and so.
Reply With Quote