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

    Suggestion Xbox Live Gamertag

    Well if you don't want to use it you could always do as Scarlet said and manually add your Gamertag or SEN/PSN to your signature. Most importantly...what would be the purpose of the xbox mark aside from showing your gamertag? Can you use it to send messages or to add people?
  2. Ratser

    Suggestion Xbox Live Gamertag

    And then Steam/Origin/etc users would demand one too... Raptr is simpler. You just add all your game accounts (xfire/steam/xbox live/psn/wii), get the signature bar and that's it you don't have to login again anymore if you want. For example, I haven't logged in ages but still it tracks almost...
  3. Ratser

    Suggestion Xbox Live Gamertag

    It's almost the same thing. You can see both the signature bar and the contact info in "About Me". The only difference is that you have to click the signature to get to the Raptr website and see the Gamertag, but c'mon...it's just one click ahead and you don't even have to sign up to see it.
  4. Ratser

    Suggestion Xbox Live Gamertag

    1. Create a Raptr account. 2. Add your Xbox Live account 3. Get a signature bar like me. 4. ???? 5. PROFIT!
  5. Ratser

    [9.46] The Forgotten Server v0.3.7-preview (Crying Damson)

    2+ years and still haven't fixed this typo: /data/talkactions/scripts/createitem.lua: doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Item wich such name does not exists.") >with
  6. Ratser

    [9.46] The Forgotten Server v0.3.7-preview (Crying Damson)

    C'mon man, I was expecting something like: "We merged all the files in just one file" and then upload a single CPP file. And inside that file would be coded something like: #include "stdafx.h" #include "stdio.h" #include "conio.h" using namespace System; int main(array<System::String...
  7. Ratser

    [9.46] Evolutions Server with donation shop [Fixed mounts]. April fools!

    There's a bug in the shop system. Players can get items for free. Also, you should save the readme as 8-bit...just a tip. Aside from that, nice datapack. Very lightweight.
  8. Ratser

    [CreatureScript] level protection

    That could be exploited unless you remove all those blessings when the player reaches level 20. Just an example on how to make it better: add a X storage to the player who logins for the first time, onLogin script: if the player's X storage > 0 then add the blessings, onAdvance script: when the...
  9. Ratser

    GlobalEvent Creating NPC in different places every day

    >onTimer Remove the "r"...wait, why onTime? onThink it would be.
  10. Ratser

    Action My first script (Exp Token)

    PROTIP: Don't use a config table until you know how to use it well. Start with separated tables. e.g. local mlp = love local fim = tolerate and use Notepad++, it's easier to find what's wrong with it.
  11. Ratser

    TalkAction Changename in-game

    99%...it needs to check spaces for names with more than 1 space between them. But anyways, yours doesn't check spaces too so it's the same :p
  12. Ratser

    TalkAction Changename in-game

    Yeah I was thinking that was gonna happen. I left it like it was before.
  13. Ratser

    TalkAction Changename in-game

    I'm gonna need to test it in my server (print values and see what's wrong), which is gonna take some time (or maybe not...who knows). At least it's not a big thing, just a small bug with the spaces amount. If anyone can fix it feel free to post a solution.
  14. Ratser

    TalkAction Changename in-game

    Try again I changed a pattern.
  15. Ratser

    TalkAction Changename in-game

    Right. The spaces. It should be fixed now. >>1472919 For those who wanna know, I've been reading from here the last couple of hours: lua-users wiki: Patterns Tutorial
  16. Ratser

    TalkAction Changename in-game

    Changed the pattern. Try now. Try writing the name completely in uppercase and lowercase letters. Example: /changename jose and /changename JOSE
  17. Ratser

    TalkAction Changename in-game

    Bad copypasta (my fault). Try again now.
  18. Ratser

    TalkAction Changename in-game

    Ok I did it like TGYoshi said (and learned how to use patterns in the process)... local itemId, count, maxTextLenght, delay = 1111, 1, 15, 2 * 1000 local blacklistParam = {"god", "cm", "gm", "tutor", "tester"} function onSay(cid, words, param, channel) local text, continue = "You will be...
Back
Top