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!
local config = {
playerCount = 2001, -- Global storage for counting the players left/entered in the event
zombieCount = 2002, -- Global storage for counting the zombies in the event
teleportActionId = 3514, -- Action id of the teleport needed for the movement script...
Hello people of Otland.
I got some bug with automatic zombie event
I use this
http://vapus.net/forum/348-creatureevents-globalevents/1939-zombie-event-map-included.html
This problem how to fix it ??
[10/04/2014 10:00:00] > Broadcasted message: "Zombie event starting in 5 minutes! The...
try
local config = {
teleportAccess = 3
}
function onSay(cid, words, param, channel)
if(param == '') then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.")
return true
end
local teleport = false
local t =...
function onSay(cid, words, param, channel)
if(param == "") then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.")
return TRUE
end
local house = getHouseByPlayerGUID(getPlayerGUIDByName(param))
if(not house) then...