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

    Lua [tfs 1.2] Reward at certain level points

    Looking for code that at certain level points for example 100,150,200 and etc would give my config rewards im using. It should check vocations to, so maybe config could look like local config = { storage = xxxx, levelstages = 100,150,200,250,300 rewards = { addBonus =...
  2. Lopaskurwa

    Lua Give X premium points per hour

    Using tfs 1.2 im trying to make so every hour players would get x premium points but probably doing something hella dumb :D local config = { storage = 20000, pointsAddPerHour = 5, pointsPerHour = 1, checkDuplicateIps = false } function onThink(interval) local players =...
  3. Lopaskurwa

    TFS 1.2 is there commit where i can install revscript feature?

    But you see now people creating systems for rev and its really annoying dividing each code and track where it suppose to go, when u can just drag to a script/ folder and bam done
  4. Lopaskurwa

    TFS 1.2 is there commit where i can install revscript feature?

    What if i dont have .travis.yml appveyor.yml
  5. Lopaskurwa

    TFS 1.2 is there commit where i can install revscript feature?

    Hi, my older tfs 1.2 doesnt have /data/scripts/ feature which is revscript and i was wondering is there particular commit in github with tutorial how to add revscript support
  6. Lopaskurwa

    OTCV8 did anyone manged to enable GameCreatureIcons

    Doesnt it mean i gonna need Creature type and summon emblem too? because getSpeechBubble will be without a member
  7. Lopaskurwa

    OTCV8 did anyone manged to enable GameCreatureIcons

    protocolgameparse.cpp? wtf first time seeing it. Doesnt exist in my shitty src
  8. Lopaskurwa

    OTCV8 did anyone manged to enable GameCreatureIcons

    so where can i get that commit for it, so it would send the required info because im using 8.6 protocol 1.2
  9. Lopaskurwa

    OTCV8 did anyone manged to enable GameCreatureIcons

    Hi whenever i enable GameCreatureIcons it fucks entire otclient, i guess because its missing somekind of commits?
  10. Lopaskurwa

    TFS 1.2 getCondint a nil value on talkaction

    something isnt right with the code tho, for some reason it ignores the first line
  11. Lopaskurwa

    TFS 1.2 getCondint a nil value on talkaction

    Trying to create !showpztime talkaction but stuck with getCondition a nil value error, checked my previous codes that uses getCondition pretty much all of them created exactly the same, but it doesnt want to work this time function onSay(cid, words, param, channel) if...
  12. Lopaskurwa

    TFS1.2. os.date doesnt work onThink function?

    Aight seems to work
  13. Lopaskurwa

    TFS1.2. os.date doesnt work onThink function?

    This checks if it's any day other then Saturday or Sunday. yea because if its other day then Saturday or Sunday it should set storage to 0, which is fine. Second hour you said shouldnt happen because its not Saturday or Sunday so it shouldnt activate. So basically what it should do is if its...
  14. Lopaskurwa

    TFS1.2. os.date doesnt work onThink function?

    Hi im using os.date function so particular global storage would activate on described date, but noticed that it ignores the days i defined and it activated all the time and global interval i set up is 1 hour local days = {"Saturday", "Sunday"} function onThink(interval) local state =...
  15. Lopaskurwa

    TFS 1.2 how to edit this spell so every creature could cast this spell

    so it gives errors saying getstoragevalue is a nil value
Back
Top