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

    Solved How i can return a channel name?

    yes but only for defaults channels, i want return channel names because i want to recognize customs channels, like "if channel == "name" then dosomething(cid) end" but with "id" is better, like my advanced checkpoint system...
  2. Exedion

    Solved How i can return a channel name?

    really thanks! but i find a better way to compare channels without the channel name
  3. Exedion

    Lua onOutfit or i need new function like onMount?

    that code work when i right click in char and choose "mount" or "dismount" or when do ctrl + r?
  4. Exedion

    Windows Setting Base Character speed limit

    use something like: local speed == 220 function onAdvance(cid, skill, oldLevel, newLevel) if(skill == SKILL__LEVEL and getPlayerGroupId(cid) < 4) then doChangeSpeed(cid, speed - getCreatureBaseSpeed(cid)) end return true end
  5. Exedion

    Is it posible?

    do something like this: function onLogin(cid) doChangeSpeed(cid, delta) return true end and for level advance function onAdvance(cid, skill, oldLevel, newLevel) if skill == SKILL__LEVEL then doChangeSpeed(cid, delta) end return true end...
  6. Exedion

    CreatureEvent Revive From Death V. 1.0// Cyko Production

    Great! usefull for me! but why "outfit = 0", it make you invisible?
  7. Exedion

    Feature [CreatureEvent] onSoulChange(cid, value) - Trigger functions when soul points change!

    Hello to all! :D well some time ago i want to make a system to get magic level and some other functions with the ever forgotten soul points in tibia, but i ever find a limit: no function to trigger the system :/... so i decide to read the sourcers and do the function by myself :D and here is the...
  8. Exedion

    Otswe Free Scripting Service (Actions/Movements/Creaturescripts) Open Again!

    because every newby can delete easy the sign of Cyko and post the the script in another site owning the credits with that method is not so easy for newbys, steal the credits :D - - - Updated - - - here a lua request: a function to recognize the day of week example: Day of week...
  9. Exedion

    Fix/Patch [CreatureEvent] onAdvance "SKILL__EXPERIENCE"

    idk, but when you use SKILL__EXPERIENCE at skill in onAdvance, not show you current gained experience with any parameter, with oldLevel and newLevel, ever show the experience needed for next level, with this patch you can return the current gained experience, for many purposes like add bonus...
  10. Exedion

    Fix/Patch [CreatureEvent] onAdvance "SKILL__EXPERIENCE"

    you can include it in your newest dev 0.4 sourcers
  11. Exedion

    Fix/Patch [CreatureEvent] onAdvance "SKILL__EXPERIENCE"

    This is a small patch to give a better use of parameters in "onAdvance" creature event with "SKILL__EXPERIENCE", take a look: if you use a script like this: function onAdvance(cid, skill, oldLevel, newLevel) if(skill == SKILL__EXPERIENCE) then doPlayerSendTextMessage(cid...
  12. Exedion

    Otswe Free Scripting Service (Actions/Movements/Creaturescripts) Open Again!

    i have the knowlegde, but in lua, i lost easy, i have some time without scripting, i do the c++ function, but with your script i can do my script :)
  13. Exedion

    Otswe Free Scripting Service (Actions/Movements/Creaturescripts) Open Again!

    Yes, thank you very much, I appreciate your help later or tomorrow i will release the new function I created "onSoulChange(cid, value)", works perfect
  14. Exedion

    Cual fue tu ot favorito?

    El legendario guia3D
  15. Exedion

    Otswe Free Scripting Service (Actions/Movements/Creaturescripts) Open Again!

    this script is usefull, but for better usage i need a c++ code for new creature event like: onSoulChange(cid, soul), with this i can do a better system
  16. Exedion

    Lua onOutfit or i need new function like onMount?

    thanks lessaire, i making my version, but your version is better, i take a look... can you help me with a creature event for soul points?
  17. Exedion

    CreatureEvent Advanced Checkpoint System (based on my own request and the work of Cyko)

    Yeah, I know, but I leave so that if the player does not notice the tile, when a creature step on it, can help to find the tile.
  18. Exedion

    Compiling Error while compiling in Windows

    sounds like you are compiling with luajit at first time, try to remove that option... and try to get updated libs for compiling, it help a lot
Back
Top