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

Recent content by Bogart

  1. Bogart

    TFS 1.X+ Delete description of an item, partially

    Programming in Lua : 20.2 TL;DR: %b[] will match the part of the string that starts with '[' and ends with ']'.
  2. Bogart

    TFS 1.X+ Can open website but can't log in game

    Wait how is uni server saying your server isn't accessible :eek: you said you can access the website :eek:
  3. Bogart

    TFS 1.X+ Delete description of an item, partially

    You should post the code bruh, but here's how you should do it, I guess you can figure out the rest str = "You see a sword. Created by PlayerName. [HP+15]" --this should be item:getAttribute(ITEM_ATTRIBUTE_DESCRIPTION) str = str:gsub('%b[]', '') print(str) --this should be...
  4. Bogart

    How to make gm/god (phpmyadmin) [help]

    Almost 10 years too late bruh
  5. Bogart

    TFS 1.X+ Debug effect talkaction

    function onSay(cid, words, param) local player = Player(cid) if not player:getGroup():getAccess() then return true end if player:getAccountType() < ACCOUNT_TYPE_GOD then return false end local params = param:split(" ") if params[3] == nil then...
  6. Bogart

    [fmAAC] Thora template

    Of course anyone with a lil knowledge can change it, but for me, it's a little bit too "crowded" I mean no offense, I like the layout, it's just that small change that would make it look better for me.
  7. Bogart

    [fmAAC] Thora template

    I feel like there should be a bigger space between the main content and the side boxes
  8. Bogart

    TFS 1.X+ Debug effect talkaction

    function onSay(cid, words, param) local player = Player(cid) if not player:getGroup():getAccess() then return true end if player:getAccountType() < ACCOUNT_TYPE_GOD then return false end local params = param:split(" ") if params[3] == nil then...
  9. Bogart

    Change mount looktype talkaction

    Assuming you're using 1.x, copy and paste creaturescripts/scripts/looktype.lua and change playerOutfit.lookType = lookTyoe to playerOutfit.lookMount = lookMount Also, change the table for invalid mounts, or remove it if there are no invalid mounts. Also change the limits in the condition, I'm...
  10. Bogart

    Feature Conjure Runes Backpkac

    wait wat
  11. Bogart

    I can send an email using OTCLIENT ??

    C++ Code to Send a Simple Email
  12. Bogart

    Color background

    You shouldn't tag people, it's quite rude. If you're using the tibiacom layout open layouts/tibiacom/basic.css and change line #4 from background-color: #061222; to background-color: #000;
  13. Bogart

    AAC The Real Gesior Ferobra acc Error :c

    Try changing the single slashes ("\") to double slashes ("\\")
  14. Bogart

    Clientless Game Server Connection Questions (8.60)

    Take a look. comedinha/Flash-News
  15. Bogart

    AAC Payment Methods

    Well you accept gift cards (the code being sent to you) and redeem them manually Also for bank transfers, you could check if your bank has an API and try to work with it.
Back
Top