Thread: Particle help
View Single Post
  #3  
Old 04-27-2006, 04:09 AM
Riot Riot is offline
Delteria Management
Join Date: Nov 2003
Location: Seminole County, Florida
Posts: 280
Riot is on a distinguished road
Quote:
Originally Posted by hotrian
NPC Code:
function onCreated(){
showimg(200,"",player.x,player.y);
with (findimg(200)) {
layer = 0;

You may just do
HTML Code:
function onCreated() {
  with (findimg(200)) {
    layer = 0;
    ...
  }
}
The Wiki/Bible is also very helpful for particles: http://wiki.graal.net/index.php/Particle_Engine
Reply With Quote