#1

How i apply animation drunk when player picking skin??
i put
pawn Код:
public OnPlayerRequestClass
{
   blah blah blah
   ApplyAnimation(playerid,"PED","WALK_DRUNK",4.1,1,1,1,1,1);
   return 1;
}
but the animation only works on first skin
Reply
#2

pawn Код:
public OnPlayerRequestClass
{
   blah blah blah
   if(classid == 0)
   {
      ApplyAnimation(playerid,"PED","WALK_DRUNK",4.1,1,1,1,1,1);
   }
   else
   {
      ApplyAnimation(playerid,"PED","WALK_DRUNK",4.1,1,1,1,1,1);
   }
   return 1;
}
Reply
#3

actually i have 23 classid, do i do that with all?? cause with i do with classid 0 it only works on first skin
Reply
#4

pawn Код:
public OnPlayerRequestClass
{
   switch (classid)
   {
      case 0..22: ApplyAnimation(playerid,"PED","WALK_DRUNK",4.1,1,1,1,1,1);
   }
   return 1;
}
Reply
#5

STILL WONT WORK
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)