[HELP] What is the animation bedtime?
#1

I'm making an RPG (GameMode) put the animation that I use makes the doll above the ground ....
I use this:
Код:
ApplyAnimation(playerid,"INT_HOUSE", "BED_Loop_R", 4.1,0,0,1,1,temp(IGNORE));
What would be the ideal entertainment for him to lie on the floor?

Sorry for the bad English... I used the ****** translator!
Reply
#2

Код:
  if (strcmp("/lay", cmdtext, true, 6) == 0) {
     LoopingAnim(playerid,"BEACH", "bather", 4.0, 1, 0, 0, 0, 0); // Lay down
		 return 1;
  }
Код:
public OnPlayerSpawn(playerid)
{
  		PreloadAnimLib(playerid,"BEACH");
return 1;
}
Код:
LoopingAnim(playerid,animlib[],animname[], Float:Speed, looping, lockx, locky, lockz, lp)
{
  gPlayerUsingLoopingAnim[playerid] = 1;
  ApplyAnimation(playerid, animlib, animname, Speed, looping, lockx, locky, lockz, lp);
  TextDrawShowForPlayer(playerid,txtAnimHelper);
}

PreloadAnimLib(playerid, animlib[])
{
	ApplyAnimation(playerid,animlib,"null",0.0,0,0,0,0,0);
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)