• 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 Some scripts just don't load.

kyoushirou

I like trains
Joined
Apr 29, 2009
Messages
224
Reaction score
59
Two identical scripts, different action IDs. Action IDs are there and confirmed - And they just don't load.
Any suggestions? They're all onStepIn movementactions. TFS 1.1.


Edit: Fixed it, by simply rewriting the movements.xml letter by letter.
 
Last edited:
could you provide us with some code?

also do you have the action id configured on title you want the step in action to trigger?

Aye, action ID is there and everything should work afaik since the two codes are identical.

Code:
function onStepIn(creature, item, position, fromPosition)
        local player = creature:getPlayer()
        if player == nil then
            return false
        end
        player:sendTextMessage(MESSAGE_EVENT_ADVANCE, 'Entering the Tomb of Carass')
    return true
end
Code:
<movement event="StepIn" actionid="10006" script="enteringcarasstomb.lua"/>

Edit: Fixed it, by simply rewriting the movements.xml letter by letter.
 
Last edited:
Back
Top