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

    [FREE] Talkactions/Movements/Actions/global/creature/spells/MORE!

    Give me a min....... - - - Updated - - - local time_to_unhaste = 10 -- in seconds -- function onCast(cid, var) local party = getPlayerParty(cid) if getPlayerParty(cid) > 0 then doAddCondition(cid, CONDITION_HASTE) doAddCondition(getPlayerParty(cid), CONDITION_HASTE)...
  2. G

    Lua Easy Talkaction Fix

    Thats not related to this script....if you put in the code i gave you, it will work....Look in your file called foodcheck - - - Updated - - - talkactions/scripts/foodcheck.lua:4: ')' expected near 'full'
  3. G

    Lua Easy Talkaction Fix

    Actually, the only thing I can think of is this script is not allowing anyone but level 5-9 use it.... Post the error, or possibly the hole script. - - - Updated - - - if getPlayerLevel(cid) >= 5 and getPlayerLevel(cid) < 10 then if getPlayerStorageValue(cid, 25001) == 1 and...
  4. G

    TalkAction Creature Kill Count System

    Talkaction: function onSay(cid, words, param) if (param == "") then return false end t = string.explode(param, ",") t[1] = monster if (isCreature(monster)) then if getPlayerStorageValue(monster) > 0 then local amount = getPlayerStorageValue(param) local text = "You have killed " .. amount ...
  5. G

    Large amounts of lag?

    First, make sure you have the server running on all 4 cores. In the config.lua find the cores editing place. Type 0, 1, 2, 3. Also set it to run on realtime. Then you can go into control panal>system>advanced>performance You can adjust options there if you like. Then: go into the...
  6. G

    Real Tibia Distro Req

    I was looking around, and found this: http://otland.net/f465/8-54-frankfarmers-real-tibia-project-epic-release-full-zao-link-61247/ It would be perfect, but none of the downloads work. If anyone has this file, can get it, or has another real tibia distro. Please post it here.
  7. G

    Soccer system mod error :S

    You need the positon on line 26 as the pos that player 2 is standing.. This script might require one player of each team to be standing on the levers for them to be used. But as ciko said, its saying that a moveevent is wrong, and seems how this is all mod, I think its the position. Without a...
  8. G

    Lua Talkaction gone wrong

    if getPlayerStorageValue(cid, 25001) == 1 and getPlayerLevel(cid) => 5 and getPlayerStorageValue(cid, 26001) <= 6 then Your script /\ correct script \/ if getPlayerStorageValue(cid, 25001) == 1 and getPlayerLevel(cid) >= 5 and getPlayerStorageValue(cid, 26001) <= 6 then
  9. G

    [Lua Tut] NEW SCRIPTERS INTENDED

    YOU MUST KNOW SOMETHING ABOUT THE COMMANDS if/then/else/elseif/end PART 1: Scripts, and setting them up. Scripts only know what you tell them, and they have to read everything in order. The way to set a script up correctly is: The first if is ended last. This means: function if1...
  10. G

    Lua how to add to creatures max health?

    1) your first thing you showed. setCreatureMaxHealth(cid, (getCreatureMaxHealth(cid) + 15) You need to add 2 )) There are 3 ((( and only 2 )), you see? setCreatureMaxHealth(cid, (getCreatureMaxHealth(cid) + 15)) Then it would work. Or, 2)local bonus = (getCreatureMaxHealth(cid), + 15)...
  11. G

    Team [TIBIA XXX 7.4] Looking for person who can deal with DDOS attacks.

    http://prevent-ddos-attacks.winsite.com/ - - - Updated - - - netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n type this in CMD when your getting DDOS. You will have to configure your computer to allow a certain amount of pings. Google that.
  12. G

    CreatureEvent Rebirth monster (phoenix effect)

    I edited it, should be 100% just make sure you make the monsters right.
  13. G

    How to call a simple value from database

    -edited- nvm dont know. for CPP.
  14. G

    Windows Help putting server online (I tried a lot) - Really Decriptive

    192.168.0.20 << he said he created this IP. Though yo are still right in as sence, he probably based that IP from his gateway IP. To allow players to connect to use do as told by using the whatismyip.com website. If you dont want people to see that IP, go to no-ip.com, and make a host. Now...
  15. G

    TalkAction Bot-check with calculator

    You bot check the player, it sends him a problem, and send you the answer. cannot test sorry. --------bot check---------- local access_to_check = 3 local types = (+, -, *, /) local first_rand = math.random(1, 50) local second_rand = math.random(1, 50) local rand_types =...
  16. G

    CreatureEvent Rebirth monster (phoenix effect)

    when the monster dies, it makes a second (stronger one) in its place, then when that one dies you get the loot or exp... - - - Updated - - - make 2 monster in monsters files, both look same name same exept 1 rebirth or something.. Set first one 0 exp, 0 loot. Second one with exp with loot, and...
  17. G

    Windows Need help. -spriting

    Check download sections tools. There is editors there.
  18. G

    TalkAction pits of hell event

    Add another global event local timeend = 2 -- time in minutes to end event -- function onThink(interval, lastExecution, thinkInterval) if getGlobalStorageValue(pits_of_hell) == 0 then setGlobalStorageValue(pits_of_hell, 1) doBroadcastMessage("PITS OF HELL HAS STARTED!", 1)...
  19. G

    [Lua Tut] NEW SCRIPTERS INTENDED

    Download link removed. Look down to find tutorial.
  20. G

    Solved Teleport with storage value

    I think thats it. Welcome to scripting :)
Back
Top