• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. C

    [Avesta] Help with script

    Are you sure that your vocation is 0 ? try this function onUse(cid, item, frompos, item2, topos) local playerpos = getCreatureByName(cid) if getPlayerLevel(cid) >= 20 and getPlayerVocation(cid) == 0 then doRemoveItem(item.uid, 1) doPlayerSetVocation(cid...
  2. C

    Lua When I'm trying to add news this comes up!

    Use Uniserver you can find here http://otland.net/f479/video-tutorial-nothing-fully-working-ot-server-website-shop-system-166818/ about the tutorial to install it
  3. C

    Solved promotion problem

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function...
  4. C

    [Avesta] Help with script

    make sure that you got in action.xml <action itemid="2279" event="script" value="xxxx.lua"/> function onUse(cid, item, frompos, item2, topos) local playerpos = getCreatureByName(cid) if getPlayerLevel(cid) => 20 and getPlayerVocation(cid) == 0 then...
  5. C

    Player Healt

    Check lose percent in login.lua - Config - Vocations - blessing settings
  6. C

    Solved promotion problem

    post your npc script
  7. C

    Zaypay report url?

    You need to set report url in zaypay Price Settings
  8. C

    Lua LMS I don't getting TPED to the arena.

    try this local t = { tmp = { {x = 916, y = 946, z = 7}, -- North west corner of Area where players must stand in order to join the event {x = 919, y = 949, z = 7} -- South east corner of Area }, arena = { {x = 908, y = 931, z = 7}, -- North west Corner of Arena {x = 927, y = 944, z...
  9. C

    Windows Problem Gesior Acc

    set path: C:/Users/dfsgg/MegaEvo Edit by Help3R instead of C:/Users/dfsgg/MegaEvo Edit by Help3R/config.lua
  10. C

    Lua LMS I don't getting TPED to the arena.

    any errors ?
  11. C

    Solved MR changes

    Lol i dont care, he needed a solution not for a short script. Thanks pro guy :D
  12. C

    NPCs, Inquisition, all in 0.3

    :o !
  13. C

    Solved Only Promoted Players can use this talkaction ?

    local to = { ["temple"] = {x=1063, y=607, z=7}, ["depot"] = {x=1037, y=586, z=7}, ["dp"] = {x=1037, y=586, z=7}, ["teleports"] = {x=1158, y=689, z=7}, ["jail"] = {x=1150, y=848, z=6}, ["prek"] = {x=1381, y=593, z=7}, ["cudz"] = {x=975, y=818, z=7}, ["xypoz"] = {x=1657, y=1110, z=7}...
  14. C

    Solved Only Promoted Players can use this talkaction ?

    Aright .. local to = { ["temple"] = {x=1063, y=607, z=7}, ["depot"] = {x=1037, y=586, z=7}, ["dp"] = {x=1037, y=586, z=7}, ["teleports"] = {x=1158, y=689, z=7}, ["jail"] = {x=1150, y=848, z=6}, ["prek"] = {x=1381, y=593, z=7}, ["cudz"] = {x=975, y=818, z=7}, ["xypoz"] = {x=1657, y=1110...
  15. C

    Solved MR changes

    Here you are local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, 1000) -- time in seconds x1000 function onUse(cid, item, frompos, item2, topos) if(hasCondition(cid, CONDITION_EXHAUST)) then...
  16. C

    Solved MR changes

    check this local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, 1000) -- time in seconds x1000 function onUse(cid, item, frompos, item2, topos) local vocations = {1,2,5,6} if(hasCondition(cid, CONDITION_EXHAUST)) then...
  17. C

    NPCs, Inquisition, all in 0.3

    @- for inq try to check movements/scripts/inq.lua try this one local config = { bosses={---aid of portal, position where it sends, value it sets, text it shows [1001] = {pos={x=33069, y=31783, z=13, stackpos=1}, value=1, text="Entering The Crystal Caves"}, [1002] = {pos={x=33371, y=31613...
  18. C

    Solved How can I remove creature after player death?

    You've added above in a wrong place, try this: local room = { fromX = 1160, fromY = 988, fromZ = 10, -------------- toX = 1183, toY = 1012, toZ = 10 } function onUse(cid, item, fromPosition, itemEx, toPosition) if...
  19. C

    Who I can Host ot Server on my pc ?

    However the qualification, you wont get a stable ot in home :P But you can host at least with 100 mb connection, and the question how? 1- open ports 7171, 7172 for ot 2- open port 80 for website 3- configure your config (get your ip from whatismyip.com) and put it in ur config 4- run your ot
  20. C

    Solved Paypal transactions doesn't accept it automatic!

    Actually you need to change your account from personal to business, check this in your paypal profile and everything will be fine.
Back
Top