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

Could this script be possible?

andurz

Senior Member
Joined
Nov 1, 2008
Messages
126
Reaction score
0
Location
$wedeN
Hi,i got an ide about a thing.I will explain about the script now:

1. You need a special helmet (etc. Golden helmet)

2. A sign that only works if you got Golden Helmet on you.

3. If you press on the sign without having the helmet it should say "you cannot read this".

4. If you got the "Golden Helmet" and pressing on the Sign you should be able to see the text

I want this script for a teleport quest, you need a secret word that you need for standing on a platform and getting teleported.
I need it beacuse its like missions for a quest and you need reqiuem items for it :p.

I hope this is possible !
 
Yep It is possible :D

All is possible

Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if getPlayerSlotItem(cid, CONST_SLOT_HEAD).itemid == goldenhelmet then
        doSetItemText(uid, text)
          else
        doPlayerSendTextMessage(cid, message)
         end
        return TRUE
    end
 
Last edited:
Back
Top