SA-MP Forums Archive
I need a list of sex animations - 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)
+--- Thread: I need a list of sex animations (/showthread.php?tid=454571)



I need a list of sex animations - lsfmd - 29.07.2013

Hi, this may seem funny but i'm scripting commands for my players to screw each other.

I need a list of the sex animations.


Re: I need a list of sex animations - -Prodigy- - 29.07.2013

And how would you like your ice cream? ******, my friend.


Re: I need a list of sex animations - JimmyCh - 29.07.2013

You can find all animations on the SAMP wiki.
I just searched and found the whole list of animations, so click here to see them

Example, here is a list of blowjobs:
Код:
BJ_COUCH_START_W
BJ_COUCH_LOOP_W
BJ_COUCH_END_W
BJ_COUCH_START_P
BJ_COUCH_LOOP_P
BJ_COUCH_END_P
BJ_STAND_START_W
BJ_STAND_LOOP_W
BJ_STAND_END_W
BJ_STAND_START_P
BJ_STAND_LOOP_P
BJ_STAND_END_P



Re: I need a list of sex animations - ScRipTeRi - 29.07.2013

here you can find https://sampwiki.blast.hk/wiki/Animations


Re: I need a list of sex animations - lsfmd - 29.07.2013

Quote:
Originally Posted by ScRipTeRi
Посмотреть сообщение
I saw the blowjobs there, but none of the fuckme animations


Re: I need a list of sex animations - lsfmd - 29.07.2013

Bump


Re: I need a list of sex animations - HuSs3n - 29.07.2013

these animations are removed from samp!


Re: I need a list of sex animations - Pottus - 29.07.2013

I have a question... will there be gay/lesbian sex also ?


Re: I need a list of sex animations - FaceTutorialz - 29.07.2013

Quote:
Originally Posted by HuSs3n
Посмотреть сообщение
these animations are removed from samp!
Well... that sucks.


Re: I need a list of sex animations - maxpain43 - 29.07.2013

If you mean to /fuckme [style 1-8] here it is :
Код:
if(strcmp(cmd, "/fuckme", true) == 0)
{
	tmp = strtok(cmdtext, idx);
	if(!strlen(tmp))
	{
		SendClientMessage(playerid,0xFF0000FF,"USAGE: /fuckme [style 1-8]");
		return 1;
	}
	sexstyle = strval(tmp);
	if(sexstyle < 1 || sexstyle > 8)
	{
		SendClientMessage(playerid,0xFF0000FF,"USAGE: /fuckme [style 1-8]");
		return 1;
	}
	if(PlayerTied[playerid] != 0 || PlayerCuffed[playerid] != 0 || PlayerFrozen[playerid] != 0 || IsPlayerInAnyVehicle(playerid))
	{
		SendClientMessage(playerid, COLOR_GREY, "   You can't do that at this time !");
		return 1;
	}
	if(sexstyle == 1) LoopingAnim(playerid,"SNM","SPANKING_IDLEW",4.1,0,1,1,1,0);
	else if(sexstyle == 2) LoopingAnim(playerid,"SNM","SPANKING_IDLEP",4.1,0,1,1,1,0);
	else if(sexstyle == 3) LoopingAnim(playerid,"SNM","SPANKINGW",4.1,0,1,1,1,0);
	else if(sexstyle == 4) LoopingAnim(playerid,"SNM","SPANKINGP",4.1,0,1,1,1,0);
	else if(sexstyle == 5) LoopingAnim(playerid,"SNM","SPANKEDW",4.1,0,1,1,1,0);
	else if(sexstyle == 6) LoopingAnim(playerid,"SNM","SPANKEDP",4.1,0,1,1,1,0);
	else if(sexstyle == 7) LoopingAnim(playerid,"SNM","SPANKING_ENDW",4.1,0,1,1,1,0);
	else if(sexstyle == 8) LoopingAnim(playerid,"SNM","SPANKING_ENDP",4.1,0,1,1,1,0);
	return 1;
}
Works like a charm, Enjoy