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

vip

  1. potinho

    Lua [TFS 0.X] Send player to temple after VIP expires

    Good morning people, everything fine? I'm trying to create a creaturescript that validates the player's VIP time (onLogin), if the time has expired, it sends the player to the temple of TownID 1. Could you help me to create this script? Below are the functions to validate my VIP system...
  2. potinho

    TFS 0.X All players start with VIP - Add VIP Time all accounts

    Hi, I have a VIP by accounts system that works perfectly for me, based on these functions: VIP_ACCOUNT_STORAGE = 30009 function getAccountStorage(cid, key) local ret = db.getResult("SELECT `value` FROM `account_storage` WHERE `account_id` = ".. getPlayerAccountId(cid) .." AND `key` = "..key)...
  3. potinho

    TFS 0.X [7.6] Vip Days left

    I have a vip script that works great and gives the player 30 days of VIP. I would like to create a command (talkaction) that the player can see how much VIP time he still has. Follow my VIP scroll action: local vipStorage = 30009 local vipDays = 30 function onUse(cid, item, fromPosition...
  4. potinho

    TFS 0.X VIP scroll for Acc

    Hello people, I have a VIP Scroll script that works well and suits my needs, however it only makes the player VIP, not the entire account. How to change to my VIP scroll action give vipStorage (30009) for all characters of the same acc? Im using TFS 0.4. Follow my action. local vipStorage =...
  5. potinho

    TFS 0.X [7.72] MOD Autoloot - Restrict by VIP Players

    Hello everyone, everything good? I have the MOD below on my server that works well, but I would like only VIP players to be able to use it. VIP players have 30009 storage on my server, I would like the MOD to validate that and, if it doesn't have the storage, the message appears that only VIP...
  6. potinho

    Remove Storage Value After 30 days

    Hiho everybody, im hosting a 7.6 server (TFS 0.4) and have a action for vip scroll (its working), but VIP stays forever, i need when a player use the vip scroll, keep storage 30009 for 30 days, after this time remove. Following my LUA archive for vip: function onUse(cid, item, frompos, item2...
  7. A

    Vip with 30 days storage

    I have 2 scripts that are giving vip to the player. and i need help to fix them 1- Vip through the Store, I edited it a little and left it that. However it seems that the Storage is not going out alone over time, I need the player to lose the storage after 30 days. because I'm using the Storage...
  8. qben360

    C++ [YUROTS] 7.72 XML Status vip online/offline

    Hello guys i need a help with VIP. When i add player if he is online its show me on vip "he is online", but if i restart server, then status not refreshed. After restart server if i login on server, then in vip its show me offline, but player is online. Where in source i can change this?.
  9. drafenous

    Lua NPC travel by storage not working

    Hello my friends! I'm making a NPC for travel to Gengia, Pyro and Oken in my server. But my npc can't travel to destination on say "yes". Here is my script: if (msgcontains(msg, "gengia")) then if(vip.hasVip(cid) == true) then npcHandler:say("Do you want to sail to...
  10. T

    Commando to buy vip days

    Hi everyone, I need a script so that the player can buy vip for a certain amount, someone can help me my system is this. vip = { name = "Vip system"; author = "Mock"; version = "1.0.0.0"; query="ALTER TABLE `accounts` ADD `vip_time` INTEGER"; query2="ALTER TABLE `accounts` ADD `vip_time`...
  11. E

    Using VIP medal doesnt update vip days in db

    TFS 0.3.6 Using this VIP system GlobalEvent - Vip System Is there a better one?
  12. Colandus

    Simple VIP system

    function getPlayerLastLogin(cid) local lastLogin = getPlayerStorageValue(cid, 45345) if(lastLogin < 0) then doPlayerUpdateLastLogin(cid) return os.time() end return lastLogin end function doPlayerUpdateLastLogin(cid) setPlayerStorageValue(cid, 45345...
Back
Top