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

    Crash HELP Please!

    you removed first or second script and you're still getting the error?? you want to limit it to 1 player online per IP? it's not very smart in some cases unless you have extreme abuse or the problem is account manager?
  2. Cykotitan

    Lua Potions Bug

    031-vocations.lua, not vocations.xml it won't matter, but put them in the lib file (031~) if you want to use this function elsewhere
  3. Cykotitan

    Lua Shielding Party Spell Bug [Solved]

    try inserting this piece of code and good luck function onTargetTile(cid, pos) if isMonster(cid) then local master = getCreatureMaster(cid) if not master or master == cid or not isPlayer(master) then return end cid = master end local party = getPlayerParty(cid) if not party then...
  4. Cykotitan

    Web Free Premium Account??

    edit the aac functions maybe - isPremium?
  5. Cykotitan

    Lua globalevents

    function onThink() for _, cid in ipairs(getPlayersOnline()) do if isInArray({1, 5}, getPlayerVocation(cid)) then doSendMagicEffect(getThingPosition(cid), CONST_ME_BIGCLOUDS) end end return true end
  6. Cykotitan

    Spell changes gold into platinum

    there's no need to check item count, just use if doPlayerRemoveItem(cid, ITEM_GOLD_COIN, 105) then
  7. Cykotitan

    Lua Shielding Party Spell Bug [Solved]

    looks like you have function onCastSpell twice, only the latter will be used as the first one is overwritten by the redefinition with synthetic's edit, this happens due to lack of a combat named 'combat' -- SpellCreator generated. -- =============== COMBAT VARS =============== -- Areas/Combat...
  8. Cykotitan

    Lua Invite House Guest Script

    House::setAccessList <- obviously house.cpp
  9. Cykotitan

    Account names won't work on Gesior, only account numbers!?

    not sure if anyone faced a similar problem themselves, you or the person in charge may have to try out some scripting changes
  10. Cykotitan

    Account names won't work on Gesior, only account numbers!?

    if the alphanumeric account names are stored properly in the database (not being converted to 0 or intcasted), it could be a website scripting issue
  11. Cykotitan

    Lua Invite House Guest Script

    int32_t LuaScriptInterface::luaSetHouseAccessList(lua_State* L) { //setHouseAccessList(houseid, listid, listtext) std::string list = popString(L); uint32_t listid = popNumber(L); if(House* house = Houses::getInstance()->getHouse(popNumber(L))) { house->setAccessList(listid, list)...
  12. Cykotitan

    Account names won't work on Gesior, only account numbers!?

    make sure it's not a database problem (if you have database access)
  13. Cykotitan

    Compiling Help on this error

    find /usr/include -name 'asio.hpp' just run debianfix.sh
  14. Cykotitan

    Web Free Premium Account??

    browse accounts table for premdays column, check if values are 0 or greater
  15. Cykotitan

    Lua phase based monster attack- random dmg? TFS3.6pl1

    don't use COMBAT_FORMULA_LEVELMAGIC with monsters (make your own formulas or flat damage ranges) is your min and max from the monster file even used for the spell?
  16. Cykotitan

    Lua Potions Bug

    you can't use functions just like that without defining them somewhere in the libs.. presumably 031-vocations.lua function isJack(cid) return isInArray({9}, getPlayerVocation(cid)) end edit the number or add several more as needed
  17. Cykotitan

    Lua Spell Problem

    addOutfitCondition(condition, {lookType = 71})
  18. Cykotitan

    Compiling The Forgotten Server v0.2.14 in Code Blocks

    _imp___ZN5boost6threadD1Ev BOOST_THREAD_USE_LIB site:stackoverflow.com - Google Search
  19. Cykotitan

    Lua Invite House Guest Script

    03:38 !lua return getHouseAccessList(42, 0x100) 03:38 Matzor Sickness Clakzan Frongdoof 03:39 !lua return setHouseAccessList(42, 0x100, 'Matzor\nSickness\nClakzan') 03:39 true 03:39 !lua return getHouseAccessList(42, 0x100) 03:39 Matzor Sickness Clakzan seems to work fine in 0.3
Back
Top