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

Search results

  1. R

    Lua TFS 1.0 New Slot types.

    well, I've just added a new slot type and modified this files:
  2. R

    Lua TFS 1.0 New Slot types.

    You have to register 'em on luascript.cpp registerEnum(ENUM)
  3. R

    Solved [TFS 1.0] Raid System (Time&Date)

    You have to copy/paste all the script not just part of it... http://otland.net/threads/raidsystem-for-tfs-1-0.215009/#post-2061468
  4. R

    OTClient multi picture client

    modules/client_background/background.lua change init function to this: function init() background = g_ui.displayUI('background') background:lower() math.randomseed(os.time()) -- images named background-1, background-2, ..., background-10...
  5. R

    What film/show are you watching NOW!

    American Gangster.
  6. R

    [Opinions] In-game Account Manager

    Suggestions: * Instead of using "Create: Account Name", "Create: Password", you could use "Set Account Name" & "Set Password", just in case the user wants to change the account name/password before actually creating it. * Rename the button Next to Finish or smt like that, so users don't expect...
  7. R

    Solved [TFS 1.0 NPC] Problem to buy item

    Are you sure that u're using tfs 1.0? the 877e423 commit (userdata instead of cid) was pushed to the master branch (tfs 1.1)
  8. R

    The Forgotten Server 1.0

    Congratz!! tfs 1.0 yay! Thanks to all those who helped and I'll try to contribute more to 1.1 and give support to tfs 1.0 users. :)
  9. R

    Premium = x% more exp.

    function Player:onGainExperience(source, exp, rawExp) if player:getPremiumDays() > 0 then return exp * 1.5 end return exp end
  10. R

    Windows [Error] TFS 1.0 migrations/31.lua

    In your database, the table name is server_config...
  11. R

    Windows [Error] TFS 1.0 migrations/31.lua

    change the value in your database then. table > server_config db_version = 18
  12. R

    Windows [Error] TFS 1.0 migrations/31.lua

    search the 30.lua file, and if you find it change the return true to return false...
  13. R

    10 kills and a reward

    Wich distro do you use? tfs 1.0 (not tested) function onKill(cid, target) local playerTarget = Player(target) if playerTarget then local player = Player(cid) player:setStorageValue(10001, player:getStorageValue(10001) + 1) if player:getStorageValue(10001) >= 10...
  14. R

    Team Delete

    Thanks for the reply and good luck with your team. I suppose that contributing to tfs @github doesn't count as experience. :(
  15. R

    Team Delete

    Name: Rey Alemán Timezone (Country): México CDT (UTC -5 hrs) Availability: 3-4 hrs. Contact: only by PM. Position: Lua scripter. Examples: None. :P I do have a verified paypal account.
  16. R

    Solved Improve mission after killing a monster

    Have you registered the event? registerCreatureEvent(cid, name)
  17. R

    Error Website Menu

    are you including jQuery in the page? :/
  18. R

    [DevAAC] New AAC and best website for TFS 1.X

    Installation (dev release) Get composer curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin Clone this repo: git clone https://github.com/DevelopersPL/DevAAC.git Install dependencies: composer.phar install Set up your web server to serve DevAAC/public_html as...
  19. R

    Solved RME Compile in windows

    Paste the error here...
  20. R

    Problem with script 1.0

    change the conditions when you're checking more than 1 vocation like this: if isInArray({1, 5}, p:getVocation():getId()) then
Back
Top