18.10.2010, 16:45
I can't make the bots dance! :S
I even preload the animation!
now here's the Npc mode..
and this is the command "/strip3" in the gamemode
I even preload the animation!
now here's the Npc mode..
Код:
#include <a_npc> public OnPlayerStreamIn(playerid) { SetMyPos(1967.5193,395.3029,21.5836); SetMyFacingAngle(267.9429); SendCommand("/strip3"); return 1; }
Код:
if (strcmp("/strip3", cmdtext, true, 10) == 0) //20 { SetPlayerSkin(playerid,246); ClearAnimations(playerid,1); ApplyAnimation(playerid,"STRIP","null",0.0,0,0,0,0,0); ApplyAnimation (playerid,"STRIP","STR_Loop_C",4,1,0,0,0,0); return 1; }