Ir para conteúdo

macalo

Campones
  • Total de itens

    53
  • Registro em

  • Última visita

Sobre macalo

Informações

  • Forma que conheci o xTibia
    Otservs
  • Sou
    Scripter

macalo's Achievements

  1. quero q modifique todo o sistema ! úp
  2. pra simplifica mais , eu so queria um script q quando uma player pega level 100 a gema fosse atividadda por tempo indeterminado ! so isso ! o script q ta la em cima é a lib do sistema so pra pega de base !
  3. EU QUERIA Q QUEM PEGA DETERMINADO LEVEL FOSSE ATIVADO A GEMA , EM QUE CADA VOCATION TEM SUA COR DE GEMA , E A GEMA SO IA SER DESLIGADA QUANDO O PLAYER DESLOGA , TIPO ELE LOGA A GEMA JA TA LIGADA SO ISSO MSM VLW AMIGOS!! AKI A LIB DO SISTEMA function getPrefixGEMs(val) -- By MaXwEllDeN return (val > 1) and "s" or "" end pedras_add = { [2156] = { -- Pedra Vermelha skills = { [0] = 1, -- Fist Fighting [1] = 1, -- Club Fighting [2] = 1, -- Sword Fighting [3] = 1, -- Axe Fighting [4] = 1, -- Distance Fighting [5] = 1, -- Shielding [6] = 1, -- Magic Level }, xp = 2, -- Ex, 2 x o Xp do serv time = 1, color = {180, 181, 186}, }, [2153] = { -- Pedra Rosa skills = { [0] = 2, -- Fist Fighting [1] = 2, -- Club Fighting [2] = 2, -- Sword Fighting [3] = 2, -- Axe Fighting [4] = 2, -- Distance Fighting [5] = 2, -- Shielding [6] = 2, -- Magic Level }, xp = 3, -- Ex, 2 x o Xp do serv time = 1, color = {183, 184, 185}, }, [2154] = { -- Pedra Amarela skills = { [0] = 3, -- Fist Fighting [1] = 3, -- Club Fighting [2] = 3, -- Sword Fighting [3] = 3, -- Axe Fighting [4] = 3, -- Distance Fighting [5] = 3, -- Shielding [6] = 3, -- Magic Level }, xp = 4, -- Ex, 2 x o Xp do serv time = 1, color = {210, 212, 211}, }, [2155] = { -- Pedra Verde skills = { [0] = 4, -- Fist Fighting [1] = 4, -- Club Fighting [2] = 4, -- Sword Fighting [3] = 4, -- Axe Fighting [4] = 4, -- Distance Fighting [5] = 4, -- Shielding [6] = 4, -- Magic Level }, xp = 5, -- Ex, 2 x o Xp do serv time = 1, color = {26, 30, 31, 32}, }, } pedras_add_c = { [2156] = createConditionObject(CONDITION_ATTRIBUTES), [2153] = createConditionObject(CONDITION_ATTRIBUTES), [2154] = createConditionObject(CONDITION_ATTRIBUTES), [2155] = createConditionObject(CONDITION_ATTRIBUTES), } local conditions = {CONDITION_PARAM_SKILL_FIST, CONDITION_PARAM_SKILL_CLUB, CONDITION_PARAM_SKILL_SWORD,CONDITION_PARAM_SKILL_AXE, CONDITION_PARAM_SKILL_DISTANCE, CONDITION_PARAM_SKILL_SHIELD, CONDITION_PARAM_STAT_MAGICPOINTS} for a, b in pairs(pedras_add_c) do setConditionParam(pedras_add_c[a], CONDITION_PARAM_TICKS, pedras_add[a].time*60*1000) for c = 0, 6 do setConditionParam(pedras_add_c[a], conditions[c + 1], pedras_add[a].skills[c]) end end function sendGemEffect(uid, itemid) if (isCreature(uid)) then local pedra = pedras_add[itemid] local msgs = {"´ . ,", ". ´ ,", "` . ,", ", ` ."} if (getPlayerStorageValue(uid, 45783) > 0) then addEvent(sendGemEffect, 575, uid, itemid) doSendAnimatedText(getThingPos(uid), msgs[math.random(#msgs)], pedra.color[math.random(#pedra.color)]) end end return true end function isGemActivated(cid) return (getPlayerStorageValue(cid, gems.storage[getPlayerVocation(cid)]) > 0) and true or false end function checkGemTimeFinish(uid, gemid) local timpo = (getPlayerStorageValue(uid, 45783)-os.time())*(-1) return (timpo >= pedras_add[gemid].time*60) and true or false end function deAtiveGem(uid, gemid) local pedra = pedras_add[gemid] local skills = pedra.skills for a = 0, #skills-1 do doPlayerAddSkill(uid, a, -skills[a]) end doRemoveCondition(uid, pedras_add_c[gemid]) doPlayerSetExperienceRate(uid, 1) setPlayerStorageValue(uid, 45783, -1) setPlayerStorageValue(uid, 71473, -1) doPlayerSendTextMessage(uid, 27, "O efeito da sua gema acabou.") return true end function AtiveGem(uid, item) local pedra = pedras_add[item.itemid] if not (pedra) then return false end local skills = pedra.skills doAddCondition(uid, pedras_add_c[item.itemid]) doPlayerSendTextMessage(uid, 27, "Você está sob o efeito da gema mágica, e o efeito dela durará por ".. pedra.time .. " minuto".. getPrefixGEMs(pedra.time) .. ".") setPlayerStorageValue(uid, 71473, item.itemid) setPlayerStorageValue(uid, 45783, os.time()) sendGemEffect(uid, item.itemid) doPlayerSetExperienceRate(uid, pedra.xp) registerCreatureEvent(uid, "EffectCheck") doRemoveItem(item.uid, 1) return true end up up
  4. macalo

    ALTERA SCRIPT

    BOM EU QUERIA Q ESSES SCRIPT INICIA-SE TODO DIAS MAIS SO INICIAS 2 DIAS NA SEMANA ! VLW REP + [LUA]--[[ day_of_week: 0 = Sunday, 1 = Monday ... 6 = Saturday hour: value between 0 and 23 minute: value between 0 and 59 storage: unique, not used global storage value --]] local autoStartsTable = { {["day_of_week"] = 6, ["hour"] = 19, ["minute"] = 30, ["storage"] = 7867}, {["day_of_week"] = 0, ["hour"] = 21, ["minute"] = 0, ["storage"] = 7868} } function shouldExecuteEvent(configTable) for _, config in pairs(configTable) do if(tonumber(os.date("%d")) ~= getStorage(config.storage) and tonumber(os.date("%w")) == config.day_of_week) then if(tonumber(os.date("%H")) == config.hour and tonumber(os.date("%M")) == config.minute) then doSetStorage(config.storage, tonumber(os.date("%d"))) return true end end end return false end function onThink(interval, lastExecution, thinkInterval) if(shouldExecuteEvent(autoStartsTable)) then if(getStorage(ZE_STATUS) ~= 1 and getStorage(ZE_STATUS) ~= 2) then removeZombiesEventBlockEnterPosition() doSetStorage(ZE_STATUS, 1) doBroadcastMessage("Zombie Arena Event teleport will be open for 2 minutes. We are waiting for " .. getZombiesEventPlayersLimit() - #getZombiesEventPlayers() .. " players to start.") addEvent(startArenaEvent, 120 * 1000) end end return true end function startArenaEvent() if(getStorage(ZE_STATUS) == 1) then addZombiesEventBlockEnterPosition() doSetStorage(ZE_STATUS, 2) doBroadcastMessage("Zombie Arena Event started.") end end
  5. macalo

    ALTERA SCRIPT

    vlw mais tarde vo testa vlw mais tarde vo testa!
  6. macalo

    ALTERA SCRIPT

    BOM EU QUERIA Q ESSE MONSTRO SO ATAKA-SE SD TIRANDO 5MIL DE VIDA EM CADA SD SO ISSO. VLW ! <?xml version="1.0" encoding="UTF-8"?> <monster name="Protect Castle" nameDescription="a Protect Castle" race="undead" experience="25000" speed="0" manacost="0"> <health now="110000" max="110000"/> <look typeex="9779"/> <targetchange interval="5000" chance="20"/> <strategy attack="100" defense="0"/> <flags> <flag summonable="0"/> <flag attackable="1"/> <flag hostile="1"/> <flag illusionable="0"/> <flag convinceable="0"/> <flag pushable="0"/> <flag canpushitems="0"/> <flag canpushcreatures="1"/> <flag targetdistance="1"/> <flag staticattack="90"/> <flag runonhealth="100"/> <flag hidehealth="0"/> </flags> <attacks> <attack name="energy" interval="2000" chance="100" target="3" range="10" radius="3" min="-200" max="-250"> <attribute key="areaEffect" value="teleport"/> <attribute key="shootEffect" value="energyball"/> </attack> <attack name="fire" interval="2000" chance="100" target="3" range="10" radius="4" min="-200" max="-250"> <attribute key="areaEffect" value="fireattack"/> <attribute key="shootEffect" value="energyball"/> </attack> </attacks> <defenses armor="1" defense="1"/> <immunities> <immunity physical="0"/> <immunity energy="1"/> <immunity fire="1"/> <immunity poison="0"/> <immunity ice="0"/> <immunity holy="0"/> <immunity death="0"/> <immunity lifedrain="1"/> <immunity manadrain="1"/> <immunity paralyze="1"/> <immunity drunk="1"/> <immunity outfit="1"/> <immunity invisible="1"/> </immunities> <loot> <item id="10313" countmax="1" chance="100000000"/><!-- gold coin --> </loot> </monster>
  7. macalo

    output.log erro

    vlw ai pela explicação ! mais n sei por onde começo isso !
  8. macalo

    output.log erro

    alguém sabe resolver? [23/1/2016 9:34:50] mysql_real_query(): INSERT INTO `house_lists` (`house_id`, `world_id`, `listid`, `list`) VALUES (374, 0, 256, 'Gzuis') - MYSQL ERROR: Cannot add or update a child row: a foreign key constraint fails (`god`.`house_lists`, CONSTRAINT `house_lists_ibfk_1` FOREIGN KEY (`house_id`, `world_id`) REFERENCES `houses` (`id`, `world_id`) ON DELETE CASCADE) (1452) [23/1/2016 9:34:50] mysql_real_query(): INSERT INTO `house_lists` (`house_id`, `world_id`, `listid`, `list`) VALUES (407, 0, 257, 'lolas') - MYSQL ERROR: Cannot add or update a child row: a foreign key constraint fails (`god`.`house_lists`, CONSTRAINT `house_lists_ibfk_1` FOREIGN KEY (`house_id`, `world_id`) REFERENCES `houses` (`id`, `world_id`) ON DELETE CASCADE) (1452) [23/1/2016 9:34:50] mysql_real_query(): INSERT INTO `house_data` (`house_id`, `world_id`, `data`) VALUES (369, 0, '°\0&\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0±\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0¶\0&\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0°\0(\0\0\0\0À\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0°\0)\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0²\0*\0\0\0\0$€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0µ\0*\0\0\0\0$€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0¶\0)\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0'),(370, 0, '±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0°\0 \0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0°\0\"\0\0\0\0Ä€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0°\0#\0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0±\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0\"\0\0\0\0W\n\0³\0 \0\0\0\0™ \0³\0!\0\0\0\0Ÿ \0³\0\"\0\0\0\0W\n\0µ\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0¶\0 \0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0¶\0#\0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0'),(371, 0, '°\0\Z\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0±\0\0\0\0\0½ \0pd\0²\0\0\0\0\0$€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0²\0\0\0\0\0Ç\"\0pd\0m\0²\0\Z\0\0\0\0½ \0pd\0m\0²\0\0\0\0\0¾ \0pd\0m\0³\0\0\0\0\0· \0¸ \0z\0p2\0m\0³\0\Z\0\0\0\0½ \0pd\0V \0m\0³\0\0\0\0\0¾ \0pI\0m\0´\0\0\0\0\0Ç\"\0¥\0pd\0m\0´\0\Z\0\0\0\0½ \0pd\0m\0´\0\0\0\0\0¾ \0pd\0µ\0\0\0\0\0$€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0½ \0pd\0¶\0\Z\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0°\0\0\0\0\0À\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0°\0\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0±\0\0\0\0\0¨ \0pd\0²\0\0\0\0\0¿ \0pd\0²\0\0\0\0\0U\n\0pd\0³\0\0\0\0\0¥ \0pd\0³\0\0\0\0\0%\'\0pd\0´\0\0\0\0\0Ö\0p<\0´\0\0\0\0\0U\n\0pd\0µ\0\0\0\0\0¨ \0pd\0µ\0\0\0\0\0Ö\0p2\0¶\0\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0'),(372, 0, '°\0&\0\0\0\0Ä€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0°\0\'\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0¶\0&\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0°\0)\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0±\0(\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0)\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0*\0\0\0\0$€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0µ\0(\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0)\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0*\0\0\0\0$€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0¶\0)\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0'),(373, 0, '±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0²\0\0\0\0\0º\"\0m\0p2\0m\0³\0\0\0\0\0p2\0ä\0m\0´\0\0\0\0\0p2\0m\0µ\0\0\0\0\0â€\0\0description!\0\0\0Chapelero Loko is sleeping there.\n\0sleepstartí_”Vä\0\0\0°\0\"\0\0\0\0Ä€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0±\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0±\0\"\0\0\0\0Ø \0&\'\00\"\0±\0#\0\0\0\0¥ \0%\0d\0²\0 \0\0\0\0É\"\0â\"\09 \0d\0²\0!\0\0\0\0½ \0\0²\0\"\0\0\0\0²\"\0¥ \0™\"\0²\0#\0\0\0\0p2\0m\0Ç\"\0³\0 \0\0\0\0½ \0_\0³\0!\0\0\0\0¨ \0Å\"\0³\0\"\0\0\0\0¦ \0ƒ\0³\0#\0\0\0\0p2\0ô\0m\0´\0 \0\0\0\0`\n\0ù\0”\"\0d\0´\0!\0\0\0\0Ò \0È\0´\0\"\0\0\0\0€ \0\0d\0´\0#\0\0\0\0p2\0m\0µ\0 \0\0\0\0ã€\0\0description!\0\0\0Chapelero Loko is sleeping there.\n\0sleepstartí_”Vä\0\0\0µ\0!\0\0\0\0¿ \0B\0¥\0µ\0\"\0\0\0\0¨ \0Í&\0µ\0#\0\0\0\0Ÿ\0¶\0 \0\0\0\0%€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0¶\0#\0\0\0\0%€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0'),(374, 0, '°\0\Z\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0\0\0\0\0$€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0²\0\0\0\0\0™\"\0Å\0Ä\0²\0\Z\0\0\0\0%\0²\0\0\0\0\0i1€\0\0aid*\0\0\0description8\0\0\0This item was purchased at the shop by the player Tpain.\0³\0\0\0\0\0= \0\0\0\0\0³\0\0\0\0\0ð\0´\0\0\0\0\09 \0´\0\Z\0\0\0\0Ÿ\0´\0\0\0\0\0²\"\0µ\0\0\0\0\0$€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0ó&\0¶\0\Z\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0°\0\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0°\0\0\0\0\0Ä€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0²\0\0\0\0\0V \0³\0\0\0\0\0ù\0´\0\0\0\0\0Ö\0´\0\0\0\0\0Í&\0µ\0\0\0\0\0\0¶\0\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0'),(375, 0, 'Á\0\'\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Â\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0Â\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0Ç\0\'\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid \0\0\0\0Á\0)\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Â\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ä\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Æ\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ç\0)\0\0\0\0À\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ç\0*\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0') - MYSQL ERROR: Cannot add or update a child row: a foreign key constraint fails (`god`.`house_data`, CONSTRAINT `house_data_ibfk_1` FOREIGN KEY (`house_id`, `world_id`) REFERENCES `houses` (`id`, `world_id`) ON DELETE CASCADE) (1452) [23/1/2016 9:34:50] mysql_real_query(): INSERT INTO `house_data` (`house_id`, `world_id`, `data`) VALUES (369, 0, '°\0&\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0±\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0¶\0&\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0°\0(\0\0\0\0À\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0°\0)\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0²\0*\0\0\0\0$€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0µ\0*\0\0\0\0$€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0¶\0)\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0'),(370, 0, '±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0°\0 \0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0°\0\"\0\0\0\0Ä€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0°\0#\0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0±\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0\"\0\0\0\0W\n\0³\0 \0\0\0\0™ \0³\0!\0\0\0\0Ÿ \0³\0\"\0\0\0\0W\n\0µ\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0¶\0 \0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0¶\0#\0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0'),(371, 0, '°\0\Z\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0±\0\0\0\0\0½ \0pd\0²\0\0\0\0\0$€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0²\0\0\0\0\0Ç\"\0pd\0m\0²\0\Z\0\0\0\0½ \0pd\0m\0²\0\0\0\0\0¾ \0pd\0m\0³\0\0\0\0\0· \0¸ \0z\0p2\0m\0³\0\Z\0\0\0\0½ \0pd\0V \0m\0³\0\0\0\0\0¾ \0pI\0m\0´\0\0\0\0\0Ç\"\0¥\0pd\0m\0´\0\Z\0\0\0\0½ \0pd\0m\0´\0\0\0\0\0¾ \0pd\0µ\0\0\0\0\0$€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0½ \0pd\0¶\0\Z\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0°\0\0\0\0\0À\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0°\0\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0±\0\0\0\0\0¨ \0pd\0²\0\0\0\0\0¿ \0pd\0²\0\0\0\0\0U\n\0pd\0³\0\0\0\0\0¥ \0pd\0³\0\0\0\0\0%\'\0pd\0´\0\0\0\0\0Ö\0p<\0´\0\0\0\0\0U\n\0pd\0µ\0\0\0\0\0¨ \0pd\0µ\0\0\0\0\0Ö\0p2\0¶\0\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0'),(372, 0, '°\0&\0\0\0\0Ä€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0°\0\'\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0¶\0&\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0°\0)\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0±\0(\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0)\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0*\0\0\0\0$€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0µ\0(\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0)\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0*\0\0\0\0$€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0¶\0)\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0'),(373, 0, '±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0²\0\0\0\0\0º\"\0m\0p2\0m\0³\0\0\0\0\0p2\0ä\0m\0´\0\0\0\0\0p2\0m\0µ\0\0\0\0\0â€\0\0description!\0\0\0Chapelero Loko is sleeping there.\n\0sleepstartí_”Vä\0\0\0°\0\"\0\0\0\0Ä€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0±\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0±\0\"\0\0\0\0Ø \0&\'\00\"\0±\0#\0\0\0\0¥ \0%\0d\0²\0 \0\0\0\0É\"\0â\"\09 \0d\0²\0!\0\0\0\0½ \0\0²\0\"\0\0\0\0²\"\0¥ \0™\"\0²\0#\0\0\0\0p2\0m\0Ç\"\0³\0 \0\0\0\0½ \0_\0³\0!\0\0\0\0¨ \0Å\"\0³\0\"\0\0\0\0¦ \0ƒ\0³\0#\0\0\0\0p2\0ô\0m\0´\0 \0\0\0\0`\n\0ù\0”\"\0d\0´\0!\0\0\0\0Ò \0È\0´\0\"\0\0\0\0€ \0\0d\0´\0#\0\0\0\0p2\0m\0µ\0 \0\0\0\0ã€\0\0description!\0\0\0Chapelero Loko is sleeping there.\n\0sleepstartí_”Vä\0\0\0µ\0!\0\0\0\0¿ \0B\0¥\0µ\0\"\0\0\0\0¨ \0Í&\0µ\0#\0\0\0\0Ÿ\0¶\0 \0\0\0\0%€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0¶\0#\0\0\0\0%€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0'),(374, 0, '°\0\Z\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0\0\0\0\0$€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0²\0\0\0\0\0™\"\0Å\0Ä\0²\0\Z\0\0\0\0%\0²\0\0\0\0\0i1€\0\0aid*\0\0\0description8\0\0\0This item was purchased at the shop by the player Tpain.\0³\0\0\0\0\0= \0\0\0\0\0³\0\0\0\0\0ð\0´\0\0\0\0\09 \0´\0\Z\0\0\0\0Ÿ\0´\0\0\0\0\0²\"\0µ\0\0\0\0\0$€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0ó&\0¶\0\Z\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0°\0\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0°\0\0\0\0\0Ä€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0²\0\0\0\0\0V \0³\0\0\0\0\0ù\0´\0\0\0\0\0Ö\0´\0\0\0\0\0Í&\0µ\0\0\0\0\0\0¶\0\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0'),(375, 0, 'Á\0\'\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Â\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0Â\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0Ç\0\'\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid \0\0\0\0Á\0)\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Â\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ä\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Æ\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ç\0)\0\0\0\0À\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ç\0*\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0') - MYSQL ERROR: Cannot add or update a child row: a foreign key constraint fails (`god`.`house_data`, CONSTRAINT `house_data_ibfk_1` FOREIGN KEY (`house_id`, `world_id`) REFERENCES `houses` (`id`, `world_id`) ON DELETE CASCADE) (1452) [23/1/2016 9:34:50] mysql_real_query(): INSERT INTO `house_data` (`house_id`, `world_id`, `data`) VALUES (369, 0, '°\0&\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0±\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0¶\0&\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0°\0(\0\0\0\0À\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0°\0)\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0²\0*\0\0\0\0$€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0µ\0*\0\0\0\0$€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0¶\0)\0\0\0\0%€\0\0descriptionG\0\0\0It belongs to house \'Unnamed House #369\'. Dyos Dbronks owns this house.\0doorid\0\0\0\0'),(370, 0, '±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0°\0 \0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0°\0\"\0\0\0\0Ä€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0°\0#\0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0±\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0\"\0\0\0\0W\n\0³\0 \0\0\0\0™ \0³\0!\0\0\0\0Ÿ \0³\0\"\0\0\0\0W\n\0µ\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0¶\0 \0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0¶\0#\0\0\0\0%€\0\0descriptionA\0\0\0It belongs to house \'Unnamed House #370\'. Blayde owns this house.\0doorid\0\0\0\0'),(371, 0, '°\0\Z\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0±\0\0\0\0\0½ \0pd\0²\0\0\0\0\0$€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0²\0\0\0\0\0Ç\"\0pd\0m\0²\0\Z\0\0\0\0½ \0pd\0m\0²\0\0\0\0\0¾ \0pd\0m\0³\0\0\0\0\0· \0¸ \0z\0p2\0m\0³\0\Z\0\0\0\0½ \0pd\0V \0m\0³\0\0\0\0\0¾ \0pI\0m\0´\0\0\0\0\0Ç\"\0¥\0pd\0m\0´\0\Z\0\0\0\0½ \0pd\0m\0´\0\0\0\0\0¾ \0pd\0µ\0\0\0\0\0$€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0½ \0pd\0¶\0\Z\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0°\0\0\0\0\0À\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0°\0\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0±\0\0\0\0\0¨ \0pd\0²\0\0\0\0\0¿ \0pd\0²\0\0\0\0\0U\n\0pd\0³\0\0\0\0\0¥ \0pd\0³\0\0\0\0\0%\'\0pd\0´\0\0\0\0\0Ö\0p<\0´\0\0\0\0\0U\n\0pd\0µ\0\0\0\0\0¨ \0pd\0µ\0\0\0\0\0Ö\0p2\0¶\0\0\0\0\0%€\0\0descriptionD\0\0\0It belongs to house \'Unnamed House #371\'. Fodastiko owns this house.\0doorid\0\0\0\0'),(372, 0, '°\0&\0\0\0\0Ä€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0°\0\'\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0¶\0&\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0°\0)\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0±\0(\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0)\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0*\0\0\0\0$€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0µ\0(\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0)\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0*\0\0\0\0$€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0¶\0)\0\0\0\0%€\0\0description>\0\0\0It belongs to house \'Unnamed House #372\'. Poi owns this house.\0doorid\0\0\0\0'),(373, 0, '±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0²\0\0\0\0\0º\"\0m\0p2\0m\0³\0\0\0\0\0p2\0ä\0m\0´\0\0\0\0\0p2\0m\0µ\0\0\0\0\0â€\0\0description!\0\0\0Chapelero Loko is sleeping there.\n\0sleepstartí_”Vä\0\0\0°\0\"\0\0\0\0Ä€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0±\0 \0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0±\0\"\0\0\0\0Ø \0&\'\00\"\0±\0#\0\0\0\0¥ \0%\0d\0²\0 \0\0\0\0É\"\0â\"\09 \0d\0²\0!\0\0\0\0½ \0\0²\0\"\0\0\0\0²\"\0¥ \0™\"\0²\0#\0\0\0\0p2\0m\0Ç\"\0³\0 \0\0\0\0½ \0_\0³\0!\0\0\0\0¨ \0Å\"\0³\0\"\0\0\0\0¦ \0ƒ\0³\0#\0\0\0\0p2\0ô\0m\0´\0 \0\0\0\0`\n\0ù\0”\"\0d\0´\0!\0\0\0\0Ò \0È\0´\0\"\0\0\0\0€ \0\0d\0´\0#\0\0\0\0p2\0m\0µ\0 \0\0\0\0ã€\0\0description!\0\0\0Chapelero Loko is sleeping there.\n\0sleepstartí_”Vä\0\0\0µ\0!\0\0\0\0¿ \0B\0¥\0µ\0\"\0\0\0\0¨ \0Í&\0µ\0#\0\0\0\0Ÿ\0¶\0 \0\0\0\0%€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0¶\0#\0\0\0\0%€\0\0descriptionE\0\0\0It belongs to house \'Unnamed House #373\'. Mage Frits owns this house.\0doorid\0\0\0\0'),(374, 0, '°\0\Z\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0±\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0±\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0²\0\0\0\0\0$€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0²\0\0\0\0\0™\"\0Å\0Ä\0²\0\Z\0\0\0\0%\0²\0\0\0\0\0i1€\0\0aid*\0\0\0description8\0\0\0This item was purchased at the shop by the player Tpain.\0³\0\0\0\0\0= \0\0\0\0\0³\0\0\0\0\0ð\0´\0\0\0\0\09 \0´\0\Z\0\0\0\0Ÿ\0´\0\0\0\0\0²\"\0µ\0\0\0\0\0$€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0µ\0\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\Z\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0µ\0\0\0\0\0ó&\0¶\0\Z\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0°\0\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0°\0\0\0\0\0Ä€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0²\0\0\0\0\0V \0³\0\0\0\0\0ù\0´\0\0\0\0\0Ö\0´\0\0\0\0\0Í&\0µ\0\0\0\0\0\0¶\0\0\0\0\0%€\0\0description@\0\0\0It belongs to house \'Unnamed House #374\'. Tpain owns this house.\0doorid\0\0\0\0'),(375, 0, 'Á\0\'\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Â\0%\0\0\0\0Ú€\0\0description\0\0\0Nobody is sleeping there.\0Â\0&\0\0\0\0Û€\0\0description\0\0\0Nobody is sleeping there.\0Ç\0\'\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid \0\0\0\0Á\0)\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Â\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ä\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Æ\0+\0\0\0\0$€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ç\0)\0\0\0\0À\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0Ç\0*\0\0\0\0%€\0\0description?\0\0\0It belongs to house \'Unnamed House #375\'. Uaix owns this house.\0doorid\0\0\0\0') - MYSQL ERROR: Cannot add or update a child row: a foreign key constraint fails (`god`.`house_data`, CONSTRAINT `house_data_ibfk_1` FOREIGN KEY (`house_id`, `world_id`) REFERENCES `houses` (`id`, `world_id`) ON DELETE CASCADE) (1452) [
  9. macalo

    erro no script

    vlw deu certo!!!!!
  10. macalo

    erro no script

    [Error - CreatureScript Interface] data/creaturescripts/scripts/staminafiller.lua:onAttack Description: data/creaturescripts/scripts/staminafiller.lua:7: attempt to perform arithmetic on a string value stack traceback: data/creaturescripts/scripts/staminafiller.lua:7: in function <data/creaturescripts/scripts/staminafiller.lua:1> function onAttack(cid, target) local storage = 193879834 local tempo = 1*60 ----(1 minuto) local minutes = 5 if isMonster(target) and getCreatureName(target):lower() == 'training monk' then doPlayerSetStorageValue(cid, storage, getPlayerStorageValue(cid, storage)+1) if getPlayerStorageValue(cid, storage) >= tempo then doPlayerAddStamina(cid, minutes) doPlayerSetStorageValue(cid, storage, 0) end end return true end
  11. macalo

    ALTERA SCRIPT

    Night Wolf cara vlw pela aajuda!! mais n entendir o pq da quelas perguntas na moral !! o cara que me difamar ai sem eu ter feito nada, mas blz então
  12. RECRUTANDO TUTORES E GM SO MANDA SKYP Q ADD VCS VLW!!
  13. macalo

    ALTERA SCRIPT

    mano eu quero q apareça bem no meio da tela em (verde) sacou ? e não do default!
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...