I need a list of sex animations
#1

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.
Reply
#2

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

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
Reply
#4

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

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

Bump
Reply
#7

these animations are removed from samp!
Reply
#8

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

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

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)