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

Search results

  1. Santi

    Meteorite in Russia

    A 15mts meteor hitted Russia today (Chelyabinsk), no fatalities but some injuries because of the shockwave! Here are some vids: Meteorite in Russia: all videos in one place — Alexander Zaytsev
  2. Santi

    Sick mashup! Pop Danthology 2012

    7mill views in a coup of days, this mashup is killing it! Not really a commercial guy, but lovin it, best one after top of the pops '11 no doubt! https://www.youtube.com/watch?v=If5MF4wm1T8
  3. Santi

    Lua Array tables to Dictionary tables

    I'm currently in need of some help, is there any way to make an array table (a regular one) into a "dictionary" one? I need to convert this: local t, v = {1,2,3,4}, {"1", "2", "3", "4"} Into this: local table = {1="1", 2="2", 3="3", 4="4") Or is there any way by table.insert to make this...
  4. Santi

    Bogart

    Bogart m dejaste plantado ;((( ya no puedo confiar en vos pandaaaaaaaa :///////:,(imacry
  5. Santi

    PIPA gets pulled

    https://twitter.com/#!/ChuckSchumer/status/160378986097152002 Chuck Schumer You've been heard. #PIPA has been pulled so we can find a better solution.
  6. Santi

    Anonymous #OpGlobalBlackout

    http://www.youtube.com/watch?feature=player_embedded&v=5LlaF2AoL-o omeegee
  7. Santi

    Minimap in tibia, wth?!

    This: Uploaded with ImageShack.us[/img] My real pos is the red square, so it doesn't show it right, but wth is that, cause afaik the minimap over there doesn't look like that.
  8. Santi

    Math help

    #1: (-x4 + 4/3x3 - 5/2 + 3/2) - (x3 + 2x2 + 3/2x - 1) This should be: -x4 + 4/3x3 - 5/2 + 3/2 - x3 - 2x2 - 3/2x + 1 Is it ok? Please note that the numbers after the 'x' are the ^
  9. Santi

    Lua stopEvent

    I need to stop an event which is in another script. How can I do that? Got no time to think about any solution myself, sorry guys, I'm really busy. Thanks in advanced!
  10. Santi

    Action The Elemental Annihilation Quest

    Today I release this script I made, its about an annihilation, which you go inside, and theres a machine which its breaking itself and exploding, after 5 minutes it explodes and you die, you have 5 minutes to kill The elemental and go through the tp(The elemental blocks the exit speed"0" :p)...
  11. Santi

    Lua Upgrade script help

    I need a bit of help here, since I don't want to change the script drastically, I need to know if theres any alternative that I don't know. function isArmor(uid) -- Function by Mock the bear. if (getItemInfo(uid.itemid).armor ~= 0) and (getItemWeaponType(uid.uid) == 0) then return true...
  12. Santi

    Lua Need a bit of help with tables

    local t = { [XXXX] = {Values = {{1,3,5,7,9}}, newValues = {}}, [OOOO] = {Values = {{2,4,6,8}}, newValues={}} } So basically what Im trying to do is making the Values(of The XXXX) fo to the newValues(of the OOOO). And the values(of the OOOO) go to the newValues(of XXXX). But since the table...
  13. Santi

    [C] Arrays?

    How can i use LUA array in C? if isInArray({}) That function Thankss
  14. Santi

    Lua Enabling a part of table

    local t = { [1233] = {storage = 7890, level = {{enable = true, level = 50}}} } for k, v in pairs(t) do if getPlayerStorageValue(cid,v.storage) < 0 then if v.level.enable == false then doPlayerAddExp(cid,99) else if getPlayerLevel(cid) >= v.level.level then...
  15. Santi

    Lua Function to make stop attacking

    So, I need to know if theres any function that will make you cannot attack a monster function onTarget(cid, target) if isMonster(target) then ---- You cant atk monster for 'x' time ----
  16. Santi

    Some doubts

    1- Is there a way to check monsters in an area, and if there are monsters then remove them all? 2-You guys know where can I found the tibia earth map? Thanks in advanced
  17. Santi

    Lua Using function for 2 floors

    So, I want it so it removes all players in an area, thats why im using this function: local persons = getSpectators({x=EDIT, y=EDIT, z=EDIT}, 10, 10) But how can I do it so it gets the player from upper/down floors to? Thanks in advanced and rep+ EDIT: Nvm, solved, this thread can be closed...
  18. Santi

    Lua AM I using this right?

    It doesn't matter fow what the script is, I just want to know if im using the 'i' alright, or im doing it wrong. The thing im trying to make, its that each time you press the item, a globalstoragevalue will be displayed, the first time you press it you'll get 1+i , 'i' will be 1 at that moment...
  19. Santi

    Player killed

    So, I need this: If player A, kills player B, and player B has 'x' storageValue then 'y' Global storageValue does -1 (doesnt turn in -1, the number of that storage-1)
  20. Santi

    Lua Problem with Npc

    So the npc is supposed to repair softies or firewalker boots depending on what player chooses local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local Topic = {} function onCreatureAppear(cid)...
Back
Top