Ir para conteúdo

Tutoriais de Infraestrutura

Veja aqui tutoriais de sistemas operacionais, redes e segurança, banco de dados e outros assuntos relacionados à infraestrutura.


234 tópicos neste fórum

    • 21 respostas
    • 18.8k visualizações
  1. Tutorial De Luasql 1 2

    • 19 respostas
    • 21.6k visualizações
    • 4 respostas
    • 8.3k visualizações
    • 1 resposta
    • 7.5k visualizações
    • 41 respostas
    • 23.8k visualizações
  2. Mod_security APACHE Own's

    • 5 respostas
    • 8k visualizações
  3. Instalar Csf Firewall 1 2

    • 18 respostas
    • 25.2k visualizações
    • 16 respostas
    • 15.9k visualizações
  4. Tutorial - Mysql. 1 2

    • 18 respostas
    • 27.2k visualizações
    • 5 reações

    • 12 respostas
    • 13k visualizações
    • 2 reações

    • 1 resposta
    • 8.3k visualizações
    • 1 reação

    • 0 respostas
    • 1.3k visualizações
    • 4 respostas
    • 5.8k visualizações
    • 5 respostas
    • 1.5k visualizações
    • 14 respostas
    • 14.3k visualizações
    • 1 reação

    • 6 respostas
    • 13.2k visualizações
    • 1 reação

    • 1 resposta
    • 2.9k visualizações
    • 6 reações

    • 13 respostas
    • 4k visualizações
    • 0 respostas
    • 1.1k visualizações
    • 1 reação

    • 3 respostas
    • 14.5k visualizações
    • 2 reações

    • 1 resposta
    • 4.8k visualizações
    • 0 respostas
    • 4.2k visualizações
    • 24 respostas
    • 20.7k visualizações
    • 0 respostas
    • 5.5k visualizações
    • 0 respostas
    • 1.7k visualizações
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
  • Mais Reputados

  • Tópicos

  • Últimos Posts

    • Filmywap is a widely known website that allows users to download the latest Bollywood, Hollywood, and regional movies for free. It has gained popularity due to its extensive library of films across multiple genres and languages, including Hindi, Tamil, Telugu, Punjabi, and more. Filmywap offers movies in various formats and file sizes, catering to users with different internet speeds and storage capacities. Visitors often turn to Filmywap for its easy-to-navigate interface and quick access to newly released films. Whether it's a big-budget blockbuster or an indie release, the platform frequently uploads content shortly after theatrical or OTT releases. Despite its popularity, it’s important to note that Filmywap operates outside legal distribution channels, and using such sites may violate copyright laws. While it provides free entertainment, users should be cautious about legal implications and potential risks like malware. Supporting official platforms ensures both safety and the rightful support of filmmakers.
    • IMORTALIDADE   local config = { storage = 13546, effect1 = 2 --- efeito ao ser atacado estando invulnerável } function onStatsChange(cid, attacker, type, combat, value) if value >= 1 and (type == STATSCHANGE_HEALTHLOSS or (getCreatureCondition(cid, CONDITION_MANASHIELD) and type == STATSCHANGE_MANALOSS)) then if getPlayerStorageValue(cid,config.storage) - os.time() > 0 and isCreature(attacker) then doSendMagicEffect(getCreaturePosition(cid), config.effect1) doSendAnimatedText(getCreaturePosition(cid), "0", 180) return false end end return true end       IMORTALIDADE   local config = { storage = 13546, cooldown = 3, --- tempo entre um uso e outro duration = 86400, --- duração effect1 = 26 -- efeito que sai ao falar a spell } function onCastSpell(cid, var) if getPlayerStorageValue(cid, 13546) < 1 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Você precisa ser DONATE para usar esta Magia.") doSendMagicEffect(getThingPos(cid), 2) return true end if os.time() - getPlayerStorageValue(cid, 13546) >= config.cooldown then setPlayerStorageValue(cid, 13546, os.time()) doSendMagicEffect(getCreaturePosition(cid), config.effect1) setPlayerStorageValue(cid, config.storage, os.time() + config.duration) doCreatureSay(cid,"24 HORAS DE INVENCIBILIDADE!!!", 19) doPlayerSendTextMessage(cid, 26, "You have now ".. config.duration .." seconds of invulnerability.") else doPlayerSendCancel(cid, "Your skill is in cooldown, you must wait "..(config.cooldown - (os.time() - getPlayerStorageValue(cid, 13546))).." seconds.") return false end return true end     REFLECTION    function onCastSpell(cid, var) -- Check if the player has the required storage for the spell if getPlayerStorageValue(cid, 12789) < 1 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You need storage spell donate.") doSendMagicEffect(getThingPosition(cid), CONST_ME_POFF) return false end -- Register the statschange event registerCreatureEvent(cid, "Reflection/statschange") -- Registers the statschange event -- Set the duration for the Reflection effect (24 hours) setPlayerStorageValue(cid, 12789, os.time() + 86400) -- Sets the duration (24 hours) -- Apply the visual effect doSendMagicEffect(getThingPosition(cid), CONST_ME_HOLYDAMAGE) -- Inform the player that they have gained the Reflection effect doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "You have 24 hours of Reflection.") return true end   function onStatsChange(cid, attacker, type, combat, value) -- Verificar se o Reflection está ativo if getPlayerStorageValue(cid, 12789) > os.time() then -- Garantir que o atacante é válido e está vivo if isCreature(attacker) and getCreatureHealth(attacker) > 0 then doCreatureAddHealth(attacker, -getCreatureHealth(attacker)) -- Matar atacante doSendMagicEffect(getThingPosition(attacker), CONST_ME_HOLYDAMAGE) doSendAnimatedText(getThingPosition(attacker), "[OWNED!]", 35) end return false -- Impede que o jogador perca vida else -- Desativar evento quando o Reflection expira unregisterCreatureEvent(cid, "Reflection/statschange") setPlayerStorageValue(cid, 12789, -1) end return true end     REFLECTION   function onLogin(cid) -- Verificar se o Reflection ainda está ativo if getPlayerStorageValue(cid, 12789) > os.time() then -- Registrar o evento statschange novamente registerCreatureEvent(cid, "Reflection/statschange") else -- Remover o armazenamento caso o efeito tenha expirado setPlayerStorageValue(cid, 12789, -1) end return true end  
    • Bom dia Irmão você poderia liberar esse Otserver para download 😊 ?
    • TFS 0.3.6 Two Weapons System EU VI UM SISTEMA DESSE TIPO AQUI NO FORUM POREM SÓ FUNCIONA COM UMA ARMA AS DUAS NAO FUNCIONA E TAMBEM EU QUERO USAR DOIS ESCUDOS E DUAS ARMAS
    • Hi everyone! I wanted to share a quick recommendation for anyone struggling with reaching top shelves or overhead cabinets in the kitchen. I recently got a Kitchen Ladder from Corvids India, and honestly, it’s one of the most useful tools I’ve added to my home. 🔹 Why I love it: ✅ Slim & Space-Saving Design – folds flat and fits easily behind a door or inside a pantry ✅ Sturdy Aluminum Frame – lightweight but supports up to 150 kg ✅ Anti-Slip Steps & Rubber Feet – very stable, no wobbling! ✅ Comfortable Handle Grip – makes climbing and standing feel more secure Whether you're short like me 🙋‍♂️ or just want to avoid using risky chairs or stools, this ladder makes reaching those high places safe and easy. They have 2-step, 3-step, and 4-step models—perfect for kitchens, wardrobes, utility rooms, and even for indoor cleaning tasks. If you’ve used any other Corvids products, I’d love to hear your experience too!  
×
×
  • Criar Novo...