• 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 [Error - Action Interface]

Status
Not open for further replies.

texusoeze

New Member
Joined
Mar 30, 2012
Messages
4
Reaction score
0
help

[Error - Action Interface]
[01/09/2013 17:21:48] data/actions/scripts/premium.lua:eek:nUse
[01/09/2013 17:21:48] Description:
[01/09/2013 17:21:48] data/actions/scripts/premium.lua:6: attempt to compare number with boolean
[01/09/2013 17:21:48] stack traceback:
[01/09/2013 17:21:48] data/actions/scripts/premium.lua:6: in function <data/actions/scripts/premium.lua:1>

error in my data base im spanish my english is bad :(
 
Code:
function onUse(cid, item, frompos, item2, topos)


            if item.actionid == 9698 then
        --i--f --getPlayerVocation(cid) > 4 then
        if isPremium(cid) > 0 then
        newpos = {x=711, y=149, z=6}
        doPlayerSendTextMessage(cid,22,"Welcome to Premia city.")
        doTeleportThing(cid,newpos)
        doSendMagicEffect(newpos,12)

    else
        newpos = {x=370, y=213, z=7}
        doPlayerSendTextMessage(cid,22,"Sorry, only premium players are allow.")
        doTeleportThing(cid,newpos)
        doSendMagicEffect(newpos,12)
end
    end
    return 1
end
is mi code men help me :(
 
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    local newpos
    if isPremium(cid) then
        newpos = {x=711, y=149, z=6}
        doPlayerSendTextMessage(cid, 22, "Welcome to Premia City.")
        doTeleportThing(cid, newpos)
        doSendMagicEffect(newpos, 12)
    else
        newpos = {x=370, y=213, z=7}
        doPlayerSendTextMessage(cid, 22, "Sorry, only premium players are allowed.")
        doTeleportThing(cid, newpos)
        doSendMagicEffect(newpos, 12)
    end
    return 1
end
 
Status
Not open for further replies.

Similar threads

Replies
2
Views
398
Evil Puncker
E
Back
Top