-
Total de itens
193 -
Registro em
-
Última visita
-
Dias Ganhos
6
Tipo de Conteúdo
Perfis
Fóruns
Calendário
Publique
Tudo que Smart Maxx postou
-
-
(Resolvido)[PEDIDO] Aumentando o level de 717217. para 2000000
Smart Maxx respondeu ao tópico de BielZet em Suporte Tibia OTServer (Resolvidos)
Rsrsrsrs isso é algo bem complicado de fazer, primeiramente que não é por script é nas sources : em player.h : static uint64_t getExpForLevel(uint32_t lv) troque por : static uint64_t getExpForLevel(uint32_t lv) { static std::map<uint32_t, uint64_t> cache; lv--; std::map<uint32_t, uint64_t>::iterator it = cache.find(lv); if(it != cache.end()) return it->second; uint64_t exp = ((50ULL * (lv+1ULL) / 3ULL - 100ULL) * (lv+1ULL) + 850ULL / 3ULL) * (lv+1ULL) - 200ULL; cache[lv] = exp; return exp; } em protocolgame.cpp : if(experience > 0x7FFFFFFF) // client debugs aft -
(Resolvido)BUG DE CAP
Smart Maxx respondeu ao tópico de mini45 em Suporte Tibia OTServer (Resolvidos)
Eu adicionei capsystem = "no" , no config.lua , que ai seu serve não possuirá mais cap system(pelo menos eu acho), ai vai resolver o problema por enquanto, pois nunca ví nenhum problema do tipo, se possível me fale qual a base do seu servidor pra dps eu baixar e dar uma olhada quando não tiver nada pra fazer; -
(Resolvido)BUG DE CAP
Smart Maxx respondeu ao tópico de mini45 em Suporte Tibia OTServer (Resolvidos)
mini45 poste seu config.lua se possível. Obs : em spoiler; -
Ajuda Não consigo deixar meu wodbo online
Smart Maxx respondeu ao tópico de kevin234 em Suporte Tibia OTServer
no seu config.lua troque : sqlHost = "localhost" por sqlHost = "127.0.0.1" ou sqlHost = "seu ip" -
\õ zZzzZZZZzzzzzzzzzzzzzzzzz,
-
se tem corinthians no campeonato é lógico que o campeonato vai ser foda
-
Vc usa a versão 1.7.3 do xampp ? se não desinstale a versão que tu usa e baixe >aqui< ... Confirme se a versão é 1.7.3 msm; Se sim vai em index.php define('DEBUG_DATABASE', false); troque por : define('DEBUG_DATABASE', true); Assim irá dar mais detalhes do erro, ai vc posta aqui; Tenta tb : ALTER TABLE `guilds` ADD `logo_gfx_name` VARCHAR( 255 ) NOT NULL DEFAULT "";
-
Lérigou ... -- SYSTEM -- MySQL queries -execute em sua database : ALTER TABLE `accounts` ADD COLUMN `viplastday` int(10) NOT NULL DEFAULT 0 AFTER `lastday`, ADD COLUMN `vipdays` int(11) NOT NULL DEFAULT 0 AFTER `lastday`; login.lua - procure o arquivo em data/creaturescripts/scripts/ - adicione logo após local player = Player(cid) : player:loadVipData() player:updateVipTime() global.lua - procure o arquivo em data/ - adicione este código em baixo dofile('data/compat.lua') dofile('data/vip-system.lua') vip-system.lua - crie este arquivo em data/
-
(Resolvido)Ajuda [Script] dinheiro por item
Smart Maxx respondeu ao tópico de Xiolones em Suporte Tibia OTServer (Resolvidos)
Agradeça ao Max, ele fez que todo trabalho eu apenas alterei 2 linhas; -
(Resolvido)Ajuda [Script] dinheiro por item
Smart Maxx respondeu ao tópico de Xiolones em Suporte Tibia OTServer (Resolvidos)
local config = { promotion = 2, -- promotion level, default = 1 . Ignore if you don't have new vocations. minLevel = 250, -- Level needed to buy promotion count = 5, -- Quantidade premium = "yes", -- is premium needed to buy promotion? gold_id = 7633, -- Id do dinheiro } local disabledVocations = {0} config.premium = getBooleanFromString(config.premium) function onSay(cid, words, param) if isInArray(disabledVocations, getPlayerVocation(cid)) then doPlayerSendCancel(cid, "Your vocation cannot buy promotion.") return false end if config.pre -
http://pt.wikipedia....i/Código_aberto²
- 29 respostas
-
- progamadores
- de
-
(e 1 mais)
Tags:
-
tibia global 3 player online?
Smart Maxx respondeu ao tópico de Skydangerous em Playground (Off-topic)
Daniel olha pm... -
Absolute a função doPlayerAddItem não existe no TFS 1.0 mais ... vamos lá : local ultimateHealthPot = 8473local greatHealthPot = 7591 local greatManaPot = 7590 local greatSpiritPot = 8472 local strongHealthPot = 7588 local strongManaPot = 7589 local healthPot = 7618 local manaPot = 7620 local smallHealthPot = 8704 local antidotePot = 8474 local greatEmptyPot = 7635 local strongEmptyPot = 7634 local emptyPot = 7636 local antidote = Combat() antidote:setParameter(COMBAT_PARAM_TYPE, COMBAT_HEALING) antidote:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) antidote:setParameter(COMBA
-
"só tem um problema, as POTIONS SOMEM quando usam, e queria que aparecesse o vial, pra mim seria melhor no caso de war," Como assim as potions somem ? e como assim vial, se tu explicar um pouco como seria, eu faço pra ti ;
-
tenta então esse : local ultimateHealthPot = 8473 local greatHealthPot = 7591 local greatManaPot = 7590 local greatSpiritPot = 8472 local strongHealthPot = 7588 local strongManaPot = 7589 local healthPot = 7618 local manaPot = 7620 local smallHealthPot = 8704 local antidotePot = 8474 local greatEmptyPot = 7635 local strongEmptyPot = 7634 local emptyPot = 7636 local antidote = Combat() antidote:setParameter(COMBAT_PARAM_TYPE, COMBAT_HEALING) antidote:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) antidote:setParameter(COMBAT_PARAM_TARGETCASTERORTOPMOST, true) antidote:setParameter(
-
Troca o seu potions.lua por esse : local config = { removeOnUse = "yes", usableOnTarget = "yes", -- can be used on target? (fe. healing friend) splashable = "yes", range = -1, area = {1, 1} -- if not set correctly, the message will be sent only to user of the item } local multiplier = { health = 1.0, mana = 1.0 } local POTIONS = { [8704] = {empty = 7636, splash = 42, health = {50, 100}}, -- small health potion [7618] = {empty = 7636, splash = 42, health = {100, 200}}, -- health potion [7588] = {empty = 7634, splash = 42, health = {200, 350}, level = 50, vocations = {3, 4, 7, 8}, vocStr
-
Theforgottenserver. No such file or directory
Smart Maxx respondeu ao tópico de NewCore em Suporte Tibia OTServer
Troca o nome do arquivo pra tfs... dps executa : cd /otserv chmod -R 775 chmod 777 -R * ./tfs se falhar tenta : chmod 777 -R tfs ./tfs Se não der só lamento, só eu vendo o problema msm pra resolver pq faz um tempin que não mecho com linux -
Theforgottenserver. No such file or directory
Smart Maxx respondeu ao tópico de NewCore em Suporte Tibia OTServer
chmod 777 -R theforgottenserver acho que é assim tenta pra ver -
ERROR: Failed to load players record!
Smart Maxx respondeu ao tópico de Dieguiin XP em Suporte Tibia OTServer
Faça o seguinte. Abra a pasta otserver/data/globalevents Crie um arquivo chamado record.lua cole isso dentro: function onRecord(current, old, cid) db.executeQuery("INSERT INTO `server_record` (`record`, `world_id`, `timestamp`) VALUES (" .. current .. ", " .. getConfigValue('worldId') .. ", " .. os.time() .. ");") addEvent(doBroadcastMessage, 150, "New record: " .. current .. " players are logged in.", MESSAGE_STATUS_DEFAULT) end Salve e feche o arquivo. no globalevents.xml adicione esta tag: <globalevent name="playersrecord" type="record" event="script" value="record.lua"/> Sal -
ERROR: Couldn't estabilish connection to SQL database!
Smart Maxx respondeu ao tópico de Othoniel F em Playground (Off-topic)
Troca : sqlHost = "localhost" Por : sqlHost = "127.0.0.1" -
ERROR: Failed to load players record!
Smart Maxx respondeu ao tópico de Dieguiin XP em Suporte Tibia OTServer
Se eu me lembro bem esse erro é causado por alguma problema em sua database, sugiro que troca por uma nova; Sqlite : http://www.mediafire.com/download/xwj5piwca7ff2xz/theforgottenserver.s3db Mysql : https://www.mediafire.com/?4la0l1tx3nf4nv1 abrçs...
TibiaKing
Open Tibia Server
Quer aprender a criar seu próprio servidor de Tibia? Então está no lugar certo, aqui você encontrará milhares de tutorias, scripts, códigos, mapas e utilitários para que você possa fazer o seu próprio servidor de Tibia começando do zero.
Anuncie no TibiaKing
Precisa de mais visibilidade em seus projetos? Quer fazer um plano publicitário para o seu servidor? Anuncie no OTKing e faça sua divulgação, possuímos centenas de acessos simultâneos e milhares diários, com certeza será a sua solução!