• 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!

Recent content by tiagoddf

  1. tiagoddf

    Lua TFS 0.4 paralyze field

    Use this base to make yours (i found it here in forum) local condition = createConditionObject(CONDITION_PARALYZE) setConditionParam(condition, CONDITION_PARAM_TICKS, 1000) setConditionFormula(condition, -0.5, 0, -0.5, 0) function onStepIn(cid, item, position, fromPosition) if not...
  2. tiagoddf

    php problems with Znote

    Did u use the right sql commands? Example CREATE TABLE IF NOT EXISTS `znote` ( `id` int(10) NOT NULL AUTO_INCREMENT, `version` varchar(30) NOT NULL COMMENT 'Znote AAC version', `installed` int(10) NOT NULL, `cached` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT...
  3. tiagoddf

    [8.60] The Forgotten Server 0.4

    Sure! What do you preffer? Talkaction or NPC? Talkaction is here: Change cost: getPlayerLevel(cid) * 1500 Lvl 100 for example will cost 150k local bless = {1, 2, 3, 4, 5} function onSay(cid, words, param) local cost = getPlayerLevel(cid) * 1500 for i = 1, table.maxn(bless) do...
  4. tiagoddf

    Lua Why this weapon no remove any damage?

    not really, thats how to fix (tested) local wands = { [12031] = {ef = 36, sh = 3, dmg = COMBAT_FIREDAMAGE}, [12032] = {ef = 42, sh = 28, dmg = COMBAT_ICEDAMAGE}, [12033] = {ef = 45, sh = 38, dmg = COMBAT_POISONDAMAGE}, [12034] = {ef = 17, sh = 31, dmg = COMBAT_DEATHDAMAGE}, [12035] =...
  5. tiagoddf

    Linux 16.04 ubuntu compile

    Try: apt-get install autoconf build-essential pkg-config automake libboost-all-dev libgmp3-dev libxml2-dev liblua5.1-0-dev libmysqlclient-dev libssl-dev libsqlite3-dev Change /tiago/Documentos/warcera/3777 to your src folders cd /home/tiago/Documentos/warcera/3777 chmod -R 777 src cd...
  6. tiagoddf

    PhpmyAdmin issue

    Try this: CREATE TABLE IF NOT EXISTS `znote` ( `id` int(10) NOT NULL AUTO_INCREMENT, `version` varchar(30) NOT NULL COMMENT 'Znote AAC version', `installed` int(10) NOT NULL, `cached` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ...
  7. tiagoddf

    Zezenia Online

    amazing game... but linux client is a shit... i'm: Oliver Jonas there
  8. tiagoddf

    [ZNOTE AAC] Create Character show/hide vocations options

    It's a simple change to show/hide vocation list when you creating your character. If you have more then 1 vocations able to choose... $config['available_vocations'] = array(1,2,3,4); It will show list of vocations, but if you have only one vocation able $config['available_vocations'] =...
  9. tiagoddf

    Lua Every time you enter the game open GAME CHAT, HELP and TRADE

    I had the same problem... To fix i made: Edit your sources: In luascript.cpp Look for: int32_t LuaInterface::luaDoPlayerSendToChannel(lua_State* L) { //doPlayerSendToChannel(cid, targetId, SpeakClasses, message, channel[, time]) ScriptEnviroment* env = getEnv(); uint32_t time = 0...
Back
Top