-
Total de itens
1002 -
Registro em
-
Última visita
-
Dias Ganhos
20
Tudo que Mudrock postou
-
Tópico Movido Este tópico foi movido de "OTServ → Suporte → Suporte Scripting" para "OTServ → Suporte → Suporte Scripting → Pedidos e dúvidas resolvidos - Scripting".
-
Rode essa query na db ALTER TABLE `accounts` ADD `vipdays` INT(15) NOT NULL;
-
pedido mudar esse sistema de onThink para onTime
pergunta respondeu ao leandrozera de Mudrock em Scripts
Como o mesmo não se pronuncia a Dias estarei movendo, caso a duvida ainda persista entre em contato comigo. Tópico Movido Este tópico foi movido de "OTServ → Suporte → Suporte Scripting" para "OTServ → Suporte → Suporte Scripting → Pedidos e dúvidas resolvidos - Scripting". -
Tópico Movido Este tópico foi movido de "OTServ → Suporte → Suporte Scripting" para "OTServ → Suporte → Suporte Scripting → Pedidos e dúvidas resolvidos - Scripting".
-
[Resolvido] [Pedido] Spell Pokemon (Outrage)
pergunta respondeu ao Morigan1 de Mudrock em Resolvidos
Tópico Movido Este tópico foi movido de "OTServ → Suporte → Suporte Servidores derivados" para "OTServ → Suporte → Suporte Servidores derivados → Pedidos e dúvidas resolvidos - Servidores derivados". -
[Encerrado] Duplicate - Ajuda !
tópico respondeu ao BrunooMaciell de Mudrock em Tópicos Sem Resposta
Crie um tópico para sua duvida, não vamos ficar revivendo esse tópico de 2013, obrigado -
Tópico Movido Este tópico foi movido de "OTServ → Suporte → Suporte Scripting" para "OTServ → Suporte → Suporte Scripting → Pedidos e dúvidas resolvidos - Scripting".
-
Vendo ACC LOL, Prata 2 ( S4 Gold 3 ) Borda Gold, 5 Paginas de runa, 13 Skins +
tópico respondeu ao BananaFight de Mudrock em Lixeira Pública
existem algumas regras no bar que devem ser seguidas. Tópico Movido Este tópico foi movido de "OFF-Topic → Barzinho do Éks → Jogos" para "Xtibia.com → Geral → Lixeira". -
[Encerrado] Duplicate - Ajuda !
tópico respondeu ao BrunooMaciell de Mudrock em Tópicos Sem Resposta
no erro ele cita quais itens são duplicatas só verificar -
[Encerrado] Duplicate - Ajuda !
tópico respondeu ao BrunooMaciell de Mudrock em Tópicos Sem Resposta
Há items duplicados(com o mesmo id), isso é no items.xml. -
function onUse(cid, item, frompos, item2, topos) voc = getPlayerVocation(cid) pos = getPlayerPosition(cid) add = 5 if voc == 5 or voc == 6 or voc == 12 then stor = getPlayerStorageValue(cid,2357) if stor == -1 then setPlayerStorageValue(cid,2357,1) doPlayerSetMagic(cid, getPlayerMagLevel(cid)+add) doSendMagicEffect(frompos, 28) doSendAnimatedText(pos, "Magic Up", TEXTCOLOR_BLUE) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a quest.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end elseif voc == 7 then stor = getPlayerStorageValue(cid,2357) if stor == -1 then setPlayerStorageValue(cid,2357,1) doPlayerSetSkill(cid, SKILL_DISTANCE, getPlayerSkillLevel(cid, SKILL_DISTANCE)+12) doSendMagicEffect(frompos, 28) doSendAnimatedText(pos, "Distance Up", TEXTCOLOR_BLUE) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a quest.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end elseif voc == 10 then stor = getPlayerStorageValue(cid,2357) if stor == -1 then setPlayerStorageValue(cid,2357,1) getPlayerSkill(cid, SKILL_CLUB, getPlayerSkillLevel(cid, SKILL_CLUB)+12) getPlayerSkill(cid, SKILL_SHIELDING, getPlayerSkillLevel(cid, SKILL_SHIELDING)+12) doSendMagicEffect(frompos, 28) doSendAnimatedText(pos, "Club Up", TEXTCOLOR_BLUE) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a quest.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end elseif voc == 8 then stor = getPlayerStorageValue(cid,2357) if stor == -1 then setPlayerStorageValue(cid,2357,1) doPlayerSetSkill(cid, SKILL_CLUB, getPlayerSkillLevel(cid, SKILL_CLUB)+12) doPlayerSetSkill(cid, SKILL_SWORD, getPlayerSkillLevel(cid, SKILL_SWORD)+12) doPlayerSetSkill(cid, SKILL_AXE, getPlayerSkillLevel(cid, SKILL_AXE)+12) doPlayerSetSkill(cid, SKILL_SHIELDING, getPlayerSkillLevel(cid, SKILL_SHIELDING)+12) doSendMagicEffect(frompos, 28) doSendAnimatedText(pos, "Skills Up", TEXTCOLOR_BLUE) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a quest.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce nao tem a vocacao necessaria.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end return true end
-
Não porque voce colocou um end sem iniciar um IF rsrsr
-
function onUse(cid, item, frompos, item2, topos) voc = getPlayerVocation(cid) pos = getPlayerPosition(cid) add = 5 if voc == 5 or voc == 6 or voc == 12 then stor = getPlayerStorageValue(cid,2357) if stor == -1 then setPlayerStorageValue(cid,2357,1) doPlayerSetMagic(cid, getPlayerMagLevel(cid)+add) doSendMagicEffect(frompos, 28) doSendAnimatedText(pos, "Magic Up", TEXTCOLOR_BLUE) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a quest.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end elseif voc == 7 then stor = getPlayerStorageValue(cid,2357) if stor == -1 then setPlayerStorageValue(cid,2357,1) doPlayerSetSkill(cid, SKILL_DISTANCE, getPlayerSkillLevel(cid, SKILL_DISTANCE)+12) doSendMagicEffect(frompos, 28) doSendAnimatedText(pos, "Distance Up", TEXTCOLOR_BLUE) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a quest.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end elseif voc == 10 then stor = getPlayerStorageValue(cid,2357) if stor == -1 then setPlayerStorageValue(cid,2357,1) doPlayerSetSkill(cid, SKILL_CLUB, getPlayerSkillLevel(cid, SKILL_CLUB)+12) doPlayerSetSkill(cid, SKILL_SHIELDING, getPlayerSkillLevel(cid, SKILL_SHIELDING)+12) doSendMagicEffect(frompos, 28) doSendAnimatedText(pos, "Club Up", TEXTCOLOR_BLUE) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a quest.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end elseif voc == 8 then stor = getPlayerStorageValue(cid,2357) if stor == -1 then setPlayerStorageValue(cid,2357,1) doPlayerSetSkill(cid, SKILL_CLUB, getPlayerSkillLevel(cid, SKILL_CLUB)+12) doPlayerSetSkill(cid, SKILL_SWORD, getPlayerSkillLevel(cid, SKILL_SWORD)+12) doPlayerSetSkill(cid, SKILL_AXE, getPlayerSkillLevel(cid, SKILL_AXE)+12) doPlayerSetSkill(cid, SKILL_SHIELDING, getPlayerSkillLevel(cid, SKILL_SHIELDING)+12) doSendMagicEffect(frompos, 28) doSendAnimatedText(pos, "Skills Up", TEXTCOLOR_BLUE) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a quest.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce nao tem a vocacao necessaria.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end return true end
-
é somente um Script básico de teleport field.. rsrsr
-
Tópico Movido Este tópico foi movido de "OTServ → Suporte → Suporte Scripting" para "OTServ → Suporte → Suporte Scripting → Pedidos e dúvidas resolvidos - Scripting".
-
Obrigado por lembrar do uniqueid kkkkkk <3
-
Delay é causado pelo ping que é a resposta do servidor com sua maquina... se seu ping for alto o jogo terá delay, resumindo pode ser conexão com a internet extremamente lenta.
-
Crie um arquivo chamado itemtp.lua local pos = {x=33077, y=31219, z=8} -- Posição para onde sera teleportado function onStepIn(cid, item, pos) doTeleportThing(cid, pos) doPlayerSendTextMessage(cid, 27, "Você foi teleportado!") return true end e também <movevent type="StepIn" actionid="5885" event="script" value="itemtp.lua"/>
-
Tópico Movido Este tópico foi movido de "OTServ → Suporte → Suporte Scripting" para "OTServ → Suporte → Suporte Scripting → Pedidos e dúvidas resolvidos - Scripting".
-
Vai no seu config.lua e verifique as posições X= Y= Z= se corresponde com as do templo, se usa Website gesior verifique as posições dos Samples
-
Tópico Movido Este tópico foi movido de "OTServ → Downloads → Servidores → Servidores → OTserv 8.6x e 8.7x" para "Xtibia.com → Geral → Lixeira".
-
Sim o servidor é em Mysql, e a configuração de senhas é " SHA1 "
-
O Site esta com um pequeno BUG, que esta um espaço enorme entre o header e o corpo do site
-
Sim
-
Stream ao vivo do TEMPLO! TFS 0.4 [8.60]
tópico respondeu ao Mudrock de Mudrock em Tutoriais de Websites
então não tem como pois o script é interligado com o site e servidor
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.