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

Search results

  1. nevix

    Player skull

    Eg: possible in distro 1.0.0 make eg: if player have storage id eg 30000 when he attacked player he dont got any skull?
  2. nevix

    Lua Problems with zone

    No, i want when player died in pvp zone this script will be executed:. if (getGlobalStorageValue(25003) == 1) then setGlobalStorageValue(25002, 0) for _, pid in ipairs(getOnlinePlayers()) do if getPlayerStorageValue(pid, 25001) == 1 then local playerids = getPlayerByName(pid) local center...
  3. nevix

    Lua Problems with zone

    any help?
  4. nevix

    Lua Problems with zone

    What script i need change when player died in pvp area? Eg: i need execute this: playerdeath.lua but not working in pvpzone? what lua i should change? if (getGlobalStorageValue(25003) == 1) then setGlobalStorageValue(25002, 0) for _, pid in ipairs(getOnlinePlayers()) do if...
  5. nevix

    Lua Data base update

    Hello again, I asking how from lua script update my znote acc shop points. eg: you got 5 points please help a bit :)
  6. nevix

    Solved Storage

    Cool ^^ thx
  7. nevix

    Solved Storage

    How i can add eg: server storage? setPlayerStorageValue(cid, 25001, 0) this is player storage how i can add server storage?
  8. nevix

    Solved On player death

    Thx working :)
  9. nevix

    Solved On player death

    Guys how to do when player death he lost nothing? eg: if player have storage 25001 when he die he lost nothing? please help
  10. nevix

    Lua Position script

    For a long work my brains maked it :DDD Thx to you ;) function onUse(cid, item, fromPosition, itemEx, toPosition) for _, pid in ipairs(getOnlinePlayers()) do if getPlayerStorageValue(pid, 25001) == 0 then local playerids = getPlayerByName(pid) doTeleportThing(playerids,pos)...
  11. nevix

    Lua Position script

    I got this error :/ local function lmsclosed() broadcastMessage("Last Man Standing event portal closed and event started!", MESSAGE_STATUS_WARNING) local t = { from = {x = 32117, y = 32214, z = 7}, to = {x = 32125, y = 32219, z = 7}, center = {x = 32122, y = 32217, z = 6}...
  12. nevix

    Lua Position script

    Ninja how eg i can sum all players with this storage?
  13. nevix

    Lua Position script

    I'm learning lua please teach me what this for _, pid in ipairs( function doing?
  14. nevix

    Lua Position script

    my brains maked this. But... :/ local t = { from = {x = 32117, y = 32214, z = 7}, to = {x = 32125, y = 32219, z = 7}, t.center = {x = 32025, y = 32219, z = 7} } if getPlayerStorageValue(cid, 25001) == 1 then doTeleportThing(cid,t.center) end I want eg all players who have 25001 storage be...
  15. nevix

    Lua Position script

    what is tid? eg: 10 players will be teleported to specified erea when time ends
  16. nevix

    Lua Position script

    Hello again, Someone maybe tell me how i can all player from x to x and from y to y do teleport to specified zone?
  17. nevix

    Lua unique id to created teleport

    local portal = doCreateItem(itemid,1,xyz) doSetItemActionId(portal, 20001)
  18. nevix

    Lua Create item help

    iteminfo = {x= 32348, y=32222, z=7} local item = doCreateItem(1431,1,iteminfo) doSetItemActionId(item, 25002) doSendMagicEffect(iteminfo, CONST_ME_TELEPORT) It is sign, how can i write into the sign?
  19. nevix

    TFS 1.0 C++ Faster attack

    Data/xml/vocations.xml attackspeed="2000" change what u want
  20. nevix

    Lua Clicks problem Dont understand

    What this comments tags do?
Back
Top