Still does not put the npc on my server,
I tried putting in other ways to tell if the npc was created
NPC Code:
/////////////////////////////
//action of this npc = plant (for farming)
/////////////////////////////
if (actionplant)
{
putexplosion 1,x,y;
putnpc2 30,30,{
setimg ion.gif;
setplayerprop #c, I am an ion;
shootarrow up;
}
}
//#CLIENTSIDE
if (weaponfired && isweapon)
{
//set animation or sprite
freezeplayer .1;
playersprite=33;
triggeraction playerx+1.5+vecx(playerdir)*2,playery+2+vecy(playe rdir)*2,plant,Planting,;
}
Why does this still not work?