• 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. UpInSmoke

    Source editing

    Thank you for this I will look it all over :)
  2. UpInSmoke

    Demon Helmet Quest Request!!

    This thread is 3 years old. Please do not bump old 'solved' threads
  3. UpInSmoke

    Source editing

    Hi all, now i know alot about programming but i dont seem to understand 'source editing'. I looked in tutorials, used the search bar and just couldnt seem to find any guides or tutorials. I see all these different people talking about editing things in places called 'protocolgame.cpp' or...
  4. UpInSmoke

    Remove Teleport (REQUEST)

    edited, try it now. make sure the TP on the map doesnt have a destination and that its just configured in the script. then set the tile underneath the tp with a uniqueid that will run this script
  5. UpInSmoke

    Remove Teleport (REQUEST)

    give this a try local t = { minPlayers = 3, storage = 45600, pos = {x= ,y= ,z= }, -- where they get teleported to tpPos = {x= ,y= ,z= }, -- where the tp is tp = 1387, } function onStepIn(cid, item, position, fromPosition) if getGlobalStorageValue(cid, t.storage) < 0 then...
  6. UpInSmoke

    server crash TFS 0.3.6

    You are my savior
  7. UpInSmoke

    Random item spawnpoint

    quickly made this and tested it, it wont spawn the same item ontop of itself but it will spawn a different item ontop of that item. local t = { items = {{2160,10,1},{2147,5,2}}, -- goes item, max item count, rarity (5-1. 5 being always, 1 being rare) positions = { {x = 1349, y = 1429, z =...
  8. UpInSmoke

    Teleport script needed

    no dont remove that just change it to if getPlayerStorageValue(cid, storage) == 1 then
  9. UpInSmoke

    Teleport script needed

    tile they walk on so they can pass function onStepIn(cid, item, pos) if getPlayerStorageValue(cid, 50505) == -1 then setPlayerStorageValue(cid, 50505, 1) doPlayerSendTextMessage(cid, 19, "You can now pass") end end tile they need to walk on to pass function onStepIn(cid, item, pos) local...
  10. UpInSmoke

    npc attacks x voc

    try local target = 0 local prevTarget = 0 local maxChaseDistance = 40 local origPos = 0 local lastAttack = 0 local followTimeout = 10 local vocations = {1, 2} if isInArray(vocations, getPlayerVocation(cid)) then return true end return false end local function goToOrigPos() target = 0 lastAttack...
  11. UpInSmoke

    Need Auto Restart

    http://otland.net/f19/tsm-simplest-restarter-v1-169821/
  12. UpInSmoke

    server crash TFS 0.3.6

    bump
  13. UpInSmoke

    Teleport script needed

    http://otland.net/f82/kill-monster-create-portal-optional-countdown-190235/
  14. UpInSmoke

    What song are you listening NOW!

    https://www.youtube.com/watch?v=zlpwSj5cLjg
  15. UpInSmoke

    Siramix HappyBox

    I want to play this bitch
  16. UpInSmoke

    8.6 rl map

    Data Packs most 8.6 RL maps are right but will have a custom thais temple that is all
  17. UpInSmoke

    Need simple script

    sorry this took so long, just got to my computer that has my server to test, tested and it works: local t = { timer = 60, rockid = 1355, -- rock id rockpos = {x= 1697,y= 1219,z= 8}, -- rock position event = 0, } local function addRock(cid) doCreateItem(t.rockid, 1, t.rockpos) t.event = 0 end...
  18. UpInSmoke

    server crash TFS 0.3.6

    Im using TFS 0.3.6 and it was working perfectly fine a few days ago... now when i run it it crashes when running database manager, sometimes it makes it 1 farther to items. Im not sure why its doing this.. I tried restarting my computer, re-installing uniserver, even created a new database...
  19. UpInSmoke

    Need simple script

    try this local t = { timer = 60, rockid = 1355, -- rock id rockpos = {x= 1697,y= 1219,z= 8}, -- rock position storage = 60050, } local function addRock(cid) doTransformItem(item.uid, item.itemid - 1) doCreateItem(t.rockid, 1, t.rockpos) setGlobalStorageValue(cid, t.storage, -1) end...
Back
Top