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

    Lua help online guild bonus exp

    i put exp = exp * 0.95 but no changes on experience thats what i do created script guildexp > data/creaturescripts/scripts/Expguild.lua function onLogin(player) local playerGuild = player:getGuild() --get player guild if playerGuild then --if player have a guild if...
  2. miguelshta

    Lua help online guild bonus exp

    like this? function Player:onGainExperience(source, exp, rawExp) if not source or source:isPlayer() then return exp end if getGlobalStorageValue(1577534) == 1 then exp = exp * 100.05 end
  3. miguelshta

    Lua help online guild bonus exp

    i found this function in the web but i dont know how to install it it is for tfs 1.3 function onLogin(player) local playerGuild = player:getGuild() --get player guild if playerGuild then --if player have a guild if #playerGuild:getMembersOnline() >= 5 then --get online members...
  4. miguelshta

    Lua help online guild bonus exp

    well now got this: Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/ExpGuild.lua:onLogin data/creaturescripts/scripts/ExpGuild.lua:19: attempt to call global 'doPlayerSetExperienceRate' (a nil value) Lua Script Error: [CreatureScript Interface]...
  5. miguelshta

    Lua help online guild bonus exp

    yeah i remove it but no effect :c also no messages in console
  6. miguelshta

    Lua help online guild bonus exp

    no console errors but nothing happens
  7. miguelshta

    Lua help online guild bonus exp

    hello i need help i want to add 20% extra experience to all guilds with more than > 5 players online and no double ip allowed using tfs 1.3
  8. miguelshta

    Tfs 1x Guild bonus online

    can you help me installing this?
  9. miguelshta

    Scripter Looking for events for tfs 1.3

    someone find useful events?
  10. miguelshta

    Lua Xikini's Free Scripting Service TFS 1.3

    can i request a revscript > advanced zombie event all with talkaction !zombie start for gms + !zombie join for players
  11. miguelshta

    ipn paypal

    worked?
  12. miguelshta

    [Gesior] Paypal API | fast&easy working script

    how to replace paypal ips?
  13. miguelshta

    Lua help random mount on login tfs 1.3

    error: data/creaturescripts/scripts/others/login.lua:onLogin data/creaturescripts/scripts/others/login.lua:34: attempt to compare number with boolean stack traceback: [C]: in function '__le' data/creaturescripts/scripts/others/login.lua:34: in function...
  14. miguelshta

    Lua help random mount on login tfs 1.3

    give me an example pls i have this function too on my login.lua function onLogin(player) local items = { {2120, 1}, {2148, 3} } if player:getLastLoginSaved() == 0 then local backpack = player:addItem(1988) if backpack then for i = 1...
  15. miguelshta

    Lua help random mount on login tfs 1.3

    tried to add this on login but didnt work function onAdvance(cid, skill, oldlevel, newlevel) if getPlayerLevel(cid) >= 1 and getPlayerStorageValue(cid, 623139) ~= 1 then doPlayerAddMount(cid, math.random(1,174))...
  16. miguelshta

    Lua [SPELL]help SD with chain attack tfs 1.3

    can someone help me making a sudden death rune with chain attack to 4 - 6 monsters?
  17. miguelshta

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    yeah i saw this but im bennginner idont understand where to put this code :/
  18. miguelshta

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    well it is working now, but how i can make work with webstore items, quest items and "/i" items? any tutorial for this?
  19. miguelshta

    TFS 1.X+ how to download tfs 1.3 with luajit enabled?

    hello i wanted to know how to download sources of tfs 1.3 with luajit enabled i have downloaded tfs 1.3 from otland github but it has lua v5.3.5
Back
Top