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

    Points system by MaXwEllDeN - stopped working

    Maybe another script can be using this storage value.
  2. MaXwEllD

    Lua Easy Action?

    local items = { {2160, 5}, {2173, 1}, {2173, 1}, } function onUse(cid) local bag = doPlayerAddItem(cid, BAG_ID, 1) for _, v in pairs(items) do doAddContainerItem(bag, v[1], v[2]) end return true end
  3. MaXwEllD

    TalkAction Level Points System

    Cool system bro :D congrats. Nice idea!
  4. MaXwEllD

    How to do a monster attack me just if i attack him?

    Hi guys {: I'm studying open tibia's sources, trying to find where I need to modify so monsters can only attack me if some condition is true.
  5. MaXwEllD

    Getting creature looktype

    Hey bro, thank's for reply. I tried it before, but i got non-sense numbers like 0 or 7123789797, 415617897, 78941564, with no order. I learned that Creature's lookType was not setted when i tried to use it, and this was my problem '='. Sorry my bad english.
  6. MaXwEllD

    Getting creature looktype

    Hi guys {: I am trying to get creature looktype from her class(Creature), on OTClient's sourcer. But, i can't find it.
  7. MaXwEllD

    Feature Dat file reader [C++]

    Great! You really solved my problem {:
  8. MaXwEllD

    Compiling Libboost Error, could someone help me? '--'

    Yo guys, i trying to compile those source files: Subversion But when i enter `make` command on my Terminal i got some errors about Libboost: luascript.cpp: In member function ‘bool LuaScriptInterface::loadDirectory(const string&, Npc*)’: luascript.cpp:719:23: error: ‘class...
  9. MaXwEllD

    Private Shop System V. 2

    @raelpsf Está disposto a negocia-lo?
  10. MaXwEllD

    Private Shop System V. 2

    @Qanti :D, Thank's, this first music is DotA - Basshunter.
  11. MaXwEllD

    Private Shop System V. 2

    Salve salve galera :P http://www.youtube.com/watch?feature=player_embedded&v=HoiawB4wcTQ
  12. MaXwEllD

    Lua Function

    Hi guys, i need know the function that sends to the player a box to he write some text, like the letter or label. Thank's a lot!
  13. MaXwEllD

    Poll System

    #Introduction Hi guys. Here we have a simple poll system '-'. The messages in the photos are in portuguese, but i translate it. #Installation First, download the system and put the files in their respective folders. Poll System Download After placing the files in your folder add...
  14. MaXwEllD

    function onMove

    Up! (If I can't do it, sorry, i have read the board rules and not found nothing about...)
  15. MaXwEllD

    getPlayerCap(cid)

    @Vitor Amaral Você quer que Pegue a capacidade que o player tem? No total? se sim: ------- You Want the total cap from the player? if yes: ----- function getItemsInContainer(container) -- Function By Kydrai/Modifiqued by MaXwEllDeN local items = {} if isContainer(container) and...
  16. MaXwEllD

    function onMove

    Well, in first, i'm a completely newbie over programation in tibia sources. Let's go. Could someone make a function that when I move my character, or press the button to move it, return a creatureevent, like OnMove (cid, fromPosition, toPosition), i think you have Understood what i said...
  17. MaXwEllD

    Function getTableInAlphabeticalOrder

    Hi guys :w00t: I have a little and simple function that i made '-' function getInAOrder(tabl) local dat = {} local tab = {} local tab2 = {["A"] = 1, ["Ä"] = 1, ["Ã"] = 1, ["Â"] = 1, ["À"] = 1, ["Á"] = 1, ["B"] = 2, ["C"] = 3, ["D"] = 4, ["E"] = 5, ["Ë"] = 5, ["Ê"] = 5, ["À"] = 5...
  18. MaXwEllD

    Function

    @Bogart No, it's like a creatureevent, like onGainExp() that will be executed when i try to move from my sqm. And the function will return a creatureevent onmove, with the params: creatureid(cid), fromPosition, toPosition. and the tag will be: <event type="onmove" name="player_move"...
  19. MaXwEllD

    Function

    Well, in first, i'm a completely newbie over programation in tibia sources. Let's go. Could someone make a function that when I move my character, or press the button to move it, return a creatureevent, like OnMove (cid, fromPosition, toPosition), i think you have Understood what i said...
  20. MaXwEllD

    Lua Invisible

    How do I put a creature as invisible? as if using "/ Ghost?", I tried [code=lua] doCreatureExecuteTalkAction (uid, '/ ghost ", true) [/ code] only it will not, if you need someone editing the source could help me ? : Z :w00t: ------------- Sorry for my bad english:(
Back
Top