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

Corrupt otland staff?

Status
Not open for further replies.

Jotran

Banned User
Joined
Feb 8, 2015
Messages
349
Reaction score
109
Is it just me or does otland staff seem to favor certain people over others. Like I've seen threads of important issues where there are thousands of views and 30 or more responses and not 1 staff member or admin gives their feedback.

Yet they will write an entire script for someone who has no idea how to code.

What is your opinion on this issue
 
Maybe they don't spend all their time on here trying to help people?
 
So what he is saying is he needed help and is crying because no one helped him?
 
Who do you count as OTLand staff?

And you also have to notice, we (the community which helps people) read your post before helping you.

So there are 3 types of posts:
#1 The Good Post!
Hello OTLanders!
I am working on a script and I need some help.
The goal of this script is to create a bucket on a tile every hour. (I'm using globalevents to do this).

But I want it to remove all other items from the tile when creating the bucket. Can someone help me?
Here is my current script.
Code:
function onThink(interval)
  --script fully posted showing what you already have
  return true
end

#2 The Bad Post
I want bucket to appear every hour, and to remove items from that tile, can someone make this for me?
I don't script, I just ask people to make stuff.

#3 The Worst Post (Confusing and Impossible to help people)
Doesn't matter what the original topic is, but lets post your last one.
I have a tile where i want to reSpawn bucket every hour.
but every time the script starts i want it to first remove the item (possibly all items) from that tile before. and then create bucket there

I have tested 2 different scripts, but one of them is Nil and another doesn't delete item...

Test1: result
gives some kind of value, but doesn't remove item
Code:
local pos1 = {x=558,y=654,z=7}

function onThink()
local item = getTileItemById(pos1, itemId)
print(item)
if item then
    addEvent(function() doRemoveItem((item).uid) end, 5000)
end
addEvent(doCreateItem, 6000, 2005, 0, pos1)

return true
enda

Test2: result
gives NIL value
Code:
local pos1 = {x=558,y=654,z=7}

local item = Tile(pos1):getItemById(itemId)
print(item)
if item then
  addEvent(function() item:remove() end, 5000)
end
addEvent(doCreateItem, 6000, 2005, 0, pos1)

return true
enda

Then someone does help you by saying "You need to define the itemid"

Then you reply "YOU ARE NOT HELPING ME!"

And then you wonder why no one else wants to help you?
 
So what he is saying is he needed help and is crying because no one helped him?
No I am not saying that.
It is just as you say, we are corrupt.
Thanks for replying.. who knew..
Who told you that the job of a forum moderator or admin is to attend the support requests of each user that posts there?
Who told me it wasn't? More importantly who told you it wasn't?
ninja gave me free items
I want free items too
Who do you count as OTLand staff?
Green / Red named members
 
Status
Not open for further replies.
Back
Top