• 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!

Bikini Beach Script

Ghost Creations

Active Member
Joined
Aug 2, 2011
Messages
234
Solutions
1
Reaction score
28
Location
Now in Korat, Thailand
You go through a portal to a sandy Beach and your Outfit changes to a bikini.
yes I know you have to make a bikini outfit.
This script would have many applacations.
Outfits:
Bikini Beach Outfit
Nudist Camp Outfit:
Halloween Area Outfit:
Chrismas Party Outfit:
The different Themes would be endless.

The script: Go through a portal and it changes your outfit to a spacific outfit.
 
my opinion: i'll just want it changed at the "Beach" when walk Through tp with special actionid. and walk through another the normal outfit comes back. i think i want it that way to. But i donk know.

Thanks in advance, sebbe
 
Apply UID/AID to a tile under a teleport (TELEPORT MUST NOT HAVE A DESINATION IN MAP EDITOR!), and configure everything in the script. :)

LUA:
local outfitid = 223 ---- OUTFIT ID.
local outfitCondition = createConditionObject(CONDITION_OUTFIT)
setConditionParam(outfitCondition, CONDITION_PARAM_TICKS, -1)
addOutfitCondition(outfitCondition, {lookType = outfitid, lookHead = 0, lookBody = 0, lookLegs = 0, lookFeet = 0}) -- If you want colors, change the 0 to a color between 0-255.

function onStepIn(cid,item,topos)
local position = {x=1,y=1,z=1} -- where to teleport to.
	if isPlayer(cid) then
		addCondition(cid,outfitCondition)
		doTeleportThing(cid,position)
		doSendMagicEffect(getThingPos(cid),CONST_ME_TELEPORT)
	end
	return true
end
 
i've read the script, Good work. im going to test it later, i'll report if it's any buggs later.

Thank you,unknown666

EDIT: Didn't work.
 
Last edited:
Back
Top