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

Lua [help][zombie events]

Xordex

New Member
Joined
Dec 23, 2011
Messages
83
Reaction score
1
hello i found this part of the tutorial for the zombie event
http://otland.net/f82/zombie-event-new-version-bug-free-updated-128664/
but, i have problem
I do not know what are the positions ... I do not know what to do
LUA:
-- CONFIG
ZE_DEFAULT_NUMBER_OF_PLAYERS = 5
ZE_ACCESS_TO_IGNORE_ARENA = 3
-- POSITIONS
ZE_blockEnterItemPosition = {x= 873, y=997, z=7}
ZE_enterPosition = {x = 1638, y = 1530, z = 7}
ZE_kickPosition = {x=874, y=994, z=7}
ZE_spawnFromPosition = {x = 1617, y = 1514, z = 7}
ZE_spawnToPosition = {x = 1671, y = 1565, z = 7}
-- ITEM IDS
ZE_blockEnterItemID = 2700
-- STORAGES
-- - player
ZE_isOnZombieArea = 34370
-- - global
ZE_STATUS = 34370 -- =< 0 - off, 1 - waiting for players, 2 - is running
ZE_PLAYERS_NUMBER = 34371
ZE_ZOMBIES_TO_SPAWN = 34372
ZE_ZOMBIES_SPAWNED = 34373

Not know how to set xyz

//Sorry for poor English, but I'm Polish man
 
Last edited by a moderator:
LUA:
ZE_blockEnterItemPosition = {x= 873, y=997, z=7} -- Teleport to enter the zombie arena, where should it wall block players from enter when event is closed or running.
ZE_enterPosition = {x = 1638, y = 1530, z = 7} -- Where the teleport should lead.
ZE_kickPosition = {x=874, y=994, z=7} -- Temple Posistion or something, where you want to them get kicked.
ZE_spawnFromPosition = {x = 1617, y = 1514, z = 7} -- Go Top of North-East
ZE_spawnToPosition = {x = 1671, y = 1565, z = 7} -- Go Bot of North-Left

Cant explain better than this!
 
Last edited by a moderator:
So far I have not created the arena on the map, and not know how to build what and where, I can not understand it too much ... , /
 
Well you cannot write the positions if you don't have the maps. When you have the map, go in-game as a GM or GOD and use the explanations that OTSWE gave you. You can get the positions by using the "look" option. It will say something like "You see ..... [x 1111,2222][y 1111,2222]. Use the description and fullfill the fields with positions it needs.
 
Back
Top