

JumentoCuzaum
Barão-
Total de itens
245 -
Registro em
-
Última visita
Tudo que JumentoCuzaum postou
-
dúvida Duvida - Redirecionar Para Index.html
um tópico no fórum postou JumentoCuzaum Lixeira Pública
Bom Queria Saber como redirecionar a minha pagina lastnews para esta index que veio na pagina do meu server mais não sei onde editar e nem colocar para na mesma hora que entrar site redirecionar pra la :S foto: -
Bom Encontrei Esse Script Aqui No Xtibia Mais a Pess0a Que Postou Diz Que Não é Dele o Script e Não Vai Sanar Minha Duvida... Então Queria Uma Explicação de Como Usar Este Script... Bom Segue o Post Da Pess0a Que Disponibilizou O Script: Por Favor Me Expliquem o Que Significa cada parte ai e la em baixo tem umas positions do map que não sei ao certo o que por e uma query que não sei onde por... globalevents/scripts/ctf.lua adicione: local t = { redPos = {x = 982, y = 1022, z = 7}, bluePos = {x = 993, y = 1033, z = 7}, redStorage = 15000, blueStorage = 15001, fromPos = {x = 1004, y = 1023, z = 7}, toPos = {x = 1015, y = 1032, z = 7} } local conditionBlue = createConditionObject(CONDITION_OUTFIT) setConditionParam(conditionBlue, CONDITION_PARAM_TICKS, 1800 * 1000) addOutfitCondition(conditionBlue, {lookType = 130, lookHead = 87, lookBody = 87, lookLegs = 87, lookFeet = 87}) local conditionRed = createConditionObject(CONDITION_OUTFIT) setConditionParam(conditionRed, CONDITION_PARAM_TICKS, 1800 * 1000) addOutfitCondition(conditionRed, {lookType = 130, lookHead = 94, lookBody = 94, lookLegs = 94, lookFeet = 94}) local function teleportThing(minutes) local event = 0 if minutes <= 0 then for _, cid in ipairs(getPlayersOnline()) do if isInRange(getThingPos(cid), t.fromPos, t.toPos) then if math.random(1, 3) < 3 then setPlayerStorageValue(cid, t.redStorage, 1) doAddCondition(cid, conditionRed) doTeleportThing(cid, t.redPos, true) else setPlayerStorageValue(cid, t.blueStorage, 1) doAddCondition(cid, conditionBlue) doTeleportThing(cid, t.bluePos, true) end end end return true end if minutes == 1 then doBroadcastMessage("Capture The Flag will begin in " .. minutes .. " minute!") elseif minutes <= 3 then doBroadcastMessage("Capture The Flag will begin in " .. minutes .. " minutes!") else doBroadcastMessage("Capture The Flag will begin in " .. minutes .. " minutes!") end event = addEvent(teleportThing, 60, minutes - 1) return true end function onThink(interval, lastExecution) return teleportThing(math.abs(math.ceil(1))) end globalevents.xml adicione: [/font][/color] [color=#008000]<globalevent name="ctf_event" interval="60" event="script" value="ctf.lua"/>[/color] [color=#000000][font=Tahoma, Calibri, Arial, Verdana, Tahoma,] data/creaturescripts/scripts/ctf_target.lua adicione: local t = { redStorage = 15000, blueStorage = 15001 } function onCombat(cid, target) if isPlayer(cid) and isPlayer(target) then if getPlayerStorageValue(cid, t.redStorage) == 1 and getPlayerStorageValue(target, t.redStorage) == 1 then return doPlayerSendCancel(cid, "You may not attack your team mates.") and false elseif getPlayerStorageValue(cid, t.blueStorage) == 1 and getPlayerStorageValue(target, t.blueStorage) == 1 then return doPlayerSendCancel(cid, "You may not attack your team mates.") and false end end return true end data/creaturescripts/scripts/stats_ctf.lua adicione: local t = { redPos = {x = 983, y = 1028, z = 7}, bluePos = {x = 992, y = 1028, z = 7}, redStorage = 15000, blueStorage = 15001, redFlag = 18000, blueFlag = 18001 } function onStatsChange(cid, attacker, type, combat, value) if type == 1 then if getCreatureHealth(cid) <= value then if isPlayer(cid) and isCreature(attacker) then if getPlayerStorageValue(cid, t.redStorage) == 1 then if getPlayerStorageValue(cid, t.blueFlag) == 1 and getGlobalStorageValue(t.blueFlag) == 1 then setPlayerStorageValue(cid, t.blueFlag, -1) setGlobalStorageValue(t.blueFlag, -1) doBroadcastMessage(getCreatureName(cid) .. " has lost the Blue Flag!") doTeleportThing(cid, t.redPos, true) else doTeleportThing(cid, t.redPos, true) end doCreatureAddHealth(cid, getCreatureMaxHealth(cid), true) doCreatureAddMana(cid, getCreatureMaxMana(cid), true) elseif getPlayerStorageValue(cid, t.blueStorage) == 1 then if getPlayerStorageValue(cid, t.redFlag) == 1 and getGlobalStorageValue(t.redFlag) == 1 then setPlayerStorageValue(cid, t.redFlag, -1) setGlobalStorageValue(t.redFlag, -1) doTeleportThing(cid, t.bluePos, true) doBroadcastMessage(getCreatureName(cid) .. " has lost the Red Flag!") else doTeleportThing(cid, t.bluePos, true) end doCreatureAddHealth(cid, getCreatureMaxHealth(cid), true) doCreatureAddMana(cid, getCreatureMaxMana(cid), true) end end return false end end return true end creaturescripts.xml adicione: <event type="statschange" name="stats_ctf" event="script" value="stats_ctf.lua"/> [/font][/color] [color=#000000][font=Tahoma, Calibri, Arial, Verdana, Tahoma,]<event type="combat" name="ctf_target" event="script" value="ctf_target.lua"/> login.lua adicione: registerCreatureEvent(cid, "stats_ctf") registerCreatureEvent(cid, "ctf_target") data/movements/scripts/test.lua adicione: local t = { redStorage = 15000, blueStorage = 15001, redFlag = 18000, blueFlag = 18001, redGoal = 19000, blueGoal = 19001, fromPos = {x = 982, y = 1022, z = 7}, toPos = {x = 993, y = 1033, z = 7} } local function getPlayers() local thisTable = {} for x = t.fromPos.x, t.toPos.x do for y = t.fromPos.y, t.toPos.y do for z = t.fromPos.z, t.toPos.z do local myPos = {x = x, y = y, z = z} local player = getTopCreature(myPos).uid if player > 0 then table.insert(thisTable, player) else table.remove(thisTable, player) end end end end return {thisTable = thisTable} end local function repeatFlagOnPlayer(cid) local k = getThingPos(cid) local r = { {pos = {x = k.x + 2, y = k.y - 2, z = k.z}, delay = 300}, {pos = {x = k.x + 2, y = k.y + 2, z = k.z}, delay = 300}, {pos = {x = k.x - 2, y = k.y + 2, z = k.z}, delay = 300}, {pos = {x = k.x - 2, y = k.y, z = k.z}, delay = 300}, {pos = {x = k.x - 2, y = k.y - 2, z = k.z}, delay = 300}, {pos = {x = k.x, y = k.y - 2, z = k.z}, delay = 300} } local effects = {27, 28, 29, 30} if isPlayer(cid) then if getPlayerStorageValue(cid, t.blueStorage) == 1 and getPlayerStorageValue(cid, t.redFlag) == 1 and getGlobalStorageValue(t.redFlag) == 1 then for i = 1, 6 do addEvent(doSendDistanceShoot, r[i].delay, r[i].pos, k, CONST_ME_FIREWORK_YELLOW) end for i = 1, 4 do addEvent(doSendMagicEffect, 1000, getThingPos(cid), effects[i]) end return addEvent(repeatFlagOnPlayer, 1000, cid) elseif getPlayerStorageValue(cid, t.redStorage) == 1 and getPlayerStorageValue(cid, t.blueFlag) == 1 and getGlobalStorageValue(t.blueFlag) == 1 then for i = 1, 6 do addEvent(doSendDistanceShoot, r[i].delay, r[i].pos, k, CONST_ME_FIREWORK_YELLOW) end for i = 1, 4 do addEvent(doSendMagicEffect, 1000, getThingPos(cid), effects[i]) end return addEvent(repeatFlagOnPlayer, 1000, cid) else return false end else return false end end function onStepIn(cid, item, position, fromPosition, toPosition, lastPosition, actor) if isPlayer(cid) then if item.actionid == 6000 then if getPlayerStorageValue(cid, t.redStorage) == 1 then if getPlayerStorageValue(cid, t.blueFlag) == -1 and getGlobalStorageValue(t.blueFlag) == -1 then setPlayerStorageValue(cid, t.blueFlag, 1) setGlobalStorageValue(t.blueFlag, 1) repeatFlagOnPlayer(cid) doBroadcastMessage(getCreatureName(cid) .. " has stolen the Blue Flag!") else doCreatureSay(cid, "The flag is not at home.", 19) doTeleportThing(cid, fromPosition, false) end else doCreatureSay(cid, "You may only pick up the opposite team flag.", 19) doTeleportThing(cid, fromPosition, false) end elseif item.actionid == 6001 then if getPlayerStorageValue(cid, t.blueStorage) == 1 then if getPlayerStorageValue(cid, t.redFlag) == -1 and getGlobalStorageValue(t.redFlag) == -1 then setPlayerStorageValue(cid, t.redFlag, 1) setGlobalStorageValue(t.redFlag, 1) repeatFlagOnPlayer(cid) doBroadcastMessage(getCreatureName(cid) .. " has stolen the Red flag!") else doCreatureSay(cid, "The flag is not at home.", 19) doTeleportThing(cid, fromPosition, false) end else doCreatureSay(cid, "The flag is not at home.", 19) doTeleportThing(cid, fromPosition, false) end end if item.actionid == 6002 then if getPlayerStorageValue(cid, t.redStorage) == 1 then if getPlayerStorageValue(cid, t.blueFlag) == 1 and getGlobalStorageValue(t.blueFlag) == 1 then setGlobalStorageValue(t.blueFlag, -1) setPlayerStorageValue(cid, t.blueFlag, -1) setGlobalStorageValue(t.redGoal, getGlobalStorageValue(t.redGoal)+1) doBroadcastMessage("Current CTF Game Score:\nRed Team: " .. getGlobalStorageValue(t.redGoal) .. "\nBlue Team: " .. getGlobalStorageValue(t.blueGoal) .. "\nTen Scores to win!", 20) doBroadcastMessage(getCreatureName(cid) .. " has scored 1 point for the Red Team!") else doCreatureSay(cid, "You dont have the flag.", 19) doTeleportThing(cid, fromPosition, false) end elseif getPlayerStorageValue(cid, t.blueStorage) == 1 then if getPlayerStorageValue(cid, t.redFlag) == 1 and getGlobalStorageValue(t.redFlag) == 1 then setGlobalStorageValue(t.redFlag, -1) setPlayerStorageValue(cid, t.redFlag, -1) setGlobalStorageValue(t.blueGoal, getGlobalStorageValue(t.blueGoal)+1) doBroadcastMessage("Current CTF Game Score:\nRed Team: " .. getGlobalStorageValue(t.redGoal) .. "\nBlue Team: " .. getGlobalStorageValue(t.blueGoal) .. "\nTen Scores to win!", 20) doBroadcastMessage(getCreatureName(cid) .. " has scored 1 point for the Blue Team!") else doCreatureSay(cid, "You dont have the flag.", 19) doTeleportThing(cid, fromPosition, false) end end if getGlobalStorageValue(t.blueGoal) == 10 and getGlobalStorageValue(t.redGoal) < 10 then for _, cid in ipairs(getPlayersOnline()) do if getPlayerStorageValue(cid, t.blueStorage) == 1 then setPlayerStorageValue(cid, t.blueStorage, -1) doPlayerAddItem(cid, 9020, math.random(1, 6)) elseif getPlayerStorageValue(cid, t.redStorage) == 1 then setPlayerStorageValue(cid, t.redStorage, -1) end doRemoveCondition(cid, CONDITION_OUTFIT) setGlobalStorageValue(t.redGoal, 0) setGlobalStorageValue(t.blueGoal, 0) end local FF = getPlayers().thisTable if #FF > 1 then for _, hh in ipairs(FF) do doTeleportThing(hh, getTownTemplePosition(getPlayerTown(hh)), true) end end elseif getGlobalStorageValue(t.redGoal) == 10 and getGlobalStorageValue(t.blueGoal) < 10 then for _, cid in ipairs(getPlayersOnline()) do if getPlayerStorageValue(cid, t.redStorage) == 1 then setPlayerStorageValue(cid, t.redStorage, -1) doPlayerAddItem(cid, 9020, math.random(1, 6)) elseif getPlayerStorageValue(cid, t.blueStorage) == 1 then setPlayerStorageValue(cid, t.blueStorage, -1) end doRemoveCondition(cid, CONDITION_OUTFIT) setGlobalStorageValue(t.redGoal, 0) setGlobalStorageValue(t.blueGoal, 0) end local F = getPlayers().thisTable if #F > 1 then for _, h in ipairs(F) do doTeleportThing(h, getTownTemplePosition(getPlayerTown(h)), true) end end end end else doRemoveCreature(cid) end return true end movements.xml adicione: <movevent type="StepIn" actionid="6000-6002" event="script" value="test.lua"/> data/globalevents/scripts/start.lua adicione: setGlobalStorageValue(19000, 0) setGlobalStorageValue(19001, 0) Posições: Podem ser alteradas! mple position = {x = 1025, y = 1028, z = 7} waiting room pos = {x = 1009, y = 1027, z = 7}, red team = {x = 982, y = 1022, z = 7}, blue team = {x = 993, y = 1033, z = 7}, score position = {x = 987, y = 1027, z = 7}, red team flag position = {x = 987, y = 1032, z = 7}, blue team flag position = {x = 987, y = 1023, z = 7} Depois execute essa query: UPDATE `players` SET posx = 1025, posy = 1028, posz = 7 Se Alguem Ajudar +REP ...
-
so não entendi isso: 4º Cole isso também na página que irá abrir o pop-up <script src="NOME DO ARQUIVO FORMATO JS.js"></script>
-
Deprecated: Function sql_regcase() is deprecated in C:\xampp\htdocs\layouts\tibiacom\layout.php on line 10 Deprecated: Function sql_regcase() is deprecated in C:\xampp\htdocs\layouts\tibiacom\layout.php on line 10 Procurei a Linha 10 e ela Está Assim: $sql = preg_replace(sql_regcase("/(from|select|insert|delete|where|drop table|show tables|#|\*|--|\\\\)/"),"",$sql); Resolvido! é so remover a linha acima ^^
-
Gesior Mudar A Pasta Do Ot
tópico respondeu ao JumentoCuzaum de JumentoCuzaum em Tutoriais de Websites
MUDE o Nome Do Post Para Tutorial PLEASE! -
Bom voce baixou um gesior bom mais ele tem esse erro ao usar então como mudar essa pasta em vermelho pois essa pasta não existe em seu pc Warning: parse_ini_file(C:/Documents and Settings/Administrador/Desktop/OTSv/config.lua) [function.parse-ini-file]: failed to open stream: No such file or directory in C:\xampp\htdocs\config-and-functions.php on line 13 Database error. Unknown database type in C:/Documents and Settings/Administrador/Desktop/OTSv/config.lua . Must be equal to: "mysql" or "sqlite". Now is: "" Bom Galera é o Seguinte Voce Vai Em: C:\xampp\htdocs\config la tem uma pasta chamada: config e na pasta contem um texto assim: install = "no" server_path = "C:/Documents and Settings/Administrador/Desktop/OTSv/config.lua" signatures = "1" Mude Para: install = "yes" server_path = "" signatures = "1" e se tudo estiver certo seu gesior vai abrir o install.php ai so seguir os passos la +REP se Ajudei
-
Tive um problema na parte do apache, dava um erro quando tentava acessar o install.php: Notice: Undefined index: page in C:\xampp\htdocs\install.php on line 40 Notice: Undefined index: page in C:\xampp\htdocs\install.php on line 52 Notice: Undefined index: page in C:\xampp\htdocs\install.php on line 63 Resolvi Assim: dei STOP No XAMP em Apache e Em MySql e Depois entre na pasta do xampp/php e abrindo o arquivo php.ini é so procurar essa linha: "error_reporting = E_ALL | E_STRICT" e substituir por isso "error_reporting = E_ALL & ~E_NOTICE" Agora Abra Denovo o Xampp e Rode o Apache e o MySql Pronto! +REP se Ajudei
-
[ Resolvido ][Pedido] Se Matar Mc Perder 1 Lvl...
pergunta respondeu ao JumentoCuzaum de JumentoCuzaum em Scripts
Funcionou +REP pra voce Oneshot Topico REPORTADO para moverem... -
[Yalahar] Orc Berserker [+Vídeo & Dicas + Ek]
tópico respondeu ao SkyDangerous de JumentoCuzaum em Lixeira Pública
Booa -
otserv 8.x Exclusivo Baiak 8.60 + De 300 Tps
tópico respondeu ao Daniloca de JumentoCuzaum em OTServ Comum
Quem Quiser o Map Manda PM e Me da 1 +REP que eu envio o download -
[ Resolvido ][Pedido] Se Matar Mc Perder 1 Lvl...
pergunta respondeu ao JumentoCuzaum de JumentoCuzaum em Scripts
onde coloco? isto? -
[ Resolvido ][Pedido] Se Matar Mc Perder 1 Lvl...
pergunta respondeu ao JumentoCuzaum de JumentoCuzaum em Scripts
Dei +REP pro lord por dar o script e amanhã darei seu +REP lordbug99 Por ter ajustado vou testar quando eu ver que deu certo vou postar aqui e reportar o topico... @ Edit Bom Ainda Não Deu CERTO :S Matei Um MC Meu e Não Retirou nada :S algum erro alguma coisa que eu tenha que editar? -
é isso...
-
[ Resolvido ][Pedido] Se Matar Mc Perder 1 Lvl...
pergunta respondeu ao JumentoCuzaum de JumentoCuzaum em Scripts
testei e não deu nada tenho que mudar alguma coisa? -
sorte tipo voce ganha uma soft ou outros itens direto em alguns players é sorte
-
Quero Um Sistema Que Se Eu Matar um MC Perdo Um Lvl Tornando Assim Impossivel Fazer FREE EXP em Ot De WAR +REP a Quem Ajudar ;]
-
não entendi isso: Depois execute essa query: UPDATE `players` SET posx = 1025, posy = 1028, posz = 7 tem como explicar? Moderadores se for flood me Desculpe o que seria: mple position = {x = 1025, y = 1028, z = 7} e score position = {x = 987, y = 1027, z = 7},
- 12 respostas
-
- [pedido] capture the flag
- otserv
- (e 2 mais)
-
Vi Em Um OTserver e queria por no meu alguem tem ae? +REP por 3 dias Explicação: Capture The Flag # O CTF, ou Capture The Flag é um evento onde 2 times irão se enfrentar para conseguir pegar a bandeira do inimigo. # Objetivo é simples, chegar a base do inimigo antes que ele pega sua bandeira passar em cima dela e voltar para a sua base onde terá uma bandeira da sua cor, basta passar em cima dela e você dará a seu time um ponto. # Quando algum time conseguir marcar algum ponto todos os jogadores que estão no evento serão jogados para suas bases. # Quando você entrar no evento você será atribuído um equipa aleatória. # O evento tem a duração de 10 minutos, dentro do evento todos players terão a mesma velocidade. # O Evento será a cada 6 Horas, quando estiver na hora ira aparecer uma mensagem e um teleport será criado no templo, após 5 minutos este teleport ira sumir e o evento ira começar. # Se você morrer dentro do evento você não ira perder nada, skill, level, exp nada, você será apenas teleportado para sua base. # O time que fizer 10 pontos primeiro ira ganhar, caso ninguém faça 10 points nesses 10 minutos o time que mais fez pontos ira ganhar. # A recompensa para cada player do time ganhador será feito à sorte. 50% de chance de ganhar soft boots 25% de chance de ganhar exp scroll (500k de exp ao ser usado) 25% de chance de ganhar Gold Ingot (250k em gold ao ser usado)
-
Underwargo.servegame.com Global 9.52
tópico respondeu ao rodrygosos de JumentoCuzaum em Lixeira Pública
REPORTADO por Flood, Leia As Regras! -
mais o que voce fez? Lucaswc15 tipo eu quero adicionar estes outros locais de 3 em 3 nas alavancas so que não sei como :S e ta la funcionando somente 1 :S ai as posiçoes de 3 em 3: table.insert(p[6300],i,{x=521+(i-1),y=601,z=6,stackpos=1}) table.insert(p[6301],i,{x=522+(i-1),y=601,z=6,stackpos=1}) table.insert(p[6302],i,{x=523+(i-1),y=601,z=6,stackpos=1}) table.insert(p[6303],i,{x=517+(i-1),y=596,z=6,stackpos=1}) table.insert(p[6304],i,{x=518+(i-1),y=596,z=6,stackpos=1}) table.insert(p[6305],i,{x=519+(i-1),y=596,z=6,stackpos=1}) table.insert(p[6306],i,{x=521+(i-1),y=596,z=6,stackpos=1}) table.insert(p[6307],i,{x=522+(i-1),y=596,z=6,stackpos=1}) table.insert(p[6308],i,{x=523+(i-1),y=596,z=6,stackpos=1}) table.insert(p[6309],i,{x=517+(i-1),y=591,z=6,stackpos=1}) table.insert(p[6310],i,{x=518+(i-1),y=591,z=6,stackpos=1}) table.insert(p[6311],i,{x=519+(i-1),y=591,z=6,stackpos=1}) table.insert(p[6312],i,{x=521+(i-1),y=591,z=6,stackpos=1}) table.insert(p[6313],i,{x=522+(i-1),y=591,z=6,stackpos=1}) table.insert(p[6314],i,{x=523+(i-1),y=591,z=6,stackpos=1}) table.insert(p[6315],i,{x=517+(i-1),y=586,z=6,stackpos=1}) table.insert(p[6316],i,{x=518+(i-1),y=586,z=6,stackpos=1}) table.insert(p[6317],i,{x=519+(i-1),y=586,z=6,stackpos=1}) table.insert(p[6318],i,{x=521+(i-1),y=586,z=6,stackpos=1}) table.insert(p[6319],i,{x=522+(i-1),y=586,z=6,stackpos=1}) table.insert(p[6320],i,{x=523+(i-1),y=586,z=6,stackpos=1}) table.insert(p[6321],i,{x=517+(i-1),y=581,z=6,stackpos=1}) table.insert(p[6322],i,{x=518+(i-1),y=581,z=6,stackpos=1}) table.insert(p[6323],i,{x=519+(i-1),y=581,z=6,stackpos=1}) table.insert(p[6324],i,{x=521+(i-1),y=581,z=6,stackpos=1}) table.insert(p[6325],i,{x=522+(i-1),y=581,z=6,stackpos=1}) table.insert(p[6326],i,{x=523+(i-1),y=581,z=6,stackpos=1}) Lucaswc15 responde ae se der
-
pow ta legal... não, não ta
-
POW TENHO UMA BLUSA IGUAL É NOIZ BAHIANOS COMO DIZEM NEM MORAMOS NA BAHIA :S
-
é.... eu vi as fotos :S
-
9.999 posts <<<<<<<<<<<<<<<<<<<<<<<<<<LOL
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.