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

    [FRANCE] Eloth RPG - MOST AUTHENTIC REAL 8.0 SERVER [LOW RATE SOON]

    OtClient also has a built-in server and is not recognized as a threat by any AV. You might want to revise your code.
  2. EvulMastah

    [FRANCE] Eloth RPG - MOST AUTHENTIC REAL 8.0 SERVER [LOW RATE SOON]

    http://tibia.wikia.com/wiki/Assassin_Star/History
  3. EvulMastah

    [TFS 1.2] Scarab Coin NPC

    No, as the text is added by the client. The server sends the price only https://github.com/otland/forgottenserver/blob/master/src/protocolgame.cpp#L3026 You could hex-edit the 'gold' for something else, but it will be changed for every shop window.
  4. EvulMastah

    [TFS 1.2] Scarab Coin NPC

    player:getMoney() -> player:getItemCount(scarab_coin) player:removeMoney(amount) -> player:removeItem(scarab_coin, amount) player:addMoney(amount) -> player:addItem(scarab_coin, amount)
  5. EvulMastah

    Compiling Where change on sources to just last hit get +1 frag

    Creature::onDeath() Setting death assist count in config.lua to 0 should be enough.
  6. EvulMastah

    Torch bug Tfs

    Player::updateItemsLight Might be missing in Player::postRemoveNotification
  7. EvulMastah

    Helper lua functions

    >Telling people to learn lua >posting shit quality codes makes perfect sense
  8. EvulMastah

    Helper lua functions

    Great approach, for a retard like you. Have a good day, maybe one day you will actually learn something.
  9. EvulMastah

    Open Source Client

    https://github.com/edubart/otclient
  10. EvulMastah

    Helper lua functions

    Function name already solves it. This is not about being short code, this is about performance, smartass.
  11. EvulMastah

    Compiling Load luascript & c++ function together

    Try this. bool MoveEvent::fireEquip(Player* player, Item* item, slots_t slot, bool boolean) { if (isScripted()) { equipFunction = (m_eventType == MOVE_EVENT_EQUIP ? EquipItem : DeEquipItem); if (equipFunction(this, player, item, slot, boolean)) return...
  12. EvulMastah

    Helper lua functions

    function isset(value) return value and true or false end function isset(value) return value ~= nil end ?? -- for those times when you just want to know if an index exists within a table function isIndexInTable(table, index) for i, _ in pairs(table) do if i == index then...
  13. EvulMastah

    Solved Rise of Devovorga World Quest - Bloom of Doom

    Taken from OTHire, which is based on otserv, there is already last hit parameter passed to the function. onKill(cid, target, lasthit)
  14. EvulMastah

    Solved Rise of Devovorga World Quest - Bloom of Doom

    onKill is executed for every killer, either check for last hit or use onDeath for the monster.
  15. EvulMastah

    [Switzerland] Classicus 7.4 - RESET -- SERVER ONLINE!!

    Not soon. Maybe april or later.
  16. EvulMastah

    PHP - Auto updater - OTCLIENT HELP

    ? ? What he wants is the client fetching and replacing the files when their crc checksum is different. (Just like old Tibianic client).
  17. EvulMastah

    Lua Condition is not randomizing outfits TFS[1.2]

    https://github.com/otland/forgottenserver/pull/1645
  18. EvulMastah

    Lua Lua Table Issue

    local portal = config[item:getActionId()] if(not(portal))then return true end
Back
Top