Animation fishing.
#1

Hello friends,

I need an animation or something on that "the player pull the fishing rod" I've been looking but can not get something, thanks.
Reply
#2

You can find your needed animations here:
https://sampwiki.blast.hk/wiki/Animations

I guess you looking for FishingIdle.
Reply
#3

This command give you a fishing rod + fishing animation.
Код:
CMD:fishing(playerid, params[])
{
    ApplyAnimation(playerid, "SAMP", "FishingIdle", 3.0,1,1,0,0,0);
    SetPlayerAttachedObject( playerid, 0, 18632, 1, -0.091109, 0.255484, 0.018155, 94.362060, 312.328125, 190.418655, 1.000000, 1.000000, 1.000000 );
    SendClientMessage(playerid, -1, "[FISHING]  /stopfishing to stop Fishing!");
    return 1;
}

CMD:stopfishing(playerid, params[])
{
   ClearAnimations(playerid);
   RemovePlayerAttachedObject(playerid, 0);
   SendClientMessage(playerid, -1, "[FISHING] Fishing stopped!");
   return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)