View Single Post
  #6  
Old 01-31-2012, 03:37 PM
khortez khortez is offline
PrototypeX
khortez's Avatar
Join Date: Dec 2008
Posts: 91
khortez will become famous soon enough
Quote:
Originally Posted by callimuc View Post
Just in case other players might get across that question:



partx and party are changing the locations from where the image will be shown. partw and parth are changing the width and height from the image (how big it will appear). So:

PHP Code:
with (findimg(200)) {
  
image "head0.png";
  
partx =  0;  //starting x
  
party 64;  //starting y
  
partw 32;  //width 
  
parth 32;  //height

Will display the head0.png. It will show that image from the image´s x = 0 and the images y = 64 (from there on the front view of the head starts). The width will be 32 aswell as the height. So there will be only the front view of the head displayed

Just explained it that way since you told me once that it helps you better

Thank you i appreciate it, some others might benefit from this as well later.
Reply With Quote