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

  1. R

    VIP System for TFS 1.1

    You are right about the removingvipdays, but it's now edited even for 1.1 and is working.. I mean the rest of it, but I'll take an eye for your vip 1.1 system, thanks :)
  2. R

    Solved Adding custom monster

    Nope, it's not possible, becouse the file is not existing on server. It's not script error, something went wrong with GIT, trying to fix it Okey SOLVED, for some reason my git commands from win doesnt adding files in monster folders that already exists, so I had to make "Custom" new folder to...
  3. R

    Solved Adding custom monster

    That's all alright, seems I've some issue with adding it to repositary, on my local I've it, even I've pushed files on server, still this expbug.xml is not there for some reason.
  4. R

    Solved Adding custom monster

    Hello, I've tried to add custom monster. I'm using TFS 1.1 server, It seems pretty easy, but somehow it's not working for me. I've imported it into mapeditor, made its spawn, planted in but while it's loading server it comes with [Error - Monsters::loadMonster] Failed to load...
  5. R

    VIP System for TFS 1.1

    Thanks, it's working now! I'm trying to add VIPTILE but without succes. here is my viptile.lua function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if not player then return true end if getPlayerVipDays(player) == 0 then...
  6. R

    VIP System for TFS 1.1

    I've found another problem, when the time for removeVipday come, it comes with this error. Lua Script Error: [GlobalEvent Interface] data/globalevents/scripts/daysremover.lua:onTime data/globalevents/scripts/daysremover.lua:2: attempt to call field 'executeQuery ' (a nil value) stack...
  7. R

    Solved Magic Effect on SQM

    Didnt fix the problem my script: local config = { positions = { {pos = {x = 32358, y = 32241, z = 7}, text = "VIP ZONE!"} }, effects = {CONST_ME_POFF, CONST_ME_TELEPORT, CONST_ME_MAGIC_RED} } function onThink(interval) local people = Game.getPlayers() if...
  8. R

    Solved Magic Effect on SQM

    Hello I tried the edit on 1.1 TFS, eventhough its all in compat.lua wrote like this, it colidates with anything :/ Lua Script Error: [GlobalEvent Interface] data/globalevents/scripts/talking.lua:onThink data/globalevents/scripts/talking.lua:9: attempt to call global 'getOnlinePlayers' (a nil...
  9. R

    VIP System for TFS 1.1

    Ahh, that's the syntax! I went on it wrong, finally I'm slowly getting into a little. Seem it's working now, I haven't tried these teleport tiles or doors so can we have this thread still open please?
  10. R

    VIP System for TFS 1.1

    oo.. seems its working now, only remove item is not working... doRemoveItem is problem only now, I've doRemoveItem in compat.lua function onUse(player, item, fromPosition, itemEx, toPosition) if getPlayerVipDays(player) > 365 then player:sendCancelMessage(text)("You can only have 1 year of vip...
  11. R

    VIP System for TFS 1.1

    It pops orange VIP, no debug now. But still cant login trough vipcheck function onUse(player, item, fromPosition, itemEx, toPosition) if getPlayerVipDays(player) > 365 then doPlayerSendCancel(player, "You can only have 1 year of vip account or less.") else doAddVipDays(player, 30)...
  12. R

    VIP System for TFS 1.1

    But I've it in my compat.lua included this already... Ill try out this, thanks... but still, do you have idea what to do with the first issue? Now I could've loged in, but after I used medal, it should add VIP (or its teddy bear in my version, but thats what I can fix). After I can't login on...
  13. R

    VIP System for TFS 1.1

    That's what I've in my compat.lua... By the way, priority error is the first one with the indexing global players, I can't fix it anyhow :/
  14. R

    VIP System for TFS 1.1

    Now I could've loged in, but after I used medal, it should add VIP (or its teddy bear in my version, but thats what I can fix). After I can't login on that account. index global 'player'... Do you have idea what happened? Lua Script Error: [CreatureScript Interface]...
  15. R

    VIP System for TFS 1.1

    Ou I tried, new issue appeared! Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/others/VipCheck.lua:onLogin data/creaturescripts/scripts/others/VipCheck.lua:2: attempt to compare number with string stack traceback: [C]: in function '__le'...
Back
Top