
Solutions
-
Absolute's post in (Resolvido)o que é OpenStack KVM? was marked as the answerKVM é um virtualizador, resumindo, é um "programa" que irá criar as máquinas VPS do Dedicado.
www.lnetworks.com.br, venha conhecer :D
-
Absolute's post in Trocar Nick do TibiaKing was marked as the answerhttp://www.tibiaking.com/forum/settings/username/
-
Absolute's post in Divulgação was marked as the answerCara isso é com o Matheus, manda um e-mail pra ele que assim que ele ver ele vai responder, o e-mail é: [email protected] ou mande uma PM pra ele aqui no fórum: @Matk
Envia solicitando os valores das propagandas, um abraço.
-
Absolute's post in (Resolvido)forgottenserver was marked as the answerExecute no seu phpmyadmin:
DELETE FROM `DBNAME`.`accounts` WHERE `accounts`.`id` > 1; EM DBNAME nome da sua db.
-
Absolute's post in [Pedidos] Background & Intro was marked as the answerEstou sem tempo e você mal especificou como quer, mas se te quebrar um galho
-
Absolute's post in (Resolvido)[PEDIDO]Alguns Ensinamentos Básicos. was marked as the answerAndré, isto é retirado no layouts.php dentro da pasta layouts/tibiacom
Procure pelo menu onde começa em: <a.. e termina em </a> basta remover corretamente.
-
Absolute's post in (Resolvido)Level para Criar Guild was marked as the answerPelo servidor no config.lua:
levelToFormGuild = Pelo site no config.php
$config['site']['guild_need_level'] =
-
Absolute's post in (Resolvido){Ajuda} Erro não salva os jogadores. was marked as the answerEntre no seu PHPMYADMIN, selecione sua database e procure por SQL, para inserir query, algo assim:
E então insira o que há abaixo e execute.
ALTER TABLE `players` ADD `cast` TINYINT NOT NULL DEFAULT '0', ADD `castViewers` INT( 11 ) NOT NULL DEFAULT '0', ADD `castDescription` VARCHAR( 255 ) NOT NULL
E resolverá.
-
Absolute's post in (Resolvido)[PRECISO] 2 scripts (item at x Level/bless ate o level X) was marked as the answerFiz o do item, vai testando, jájá faço o resto:
data/creaturescripts/scripts: recompensa.lua
function onAdvance(cid, skill, oldlevel, newlevel) if getPlayerLevel(cid) >= 20 and getPlayerStorageValue(cid, 99920) ~= 1 then doPlayerAddItem(cid, 2160, 2) setPlayerStorageValue(cid, 99920, 1) doPlayerSendTextMessage(cid, 19, "You have received 20000 gold in your backpack for advancing to Level 20.") end return TRUE end data/creaturescripts/creaturescripts.xml:
<event type="advance" name="AbsoluteReward" script="recompense.lua"/> -
Absolute's post in (Resolvido)Erro ao tentar colocar meu char god no phpmyadmin was marked as the answerVocê está fazendo isso com o char deslogado?
-
Absolute's post in (Resolvido)Hospedar Gesior em cPanel com servidor em dedicada Linux was marked as the answerNa verdade, estou mais interessado em agir dessa forma mesmo. Mesmo que vá me dar uma dor de cabeça a mais. =D
Na verdade, estou mais interessado em agir dessa forma mesmo. Mesmo que vá me dar uma dor de cabeça a MENOS. =D
-
Absolute's post in (Resolvido)phpmyadmin was marked as the answerapt-get install phpmyadmin echo "include /etc/phpmyadmin/apache.conf" | sudo tee -a /etc/apache2/apache2.conf /etc/init.d/apache2 restart Execute esses comandos.
E depois digite:
reboot -
Absolute's post in (Resolvido)[Dúvida] Possivel Criar mais floor no mapa? was marked as the answerNão amigo, o cliente do tibia não tem as posições além da última, se não me engano 1-15z
Abraços.
-
Absolute's post in (Resolvido)Área vip! was marked as the answerO Script pro nome ta aí, só fazer o baú:
Actions.xml
<action uniqueid="35400" script="proname.lua" /> Actions/scripts/proname.lua
function onUse(cid, item, fromPosition, itemEx, toPosition) if item.uid == 35400 then queststatus = getPlayerStorageValue(cid,35400) if queststatus == -1 or queststatus == 0 then doCreatureSay(cid, "VOcê recebeu seu beneficio por ser vip!", TALKTYPE_ORANGE_1) db.executeQuery("UPDATE `players` SET `name` = '[PRO] "..getCreatureName(cid).."' WHERE `id` = "..getPlayerGUID(cid)..";") doPlayerSendTextMessage(cid,25,"Você será kikado em 10 segundos para mudança de nome.") doPlayerAddAddons(cid, 1) addEvent(doRemoveCreature, 10*1000, cid, true) setPlayerStorageValue(cid, 35400, 1) doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYDAMAGE) else doPlayerSendTextMessage(cid,22,"você ja tem o [PRO] no nome.") end return true end end -
Absolute's post in Capa para Facebook was marked as the answervou fazer
*EDIT, FEITO:
-
Absolute's post in (Resolvido)SITE GESIOR SET ADMIN ACCOUNT! was marked as the answerVai na pasta do site, config/config.ini e em install troque para no. (deve estar lá o diretório do ot)
Pronto.
-
Absolute's post in (Resolvido)Sd Bugada Ajuda was marked as the answerPS: Você ta trocando na pasta spells/atacks/sudden death, qual rev tu usa? script estranho....
-
Absolute's post in (Resolvido)Nao consigo comprar itens vips! was marked as the answerQue erro meu jovem, ele está dizendo que tá retornando um false em coins, ou seja não tem os coins, o script deve estar com ID errado do que ele tem na bp, veja nas suas actions o script do item e poste aqui.
Para dar erro no TFS teria que ser erro de null, string, algo do tipo dentro do script, não um retorno de função.
-
Absolute's post in (Resolvido)Talkaction Outfits !Go (Troca Outfits) was marked as the answer<talkaction words="!go" event="script" value="guildoutfit.lua"/> local config = { exhaustionInSeconds = 360, storage = 34534 } function onSay(cid, words, param) if(exhaustion.check(cid, config.storage) == TRUE) then doPlayerSendCancel(cid, "You can change outfit only 1 time per " .. config.exhaustionInSeconds .. " seconds.") return TRUE end local playerGuild = getPlayerGuildId(cid) if(playerGuild == FALSE) then doPlayerSendCancel(cid, "Sorry, you're not in a guild.") return TRUE end local playerGuildLevel = getPlayerGuildLevel(cid) if(playerGuildLevel < GUILDLEVEL_LEADER) then doPlayerSendCancel(cid, "You have to be Leader of your guild to change outfits!") return TRUE end local players = getPlayersOnline() local outfit = getCreatureOutfit(cid) local message = "*Guild* Your outfit has been changed by leader. (" .. getCreatureName(cid) .. ")" local members = 0 local tmp = {} for i, tid in ipairs(players) do if(getPlayerGuildId(tid) == playerGuild and cid ~= tid) then tmp = outfit if(canPlayerWearOutfit(tid, outfit.lookType, outfit.lookAddons) ~= TRUE) then local tidOutfit = getCreatureOutfit(tid) tmp.lookType = tidOutfit.lookType tmp.lookAddons = tidOutfit.lookAddons end doSendMagicEffect(getCreaturePosition(tid), 66) doCreatureChangeOutfit(tid, tmp) doPlayerSendTextMessage(tid, MESSAGE_INFO_DESCR, message) members = members + 1 end end exhaustion.set(cid, config.storage, config.exhaustionInSeconds) doPlayerSendCancel(cid, "Guild members outfit has been changed. (Total: " .. members .. ")") return TRUE end Fiz rapidinho teste:
<talkaction words="!goparty" event="script" value="partyoutfit.lua"/> local config = { exhaustionInSeconds = 360, storage = 34534 } function onSay(cid, words, param) if(exhaustion.check(cid, config.storage) == TRUE) then doPlayerSendCancel(cid, "You can change outfit only 1 time per " .. config.exhaustionInSeconds .. " seconds.") return TRUE end local playerParty = getPlayerParty(cid) if(playerParty == FALSE) then doPlayerSendCancel(cid, "Sorry, you're not in a Party.") return TRUE end local playerPartyLevel = getPlayerPartyLevel(cid) if(playerPartyLevel < PARTYLEVEL_LEADER) then doPlayerSendCancel(cid, "You have to be Leader of your party to change outfits!") return TRUE end local players = getPlayersOnline() local outfit = getCreatureOutfit(cid) local message = "*Party* Your outfit has been changed by leader. (" .. getCreatureName(cid) .. ")" local members = 0 local tmp = {} for i, tid in ipairs(players) do if(getPlayerParty(tid) == playerParty and cid ~= tid) then tmp = outfit if(canPlayerWearOutfit(tid, outfit.lookType, outfit.lookAddons) ~= TRUE) then local tidOutfit = getCreatureOutfit(tid) tmp.lookType = tidOutfit.lookType tmp.lookAddons = tidOutfit.lookAddons end doSendMagicEffect(getCreaturePosition(tid), 66) doCreatureChangeOutfit(tid, tmp) doPlayerSendTextMessage(tid, MESSAGE_INFO_DESCR, message) members = members + 1 end end exhaustion.set(cid, config.storage, config.exhaustionInSeconds) doPlayerSendCancel(cid, "Party members outfit has been changed. (Total: " .. members .. ")") return TRUE end -
Absolute's post in (Resolvido)RME ajuda was marked as the answerVocê terá que pegar o items.otb da pasta do seu ot e ir até a pasta do remeres map editor, data > 860 e colocar o items.otb do seu ot lá Simples.
Errado amigo é o items.otb o responsável pelas sprites.
-
Absolute's post in Formação de Equipes was marked as the answerCom empresa vendendo VPS a 10 R$ hoje em dia quem vai passar pra você "hostear" amigo '-'
-
Absolute's post in (Resolvido)(PEDIDO) NPC Addoner igual dos OT Baiak. was marked as the answerSegue o script do NPC, crie um a seu gosto e use o script:
-
Absolute's post in (Resolvido)Dúvida sobre o tempo de respawn dos monstros. was marked as the answerO RME É O TRADICIONAL, SE TIVER NO RME, 60 Segundos e no Config = 1 vai ficar 60
Se no RME tiver 60 Segundos e no config = 2 vai multiplicar 2x deixando 120 segundos
-
Absolute's post in (Resolvido){Ajuda} Account Manager was marked as the answerTudo vocês querem baixar outro servidor, se buga a bless vocês fazem questão de baixar outro, não é bem assim não gente.
Pelo jeito você está usando a 3777 da 0_4 (DISTRO), então ele não aceita plain, você terá de manter sha1, coloque o password do account manager em "código" "encrypt" "SHA1" como as outras contas, e mantenha o sha1 no config.
Caso contrário teste uma outra REV de source.
-
Absolute's post in (Resolvido)Erro ao instalar o apache was marked as the answerVocê prefere ter um fusca ou um camaro recente?
Ubuntu 12.04 ou mais.