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

Lua need 2 scripts dance!

Deus Meus

New Member
Joined
May 18, 2014
Messages
120
Reaction score
1
hello there scripts that "x" player put on a Empiese sqm and has dancing is something like the scripts! dance but this it within 1 sqm

2-The script is that you do not let sqm stand in one sqm and send you back
I hope you can help me if you do not mind a greeting and thanks
I will wait for your answer!
 
Code:
player:teleportTo(fromPosition, true)
doTeleportThing(cid, fromPosition, true)
 
about walkback u can use walkback script in ur movemnets and u can give me moe information about dance script
 
the first is on a floor to stand on that dance floor


the two is that the floor where the player dying fall
eg position is y: 1000 x 1000: z7
when the player falls on the floor sqm him aside as if no one could stop ce on said x floor

@heba
 
Last edited by a moderator:
sorry but really i can't connect alot in this days and there alot support better then me like limos and alot alot
i tink this will help u about push player when die
Code:
local config = {
    [25001] = { "", NORTH },
    [25002] = { "Muahagasgashahaha", SOUTH },
    [25003] = { "Buahahahaha", EAST },
    [25004] = { "Wuahahahaha", WEST }
}
function onStepIn(cid, item, position, fromPosition)
    if isPlayer(cid) == TRUE then
        for action, variable in pairs(config) do
            if item.actionid == action then
                doCreatureSay(cid, variable[1], TALKTYPE_ORANGE_1)
                doMoveCreature(cid, variable[2])
            end
        end
        return TRUE
    end
end
Code:
<movevent type="StepIn" actionid="25001" event="script" value="push.lua"/>
and about dance we can chnage function from function onsay to function function onStepIn
 
Back
Top