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

Recent content by Gazzy

  1. G

    /ban command help

    "Not enough params."
  2. G

    /ban command help

    bump @Limos
  3. G

    Spell Scroll

    It works thanks a lot bro :)
  4. G

    Spell Scroll

    I need help with my script that gives the character a spell. I need this item to only be usable by sorcerers. Help? TFS 0.2 Script local spell = 'Mega Vis' function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerLearnedInstantSpell(cid, spell) == FALSE then...
  5. G

    /ban command help

    Hey guys, I need some help with the command /ban in tfs 0.2.15. Could someone tell me how to use it and give an example please? Thanks
  6. G

    Player Groups

    It was because in the database I changed account group ID instead of type, it's working now but thanks anyway bro :)
  7. G

    Player Groups

    I understood, but it is not working :(
  8. G

    Player Groups

    Is acctype 1 equal to acctype 2 aswell?
  9. G

    Player Groups

    Heyguys, I recently switched from sqlite to mysql so I could add player groups. I've added them and they work ingame however I can't use any commands no matter what group id I have. I have 5 group IDs: Player - 1 Tutor - 2 Gamemaster - 3 Community Manager - 4 Owner - 5 Here is my commands.xml...
  10. G

    Remove Item

    Works, thanks a lot bro :)
  11. G

    Remove Item

    function onSay(cid, words, param) print("Test") if getPlayerAccess(cid) < 1 then return false end
  12. G

    Remove Item

    I added the message under function onSay and it didn't show but I also added it at the start and it didn't show either, could you try to remake the script again as best as you can? local config = { [1] = {pos = {x = 545, y = 789, z = 7}, itemid = 5313, text = {"Event area #1 is open. Event...
  13. G

    Remove Item

    !barrier on 1 etc still not working. :(
  14. G

    Remove Item

    local config = { [1] = {pos = {x = 545, y = 789, z = 7}, itemid = 5313, text = {"Item1 is created.", "Item1 is removed."}}, [2] = {pos = {x = 551, y = 789, z = 7}, itemid = 5313, text = {"Item2 is created.", "Item2 is removed."}} } function onSay(cid, words, param) if not...
  15. G

    Remove Item

    Done, that error's gone. What about
Back
Top