SA-MP Forums Archive
Special Actions - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Special Actions (/showthread.php?tid=239290)



Special Actions - Sasino97 - 13.03.2011

Do you know where can I find a list of special actions that aren't defined in a_samp?
Please help me.


Re: Special Actions - iMonk3y - 13.03.2011

Here's the list of animations, is that what you're looking for?

https://sampwiki.blast.hk/wiki/Animations


Re: Special Actions - iggy1 - 13.03.2011

https://sampwiki.blast.hk/wiki/SpecialActions


Re: Special Actions - Sasino97 - 13.03.2011

I've already seen that 2 pages, but I'm looking for all special actions, because in a_samp there are only 13 or 14 special actions, but somewhere I saw a lot of special actions, like ID 68(Pissing).


Re: Special Actions - iggy1 - 13.03.2011

I don't think such a list exists you can quite easily test them and define them yourself. If you feel like it that is.
pawn Код:
#include <a_samp>
#include <zcmd>

COMMAND:specialaction(playerid, params[])
{
    new
        id = strval(params);
    SetPlayerSpecialAction(playerid, id);
    return 1;
}



Re: Special Actions - Sasino97 - 13.03.2011

Quote:
Originally Posted by iggy1
Посмотреть сообщение
I don't think such a list exists you can quite easily test them and define them yourself. If you feel like it that is.
pawn Код:
#include <a_samp>
#include <zcmd>

COMMAND:specialaction(playerid, params[])
{
    new
        id = strval(params);
    SetPlayerSpecialAction(playerid, id);
    return 1;
}
Thanks, you had a good idea, so i can use /specialaction to see it.