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

Raw code

I answered yes for that since I find it plenty annoying that codes on OTLand goes from tab to space.
Many times I give out codes, that I don't save, and sometimes I need to edit them and copy them back, and all tabs are gone <.<
 
I answered yes for that since I find it plenty annoying that codes on OTLand goes from tab to space.
Many times I give out codes, that I don't save, and sometimes I need to edit them and copy them back, and all tabs are gone <.<

Not to mention that it orders the code like this;
  1. function on ..
  2. ...
  3. end
 
Not to mention that it orders the code like this;
  1. function on ..
  2. ...
  3. end
I also noticed, if you edit your whole code and replace it in your code tag, it by default will add an extra line in top before code starts, no matter how you copy/paste it into it, you'll end up always having to delete the first line.
Lua:
function original()
    return true
end
Lua:
function edited()
    return true
end
 
Back
Top