Jump to content

kissing player with same sex


Recommended Posts

9 hours ago, Creo said:

how to do that?

cmd_emotion.cpp

	if(IS_SET(emotion_types[i].flag, WOMAN_ONLY) && SEX_MALE == GET_SEX(ch))
	{
		ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("여자만 할 수 있습니다."));
		return;
	}

Delete this part of code.

A question, perhaps you want to make a server for a gay community?  If you need help to remove female characters , open a topic,  i will try to help you.

 

:lol: This question made my day

  • Love 1
Link to comment
Share on other sites

1 hour ago, 127.0.0.1 said:

cmd_emotion.cpp


	if(IS_SET(emotion_types[i].flag, WOMAN_ONLY) && SEX_MALE == GET_SEX(ch))
	{
		ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("여자만 할 수 있습니다."));
		return;
	}

Delete this part of code.

A question, perhaps you want to make a server for a gay community?  If you need help to remove female characters , open a topic,  i will try to help you.

 

:lol: This question made my day

lmao feminism woman will be very happy about this

Spoiler

 If you need help to remove female characters

 

Link to comment
Share on other sites

2 hours ago, 127.0.0.1 said:

cmd_emotion.cpp


	if(IS_SET(emotion_types[i].flag, WOMAN_ONLY) && SEX_MALE == GET_SEX(ch))
	{
		ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("여자만 할 수 있습니다."));
		return;
	}

Delete this part of code.

A question, perhaps you want to make a server for a gay community?  If you need help to remove female characters , open a topic,  i will try to help you.

 

:lol: This question made my day

and this not working

Link to comment
Share on other sites

  • Bot

In cmd_emotion.cpp:

Find list emotion_types[] and change this:

{ "키스",	"french_kiss",	NEED_PC | OTHER_SEX_ONLY | BOTH_DISARM,		2.0f },
{ "뽀뽀",	"kiss",		NEED_PC | OTHER_SEX_ONLY | BOTH_DISARM,		1.5f },

To this:

{ "키스",	"french_kiss",	NEED_PC | BOTH_DISARM,		2.0f },
{ "뽀뽀",	"kiss",		NEED_PC | BOTH_DISARM,		1.5f },

 

Please, be aware of that, animations are made separately for each interaction.
So if you want to have it brilliat, you need to make new animations for kissing female with female (sura - ninja, warrior - shaman etc.) and male with male too.

  • Love 1

english_banner.gif

Link to comment
Share on other sites

On 18.12.2016 at 4:26 PM, Chyumgo said:

In cmd_emotion.cpp:

Find list emotion_types[] and change this:


{ "키스",	"french_kiss",	NEED_PC | OTHER_SEX_ONLY | BOTH_DISARM,		2.0f },
{ "뽀뽀",	"kiss",		NEED_PC | OTHER_SEX_ONLY | BOTH_DISARM,		1.5f },

To this:


{ "키스",	"french_kiss",	NEED_PC | BOTH_DISARM,		2.0f },
{ "뽀뽀",	"kiss",		NEED_PC | BOTH_DISARM,		1.5f },

 

Please, be aware of that, animations are made separately for each interaction.
So if you want to have it brilliat, you need to make new animations for kissing female with female (sura - ninja, warrior - shaman etc.) and male with male too.

Thanks! How can i add a Male/Male Female/Female Wedding?

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.