• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Can't find sex change command

sick

Member
Joined
Feb 5, 2009
Messages
258
Reaction score
6
Location
Lithuania, Vilnius
I wanted to ask where could i find talkaction !changender its not in talkactions.xml or scripts, was looking in most of the folders and couldn't find anything about it, i just want to remove sex change possibility, is there any other way, or where is this script so i could delete it.
Thanks in advance :thumbup:
 
Last edited:
MOD
Code:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Change gender command" version="1.0" author="The Forgotten Server" contact="otland.net" enabled="yes">
	<description>
		This mod will add new command for players - !changender.
		Players will be able to change gender, cost can be configured.
	</description>

	<config name="changender_config"><![CDATA[
		config = {
			costPremiumDays = 0
		}
	]]></config>
	<talkaction words="!changender" event="buffer"><![CDATA[
		domodlib('changender_config')
		if(getPlayerSex(cid) >= 2) then
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You cannot change your gender.")
			return
		end

		if(getPlayerPremiumDays(cid) < config.costPremiumDays) then
			doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Sorry, not enough premium time - changing gender costs " .. config.costPremiumDays .. " premium days.")
			doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)
			return
		end

		if(getPlayerPremiumDays(cid) < 65535) then
			doPlayerAddPremiumDays(cid, -config.costPremiumDays)
		end

		doPlayerSetSex(cid, getPlayerSex(cid) == PLAYERSEX_FEMALE and PLAYERSEX_MALE or PLAYERSEX_FEMALE)
		doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You have changed your gender and lost " .. config.costPremiumDays .. " days of premium time.")
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_RED)
	]]></talkaction>
</mod>
Rep++ :peace:
 
Back
Top