Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
Alright i was wondering if there's some kinda function that if you type something into the document, and then hit ok if it is a certain keyword or something then a certain action will result from it.
function onTextEdit(cid, item, newText)
if newText:lower() == 'pandas are awesome' then
doPlayerSendTextMessage(cid, 21, 'Yes, they are indeed awesome and cute')
else
doPlayerSendTextMessage(cid, 21, 'Sorry, I dont like you')
end
return TRUE
end