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

    Source's custom OT game engine (TypeScriptFTW)

    I've waited about 8 months to post my 100 msg, and Im sure I want to dedicate it to this legend. Im sorry for ruining our friendship @Source youre an absolue legend, and Im just about too stupid to understand this article to its full potential but from what I understand I think your stuff looks...
  2. Sprrw

    Lua Sending messages "private" without using NPC's chat.

    Aha interesting. As usual always here for the rescue! Thanks a lot bro! <3
  3. Sprrw

    Lua Sending messages "private" without using NPC's chat.

    So what Im trying to do is something like this : pos:sendMagicEffect(effect, cid) But with text something like this : say(msg, player) So I basically want to send a say text msg but that only displays on the client side of things like pos:sendMagicEffect(effect, cid) does. Im not even sure if...
  4. Sprrw

    [Germany] Evolera Server 9999x custom evo

    Can we all stop hating, Im just happy we finally see a new Evolera 🥹
  5. Sprrw

    Lua Hello folks! How would I go about an alternativ way of adding npc focus?

    Yea Im with you 100%, atm Im using it for a simple tutorial. So near spawn you will meet a npc that tells you about npcs and that you can talk to them etc, then after that first encounter I just give the player a storageValue so that they never enter that convo again. Same for a npc in a cave...
  6. Sprrw

    Lua Hello folks! How would I go about an alternativ way of adding npc focus?

    Hey dude I know this is an old post and all but I just got back to trying to get this to work and I cant seem to get it. This is what I have atm (just a copy of your code) function onThink() local centrePosition = Position(1057, 987, 6) -- set the centre position of your NPC's range...
  7. Sprrw

    Lua TFS 1.4+ Top 10 players gets skull

    Data/globalevents/scripts/script.lua function onThink(interval) local skull_types = { [1] = 5, -- black [2] = 4, -- red [3] = 4, -- red [4] = 2, -- green [5] = 2, -- green [6] = 2, -- green [7] = 1, -- yellow [8] = 1, -- yellow...
  8. Sprrw

    Aint this cool?

    Yea thats exactly what I mean, with basic knowledge you can get the extra mile with the help of ChatGPT, I actually think I will be using this in my future projects. I've made websites for over 2 years and just made my first website with the help of ChatGPT, I can definitely say that it performs...
  9. Sprrw

    Aint this cool?

    Yea we actually dont need to know how to code no more XD
  10. Sprrw

    Aint this cool?

    I have no clue why but I had no idea it would actually know how to use TFS. This is amazing XD Its a little goofy but with basic knowledge yourself you could probably use this to code an entire OT. Sheesh, this is the future folks! 🫡
  11. Sprrw

    AAC Php and database fetching

    Is it weird that I love you? 😅 Thanks a lot, worked like a charm!
  12. Sprrw

    AAC Php and database fetching

    Yea I also thought about this but all this does is using the third from last news. So instead of displaying all 3 like you would asume. It displays the third. And this is how you could do it by having 3 fetches one with LIMIT 1, 2 and 3 but this seems like a lot of code for such a small thing...
  13. Sprrw

    AAC Php and database fetching

    Hola Otland! Im working on a website for my project and on my homepage I wanted to display a "latest news section" something like: Pic from : Wayfinder - Join the Closed Beta on PlayStation® and PC (https://www.playwayfinder.com/en) Well anyways so I came up with this code : <?php...
  14. Sprrw

    TFS 1.X+ create tile on no ground tile 1.5

    Oh, yea. Thats the correct way to do it. Mb! Well done friend!
  15. Sprrw

    TFS 1.X+ create tile on no ground tile 1.5

    No worries, feel free to get back to me if you find any more errors!
  16. Sprrw

    TFS 1.X+ create tile on no ground tile 1.5

    Should look like : local bridgePos = { Position({ x = 32426, y = 32201, z = 14 }), Position({ x = 32426, y = 32202, z = 14 }), Position({ x = 32427, y = 32201, z = 14 }), Position({ x = 32427, y = 32202, z = 14 })} local leverTile = {...
  17. Sprrw

    TFS 1.X+ create tile on no ground tile 1.5

    Yea exactly what I thought, I was like "how does he get an Ipair error on this line local items = Tile(v):getItems() XD 1679423131 Ohh, you need to change the positions. Check how I did it, they are supposed to be grouped under bridgePos instead of bridgePos1 etc
  18. Sprrw

    TFS 1.X+ create tile on no ground tile 1.5

    Hmm, Im not sure. It's hard to debug when Im not getting the error on my hand. Can you post your script?
  19. Sprrw

    TFS 1.X+ create tile on no ground tile 1.5

    Fixed so that it removes items + fluids aswell local switchBridge = Action() local leverOn = 1946 local leverOff = 1945 local bridgeTile = 405 local effect = CONST_ME_POFF local bridgePos = {Position({ x = 1090, y = 1003, z = 8 }), Position({ x = 1091, y = 1003, z = 8...
  20. Sprrw

    TFS 1.X+ create tile on no ground tile 1.5

    local switchBridge = Action() local leverOn = 1946 local leverOff = 1945 local bridgeTile = 405 local effect = CONST_ME_POFF local bridgePos = {Position({ x = 1090, y = 1003, z = 8 }), Position({ x = 1091, y = 1003, z = 8 })} local leverTile = {Position({ x = 1089...
Back
Top