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

    How to create new conditions in c++ and otclient sources ?

    remove please
  2. G4BB3R

    Bug on CONDITION_PARAM_DELAYED

    In my server sometimes (once a day with 300 players online) happen a strange bug. Spells that uses delayed damage with CONDITION_PARAM_DELAYED with fire or poison is casted by a player but the hit is done from a random player on the map, even the hit message is sent to him. Example: player A...
  3. G4BB3R

    What is the most stable distro ?

    I am making a custom server with otclient, and I want to know your opinions. What is the best distro version to work with custom otclient ? Distro stability VS OTB, OTBM, Dat and Spr Tools VS OTClient version stability
  4. G4BB3R

    Compiling I need CMakeLists do compile on linux/OSX

    Hello, I compiled many times a few distros in Linux and OSX, but now with 0.36pl1 version 8.54, I do not have the CMakeLists.txt to compile. Can someone post the correct one for this version ? Thanks!
  5. G4BB3R

    Compiling problem :: Gcc can't be updated to 4.6 or greater

    Today I followed the github tutorial to compile on windows 8. But even updating mingw, the message "Sorry, you need gcc 4.6 or greater to compile." still appears. I verified the toolchain path, deleted the MinGW from Code::Blocks folder, and still not working. Error log (half): --------------...
  6. G4BB3R

    LUA Auto Border

    Recently to practise LUA scripting and logic, I was trying to make an action that I would use the pick in a earth cave border and then the square would be removed and the borders would be reajusted. Remeres map editor has a similar algorithm to make the earth auto border (the same for water...
  7. G4BB3R

    Solved Using more than one skill condition per time

    Hello, I am making food system that each food gives you some diferent conditions. The problem is that when I use second condition (to increase magic level), the first effect (i.e. axe fighting) decreases back. How to use more than one skill condition ? Thanks
  8. G4BB3R

    Solved Best way to convert client spriteId to server item id ?

    Hello :D I would like to know if actually there is a function to convert in the server sided itemId: iterating through the .otb file and checking if the item has the same spriteId, than return the correct item id :) Example: Any help is welcome Thanks again - - - Updated - - -...
  9. G4BB3R

    Lua Packet Loss on TextMessages sent on onLogin event

    Hello. Sometimes the onLogin messages do not appear on my server (10% of the times nothing arrive): My server is 8.6, and I really can't understand why is occuring packet loss on onLogin events .-. I really need the messages to be shown because they have some parameters that the client...
  10. G4BB3R

    Lua Searching for a movement that activate every time I walk

    Hello people. I am searching for a movement xml that activate EVERY time I walk in ANY tile. How to do that ? Thanks
  11. G4BB3R

    Lua Check Items on ground

    Hello. I am trying to loop through all items in the ground (except floor) But using the script gives some console errors because it loop at non existent items. for stack = 1, 255 do if getThingFromPos({x = a.x, y = a.y, z = a.z, stackpos = stack}).uid > 0 then --[...] end end...
  12. G4BB3R

    More Customizable Open Tibia Servers

    It would be much cooler to make alternative tibia servers if possible to modify shoots,animations,skills, without source edits :/ I cant souce edit because ALL tutorials to 8.60 are Outdated! And my idea is to improve in the new OTservers: animations.xml: edit and/or add new animations/shoots...
  13. G4BB3R

    Pz Lock Someone [[ doPzLock(cid, time) ]]

    Hello... I want a function (or a way/method/workaround) to PzLock a Player... There is a way to make the function (without editing the sources) to PzLock Someone ? Example: doPzLock(cid, time) Thanks a lot ;* Peace
  14. G4BB3R

    Item storage value / table index and uid changes

    Hello... I need a way to set a storage value for a item that is created in the ground... Just an example: local bomb = A_COOL_STONE_ID_OR_SOMETHING_LOL local biriba = doCreateItem(bomb, 1, getPlayerPosition(cid)) doItemSetAttribute(biriba, "storage1", 29) doItemSetAttribute(biriba, "storage2"...
  15. G4BB3R

    [IDE] Lua Programming

    Hello I would know what IDE you use to program in LUA for your OTserv ?? I always used OTScript Live by Colex ( Otscript Live! 0.4.1.13 - XTibia - A sua comunidade de Tibia e OTserv ) but I want to find a better one, more professional; Tips ?? What IDE do you use ??? ( PLEASE DONT SAY...
  16. G4BB3R

    Alternative Damage

    1: In my server I have a spell caled conjure trap (exevo tar []), and when the player cast spell, the trap fall in the ground, but when someone steps, the player (that casted the spell) dont get Skull, and if a monster step on the trap, it dont give the experience to the player ! :/ Is possible...
Back
Top