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

Recent content by Oneeyedlarry

  1. O

    VIDEO TUTORIAL: From nothing to a fully working OT server, website and shop system

    The UI of everything he uses is completely different, with certain things that he uses not being there and what not. Not particularly easy to follow.
  2. O

    VIDEO TUTORIAL: From nothing to a fully working OT server, website and shop system

    Is there an updated version of this?
  3. O

    Looking for an OT

    Yeah, i've tried otservlist but half of them dont explain how to create an account, and the other half suck. Haha. But I'll take another peek.
  4. O

    Looking for an OT

    Oh yeah, also would be nice if it had at least a few english players, and didnt have an insane amount of players unless it has the map/spawns to compensate for it. Also, I am a big fan of the custom maps.
  5. O

    Looking for an OT

    Hey there, I'm looking for an OT of 8.6 patch or more recent. Preferred not ridiculous exp (where you get level 700k) Other then the exp thing I dont care much what the rest of the features are.
  6. O

    Official NightShine Online Custom RPG Discussion

    What client version is this?
  7. O

    Official NightShine Online Custom RPG Discussion

    Hey man, created my account yesterday. It's probably in this forum already but what is the exp rates?
  8. O

    Problem with banker NPC

    yes i am
  9. O

    Problem with banker NPC

    I've looked for a few and tried a couple different ones. I'll keep looking. Thanks.
  10. O

    Problem with banker NPC

    ---------------------------- transfer -------------------- elseif msgcontains(msg, 'transfer') then npcHandler:say('Please tell me the amount of gold you would like to transfer.', cid) npcHandler.topic[cid] = 11 elseif npcHandler.topic[cid] == 11 then count[cid] =...
  11. O

    Problem with banker NPC

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local count = {} local transfer = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  12. O

    Problem with banker NPC

    That seems to have fixed that, but now its saying Lua Script Error: [Npc interface] data/npc/scripts/Ebenizer.lua:onCreatureSay data/npc/scripts/Ebenizer.lua:102: attempt to call method 'depositMoney' <a nil value> stack traceback: [C]: in function 'depositMoney'...
  13. O

    Problem with banker NPC

    elseif npcHandler.topic[cid] == 1 then count[cid] = player:getMoney(msg) if isValidMoney(count[cid]) then npcHandler:say('Would you really like to deposit ' .. count[cid] .. ' gold?', cid) npcHandler.topic[cid] = 2 return true
  14. O

    Problem with banker NPC

    ok so i replaced it with that but now its says Lua Script Error: [Npc interface] data/npc/scripts/Ebenizer.lua:onCreatureSay data/npc/scripts/Ebenizer.lua:90: attempt to call global 'isValidMoney' <a nil value> stack traceback: [C]: in function 'isValidMoney' data/npc/scripts/Ebenizer.lua:90...
Back
Top