View Single Post
  #1  
Old 04-04-2005, 10:21 PM
jas988 jas988 is offline
Registered User
Join Date: Feb 2005
Posts: 14
jas988 is on a distinguished road
I need help making this item.

I want to make a pot that makes a heart when thrown. the problem is i can't get the heart to appear. i tried...

// NPC made by jas988
if (created) {
canbecarried;
}
if (wasthrown) {
putleaps 4,x,y;
destroy;
putobject 5,x,y;
}

and...

// NPC made by jas988
if (created) {
canbecarried;
}
if (wasthrown) {
putleaps 4,x,y;
destroy;
putobject heart,x,y;
}


but no prevail. I need some help please!
Reply With Quote