[HELP]How to make a NPC do an Animation ---CLOSED---
#9

You need to pre load the animations.

Top of script:
pawn Код:
new gPlayerUsingLoopingAnim[MAX_PLAYERS];
new gPlayerAnimLibsPreloaded[MAX_PLAYERS];
Somewhere else:
pawn Код:
LoopingAnim(playerid,animlib[],animname[], Float:Speed, looping, lockx, locky, lockz, lp)
{
  gPlayerUsingLoopingAnim[playerid] = 1;
  ApplyAnimation(playerid, animlib, animname, Speed, looping, lockx, locky, lockz, lp);
}

PreloadAnimLib(playerid, animlib[])
{
    ApplyAnimation(playerid,animlib,"null",0.0,0,0,0,0,0);
}
Add these to OnPlayerConnect:
pawn Код:
public OnPlayerConnect(playerid)
{
  gPlayerUsingLoopingAnim[playerid] = 0;
    gPlayerAnimLibsPreloaded[playerid] = 0;
  return 1;
}
Example OnPlayerSpawn:
pawn Код:
public OnPlayerSpawn(playerid)
{
  if(!gPlayerAnimLibsPreloaded[playerid]) {
        PreloadAnimLib(playerid,"DANCING");
        gPlayerAnimLibsPreloaded[playerid] = 1;
    }

  if(!IsPlayerNPC(playerid)) return 0;

    new playername[64];
    GetPlayerName(playerid,playername,64);

    if(!strcmp(playername,"Example",true)) {
    SetSpawnInfo( playerid, 0, 87, 1203.9446,16.5226,1000.9219, 344.9598, 0, 0, 0, 0, 0, 0 );
    ShowPlayerMarkers(0);
    LoopingAnim(playerid,"DANCING","DAN_Loop_A",4.1,1,1,1,1,0);
    }
  return 1;
}
Hope this helps.
Reply


Messages In This Thread
[HELP]How to make a NPC do an Animation ---CLOSED--- - by Epic Shower - 17.03.2010, 01:21
Re: [HELP] Make NPC do an Animation! - by andrewp - 17.03.2010, 01:23
Re: [HELP] Make NPC do an Animation! - by Epic Shower - 17.03.2010, 15:34
Re: [HELP] Make NPC do an Animation! - by Epic Shower - 17.03.2010, 15:36
Re: [HELP] Make NPC do an Animation! - by boelie - 17.03.2010, 15:37
Re: [HELP] Make NPC do an Animation! - by Epic Shower - 17.03.2010, 21:33
Re: [HELP] Make NPC do an Animation! - by boelie - 18.03.2010, 10:31
Re: [HELP] Make NPC do an Animation! - by XGh0stz - 18.03.2010, 11:48
Re: [HELP] Make NPC do an Animation! - by V1ceC1ty - 18.03.2010, 12:20
Re: [HELP] Make NPC do an Animation! - by Epic Shower - 18.03.2010, 23:11

Forum Jump:


Users browsing this thread: 1 Guest(s)