
04-04-2005, 10:21 PM
|
|
Registered User
|
Join Date: Feb 2005
Posts: 14
|
|
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! |
|
|
|