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

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Need script Talkaction show premium time of player

    [SQLite] -=[TFS]=- 0.4 8.60 Need script Talkaction show premium time of player example /pa player
  2. samuel157

    [SQLite] -=[TFS]=- 0.4 8.60 [Creaturescripts] endvip.lua

    use this script when vip finishes it will be kicked automatically function onLogin(cid) if getPlayerStorageValue(cid, 13545) - os.time() > 0 then setPlayerStorageValue(cid, 9898, 1) end local pos = {x = 154, y = 51, z = 7} -- Temple Position. function Vodka(cid) if isPlayer(cid) then...
  3. samuel157

    [SQLite] -=[TFS]=- 0.4 8.60 [Creaturescripts] endvip.lua

    When I buy the VIP it says I'm done with the VIP function onLogin(cid) local vipStorage = getPlayerStorageValue(cid, 13545) if vipStorage > 0 then if vipStorage - os.time() <= 0 then setPlayerStorageValue(cid, 13545, -1) doPlayerPopupFYI(cid, "You VIP...
  4. samuel157

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Systemvip Problem on /checkvip of player

    This script even the player with VIP says it's over, if you can help me I'd appreciate it function onLogin(cid) local vipStorage = getPlayerStorageValue(cid, 13545) if vipStorage > 0 then if vipStorage - os.time() <= 0 then setPlayerStorageValue(cid, 13545, -1)...
  5. samuel157

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Systemvip Problem on /checkvip of player

    elseif(words == "/checkvip") then if getPlayerAccess(cid) == 5 then if not param then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") end local player = getPlayerByName(param) if not isPlayer(player) then doPlayerSendTextMessage(cid...
  6. samuel157

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Even with 0 days of VIP status, he continues to access the VIP area. storage: 13545

    that function function onLogin(cid) local vipStorage = getPlayerStorageValue(cid, 13545) if vipStorage > 0 then local currentTime = os.time() if vipStorage <= currentTime then setPlayerStorageValue(cid, 13545, -1) doPlayerPopupFYI(cid, "Sua...
  7. samuel157

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Even with 0 days of VIP status, he continues to access the VIP area. storage: 13545

    [SQLite] -=[TFS]=- 0.4 8.60 Even with 0 days of VIP status, he continues to access the VIP area. storage: 13545 Script: buy vip 31 days and show you vip account end function onLogin(cid) local vipStorage = getPlayerStorageValue(cid, 13545) if vipStorage > 0 then if...
  8. samuel157

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Perfect System VIP 2.0 - Doesn't work as it should

    Problem I identified doPlayerPopupFYI
  9. samuel157

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Perfect System VIP 2.0 - Doesn't work as it should

    When I buy vip a debug error appears and when an old char vip days 0 appears it does not remove the storage and does not remove the nickname [VIP] from the name Talkaction Systemvip.lua -- Script SYtem vip 2.0 -- function onSay(cid, words, param) if(words == "!buyvip") then local price = 2000...
  10. samuel157

    TFS 0.X [SQLite] -=[TFS]=- 0.4 8.60 How do I remove [VIP] from characters in the player name

    It doesn't work Roberto even with query sqlitestudio
  11. samuel157

    TFS 0.X [SQLite] -=[TFS]=- 0.4 8.60 How do I remove [VIP] from characters in the player name

    @lursky [19:25:29] Error while executing SQL query on database 'Sam': near "(": syntax error DATA TYPE VARCHAR
  12. samuel157

    TFS 0.X [SQLite] -=[TFS]=- 0.4 8.60 How do I remove [VIP] from characters in the player name

    [SQLite] -=[TFS]=- 0.4 8.60 How do I remove [VIP] from characters in the player name
  13. samuel157

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Stamina Refil

    To charge my stamina you have to leave of game logout, how can I do this and it increases in the game without having to logou of game? function onUse(cid, item, fromPosition, itemEx, toPosition) local cfg = {} cfg.refuel = 42 * 60 * 1000 if getPlayerStamina(cid) == 2346 then...
  14. samuel157

    Lua [SQLite] -=[TFS]=- 0.4 8.60 [TALKACTION] HOW TO ADD COMMAND /ADDSTORAGE

    [SQLite] -=[TFS]=- 0.4 8.60 [TALKACTION] HOW TO ADD COMMAND /ADDSTORAGE SAME PLAYER STANDING OFFLINE AND ONLINE COMMAND EXAMPLE: /addstorage test, key -> 14789 -> value /addstorage test, 14789, 0 or -1 or 1
Back
Top