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

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    [21:40:53.975] Inviter has logged in. Running Login Referral System. [21:41:34.218] King has logged in. Running Login Referral System. 1 Running onAdvance Referral System. No rewards for gaining level 2. Running onAdvance Referral System. No rewards for gaining level 3. referral_rewards = {...
  2. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    I'm so sorry, i didn't know onadvance scripts should be added on login.lua login account who was invite and get lvl 5 (with inviter offline): [7:54:11.612] Reffereal Test has logged in. Running Login Referral System. Running onAdvance Referral System. Running onAdvance Referral System. Running...
  3. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    I've login, got lvl 4, logout, and log back in the inviter account, and only print this: [14:0:37.597] Reffereal Test has logged in. Running Login Referral System. [14:1:35.574] Reffereal Test has logged out. [14:1:42.183] Convidador has logged in. Running Login Referral System. [14:1:56.925]...
  4. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    I've used yours Should i change on [3] = {premmydays = 1, storage = false, outfit = false}, --Storage is only needed if you want them to only receive this reward on their first referal. To [3] = {premmydays = 1, storage = false, outfit = false}, --Storage is only needed if you want them to...
  5. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    Not work bro Using referral_rewards = { --[Reward_Level] = {premmydays = #, storage = #}, -- [80], [100], [150] [3] = {premmydays = 1, storage = false, outfit = false}, --Storage is only needed if you want them to only receive this reward on their first referal. [4] = {premmydays =...
  6. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    THANK YOU SO MUCH! --- I'm reciving this errors when any player login: [9:4:54.507] Axe has logged in. [9:4:54.508] [Error - CreatureScript Interface] [9:4:54.508] data/creaturescripts/scripts/referral.lua:onLogin [9:4:54.508] Description: [9:4:54.508]...
  7. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    @Flatlander could you help me to finish it? Because it should add bonus to player who advance level, not player who reffer the player who advance level function onAdvance(cid, skill, oldLevel, newLevel) local r = { [50] = {premmydays = 1, storage = 50010}, [100] = {premmydays = 3...
  8. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    The problem is: The player who invite the other one may be offline doPlayerAddPremiumDays(cid, 3) -- Premmium days value. doPlayerAddOutfit(cid, 1, 3) -- First number outfit ID, second addons. doPlayerSetStorageValue(uid, 5555, 1) Are functions to use on players online And on this system the...
  9. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    I asked about how to use array to check lvls To get information from here: [50] = {premmydays = 1, storage = 50010}, [100] = {premmydays = 3, outfitid = 22, addon = 1}, [150] = {premmydays = 5, outfitid = 22, addon = 2}, [50], [100], [150] And about 3 rewards instead of 1...
  10. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    Would be possible to add a storage and a addon to players offline? That is my DB.sql hastebin I think storages are saved on: SELECT * FROM `player_storage` So i did this, i think it gonna work: db.executeQuery("INSERT INTO `player_storage` SET (`player_id`, `key`, `value`) VALUES ('" ...
  11. sucibob

    TFS 0.X Would be possible to add a storage and a addon to players offline?

    No, that i put was a example... Sorry this late, i was trying to study to get something more, not just ask to u guys do... That is my DB.sql hastebin I think storages are saved on: SELECT * FROM `player_storage` So i did this, i think it gonna work: db.executeQuery("INSERT INTO...
Back
Top