-
Total de itens
435 -
Registro em
-
Última visita
-
Prêmios recebidos
2
Tudo que RicardoJRE postou
-
Top Raking Weapon enchant (LUCERA2 INTERLUDE)
Tópico respondeu ao RicardoJRE de RicardoJRE em Scripts, Sistemas e Paineis
Tu é brabo mano, valeu! -
Existe a possibilidade de criar um skill em passiva em que o player não possa ter seu target disponivel? Se sim, como? l2j
-
Top Raking Weapon enchant (LUCERA2 INTERLUDE)
Tópico respondeu ao RicardoJRE de RicardoJRE em Scripts, Sistemas e Paineis
Que bom que gostou mano, faça bom proveito. -
Top Raking Weapon enchant (LUCERA2 INTERLUDE)
um tópico no fórum postou RicardoJRE Scripts, Sistemas e Paineis
Procurei e não encontrei um Script Top enchant weapon, então resolvi criar um script php. Obs: Só testei na lucera2 interlude 1 - Salve como top_enchant.php e coloque na pasta raiz do site ou onde quiser 2- Execute a sql no navicat SELECT C.char_name, C.online, I.enchant, I.item_type FROM characters C INNER JOIN items I ON C.obj_Id = I.owner_id WHERE I.item_type IN (123, 456, 789) AND C.char_name != 'admin' ORDER BY I.enchant DESC LIMIT 30; 3- Altere o pdo para as configurações de conexão com seu vps em vermelho. (IP, DB,USER E PASS) $pdo = new PDO('mysql:host=SEUIP;dbname=SEUDB;charset=utf8mb4', 'root', 'SENHA'); <?php // Autor: RICARDOJRE // Descrição: Código para exibir o ranking de Top Enchant // Configurações $countTopPlayers = 30; $weaponIds = [ 6591,6592,6593,6594,6595,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,7575,7576,7577,7578,6596,6597,6598,6587,6588,6589,6584,6585,6586,6580,6581,6582,6583,9824,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9664,9665,9666,9667 ]; // Mapeamento dos IDs para os nomes dos itens reais $itemNames = [ 6590 => "Angel Slayer Crt. Damage", 6591 => "Angel Slayer HP Drain", 6592 => "Angel Slayer Haste", 6593 => "Shining Bow Cheap Shot", 6594 => "Shining Bow Focus", 6595 => "Shining Bow Crt. Slow", 6599 => "Saint Spear Health", 6600 => "Saint Spear Guidance", 6601 => "Saint Spear Haste", 6602 => "Demon Splinter Focus", 6603 => "Demon Splinter Health", 6604 => "Demon Splinter Crt. Stun", 6605 => "Heavens Divider Haste", 6606 => "Heavens Divider Health", 6607 => "Heavens Divider Focus", 6608 => "Arcana Mace Acumen", 6609 => "Arcana Mace MP Regeneration", 6610 => "Arcana Mace Mana Up", 7575 => "Draconic Bow", 7576 => "Draconic Bow Cheap Shot", 7577 => "Draconic Bow Focus", 7578 => "Draconic Bow Critical Slow", 6596 => "Dragon Hunter Axe", 6597 => "Dragon Hunter Axe Health", 6598 => "Dragon Hunter Axe HP Drain", 6587 => "Imperial Staff Empower", 6588 => "Imperial Staff MP Regeneration", 6589 => "Imperial Staff Magic Hold", 6584 => "Basalt Battlehammer HP Drain", 6585 => "Basalt Battlehammer Health", 6586 => "Basalt Battlehammer HP Regeneration", 6580 => "Tallum Blade*Dark Legion's Edge", 6581 => "Forgotten Blade Haste", 6582 => "Forgotten Blade Health", 6583 => "Forgotten Blade Focus", 9824 => "Dual Miracles Magic", 9350 => "Dynasty Blade", 9351 => "Dynasty Two Handed Sword", 9352 => "Dynasty Magic Sword", 9353 => "Dynasty Bow", 9354 => "Dynasty Dagger", 9355 => "Dynasty Spear", 9356 => "Dynasty Hammer", 9357 => "Dynasty Staff", 9358 => "Dynasty Fist", 9359 => "Dynasty Crusher", 9360 => "Dynasty Two Handed Staff", 9361 => "Dynasty Dual Blade", 9362 => "Dynasty Blade Focus", 9363 => "Dynasty Blade Health", 9364 => "Dynasty Blade Haste", 9365 => "Dynasty Two Handed Sword Focus", 9366 => "Dynasty Two Handed Sword Health", 9367 => "Dynasty Two Handed Sword Haste", 9368 => "Dynasty Magic Sword Acumen", 9369 => "Dynasty Magic Sword Mana Up", 9370 => "Dynasty Magic Sword MP Regeneration", 9371 => "Dynasty Bow Cheap Shot", 9372 => "Dynasty Bow Critical Slow", 9373 => "Dynasty Bow Focus", 9374 => "Dynasty Dagger Critical Damage", 9375 => "Dynasty Dagger HP Drain", 9376 => "Dynasty Dagger Haste", 9377 => "Dynasty Spear Health", 9378 => "Dynasty Spear Guidance", 9379 => "Dynasty Spear Haste", 9380 => "Dynasty Hammer HP Drain", 9381 => "Dynasty Hammer Health", 9382 => "Dynasty Hammer HP Regeneration", 9383 => "Dynasty Staff Acumen", 9384 => "Dynasty Staff Mana Up", 9385 => "Dynasty Staff MP Regeneration", 9386 => "Dynasty Fist Focus", 9387 => "Dynasty Fist Health", 9388 => "Dynasty Fist Critical Stun", 9389 => "Dynasty Crusher HP Regeneration", 9390 => "Dynasty Crusher Health", 9391 => "Dynasty Crusher HP Drain", 9392 => "Dynasty Two Handed Staff Empower", 9393 => "Dynasty Two Handed Staff MP Regeneration", 9394 => "Dynasty Two Handed Staff Acumen", 9664 => "Dual Book Magic", 9665 => "Dual Book Magic - MP Regeneration", 9666 => "Dual Book Magic - Mana Up", 9667 => "Dual Book Magic - Acumen", ]; $weaponIdsString = implode(',', $weaponIds); try { // Configure sua conexão PDO aqui $pdo = new PDO('mysql:host=SEUIP;dbname=NOMEDOBANCODEDADOS;charset=utf8mb4', 'root', 'SENHA'); $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $sql = " SELECT C.char_name, C.online, I.enchant, I.item_type FROM characters C INNER JOIN items I ON C.obj_Id = I.owner_id WHERE I.item_type IN ($weaponIdsString) AND LOWER(C.char_name) NOT IN ('jre', 'admin', 'gm') ORDER BY I.enchant DESC LIMIT :limit "; $stmt = $pdo->prepare($sql); $stmt->bindValue(':limit', $countTopPlayers, PDO::PARAM_INT); $stmt->execute(); $results = $stmt->fetchAll(PDO::FETCH_ASSOC); echo "<table border='1' cellpadding='5' cellspacing='0' style='margin: 0 auto; text-align: center;'>"; echo "<tr><th>Posição</th><th>Nome</th><th>Enchant</th><th>Item</th><th>Status</th></tr>"; $pos = 1; foreach ($results as $row) { $status = ($row['online'] == 1) ? "<span style='color:green'>On</span>" : "<span style='color:red'>Off</span>"; $enchant = "+" . intval($row['enchant']); $name = htmlspecialchars($row['char_name']); $itemType = intval($row['item_type']); $itemName = isset($itemNames[$itemType]) ? $itemNames[$itemType] : "Item desconhecido"; $itemName = htmlspecialchars($itemName); if ($pos == 1) { $color = "#FFD700"; // Ouro } elseif ($pos == 2) { $color = "#C0C0C0"; // Prata } elseif ($pos == 3) { $color = "#CD7F32"; // Bronze } else { $color = "#FFFFFF"; // Preto padrão } echo "<tr>"; echo "<td style='color: {$color}; font-weight: bold;'>{$pos}°</td>"; echo "<td style='color: {$color}; font-weight: bold;'>{$name}</td>"; echo "<td style='color: #90EE90; font-weight: bold;'>{$enchant}</td>"; echo "<td>{$itemName}</td>"; echo "<td>{$status}</td>"; echo "</tr>"; $pos++; } echo "</table>"; } catch (PDOException $e) { echo "Erro ao consultar o banco: " . $e->getMessage(); } ?> -
O homi é uma máquina!
-
Donate System Automatico (PIX e PAYPAL)
Tópico respondeu ao Dwbryel de RicardoJRE em Scripts, Sistemas e Paineis
Alguém ja adptou para lucera interlude? -
uma vps de 1gb e um nucleo roda?
-
SET CHRONICLES 4 PARTES Encontrei em um hd velinho meu.
-
Que contribuição senhores, parabéns meu amigo. você é brabo! @Denky Sei que você esta empenhado no projeto, mas quando puder faz um vídeo de instação, pois tem pessoas que nunca usaram uma vps linux.
-
icpnetworks VoteSystem ICPNetworks 2.7 - L2j e L2OFF
Tópico respondeu ao Ivan Pires de RicardoJRE em Sites e Sistemas ICP
então, aqui tem a coluna acesslevel, eu coloquei 1, 100, 7 e nada. A questão de char admin que é na xml, mas a account tem a opção. seria bom o proprio painel criar uma conta admin diferente do jogo.- 104 respostas
-
- votesystem
- vote reward
-
(and 2 more)
Tags:
-
icpnetworks VoteSystem ICPNetworks 2.7 - L2j e L2OFF
Tópico respondeu ao Ivan Pires de RicardoJRE em Sites e Sistemas ICP
Fala @Ivan Pires, eu intalei certinho, porém eu tento logar com a conta admin e diz que os dados estão incorretos. Uso Lucera3 interlude. edit*, a config do char admin aqui na lucera é feita na xml pelo id do char e não na tabela acc level.- 104 respostas
-
- votesystem
- vote reward
-
(and 2 more)
Tags:
-
Caminho: SERVIDOR\gameserver\config Arquivo: other.properties StartingMageItems = 8960;1;8961;1;8962;1;8963;1;3947;3000;6673,1000000;4037;1000000,3433;1 #AQUI OS ITENS QUE OS MAGOS VÃO NASCER StartingFighterItems = 8960;1;8961;1;8962;1;8963;1;1835;3000;6673,1000000;4037;1000000,3433;1 #AQUI OS ITENS QUE OS FIGHTS VÃO NASCER
-
UPDATER C# COM SISTEMA DE UPDATE EM FTP
Tópico respondeu ao caiosoliver de RicardoJRE em Scripts/Sistemas/Apps
obrigado mano, Tem alguma atualização no projeto? -
encontrei. [Interlude] Web c6 Russa para Portgues com Scripts *.* - Sites - L2JBrasil - A Maior e mais antiga Comunidade de Lineage 2 da América Latina
-
Boa tarde, procurei e não consegui encontrar um web site que é com estilo da tela de login do interlude, o site foi postado a muitos anos. acredito que antes de 2013, mas infelizmente não lembro o nome.
-
link off
-
wordpress Template Lineage 2 Town V1 para Wordpress
Tópico respondeu ao Kelvin de RicardoJRE em WordPress
instalei e não puxou aqui também -
link off
-
Boa noite, alguém pode me informa onde eu altero o tamanho do glow da arma com augument. OBS: sem augument ela está normal. Weapongrp: 0 9830 1 1 7 10 0 LineageWeapons.apprentices_spellbook_m00_wp LineageWeapons.apprentices_spellbook_m00_wp LineageWeaponsTex.apprentices_spellbook_t00_wp LineageWeaponsTex.apprentices_spellbook_t00_wp icon.weapon_apprentices_spellbook_i01 icon.weapon_apprentices_spellbook_i01 icon.weapon_apprentices_spellbook_i01 -1 2580 14 1 0 14 3 2 LineageWeapons.apprentices_spellbook_m00_wp LineageWeapons.apprentices_spellbook_m00_wp 2 LineageWeaponsTex.apprentices_spellbook_t00_wp LineageWeaponsTex.apprentices_spellbook_t00_wp 4 ItemSound.public_sword_shing_8 ItemSound.sword_great_4 ItemSound.sword_mid_9 ItemSound.public_sword_shing_4 ItemSound.itemdrop_book ItemSound.itemequip_book 10 385 129 8 5 8 0 0 0 0 245 0 2 2 1000 0 -1 0 LineageEffect.e_u092_h LineageEffect.e_u092_h 2.000000 2.000000 0.700000 0.500000 0.500000 0.500000 0.750000 0.750000 0.300000 0.300000 LineageWeapons.rangesample LineageWeapons.rangesample 0.800000 0.800000 0.800000 0.800000 0.800000 0.800000 -0.300000 2.800000 -0.200000 -0.300000 2.800000 -0.200000 4 4 -1 -1 icon.weapon_apprentices_spellbook_i01 icon.weapon_apprentices_spellbook_i01 icon.weapon_apprentices_spellbook_i01
-
teria ele e 5 partes?
-
resolvido, era problema no vps.
-
Bom dia, Meu servidor só loga no vps Em casa não parece que o servidor ta on. Meu loguin serve. #============================================================= # Loginserver #============================================================= # This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname ExternalHostname = 149.56.157.225 # This is transmitted to the client from the same network, so it has to be a local IP or resolvable hostname InternalHostname = 149.56.157.225 # Bind ip of the LoginServer, use * to bind on all available IPs LoginserverHostname = * LoginserverPort = 2106 # How many times you can provide an invalid account/pass before the IP gets banned LoginTryBeforeBan = 10 # Time you won't be able to login back again after LoginTryBeforeBan tries to login. Provide a value in seconds. Default 10min. (600) LoginBlockAfterBan = 600 # The address on which login will listen for GameServers, use * to bind on all available IPs LoginHostname = * # The port on which login will listen for GameServers LoginPort = 9014 # If set to true any GameServer can register on your login's free slots AcceptNewGameServer = False # If false, the licence (after the login) will not be shown # It is highly recomended for Account Security to leave this option as default (True) ShowLicence = True #============================================================= # Database informations #============================================================= URL = jdbc:mysql://localhost/l2jdb #URL = jdbc:hsqldb:hsql://localhost/acis #URL = jdbc:sqlserver://localhost/database=acis/user=sa/password= Login = root Password = MaximumDbConnections = 999999 # Usable values: "true" - "false", use this option to choose whether accounts will be created automatically or not. AutoCreateAccounts = True # The delay in minutes after which the login updates the gameservers IP's (useful when their ip is dynamic) IpUpdateTime = 15 #============================================================= # Security #============================================================= # Log all events from loginserver (account creation, failed/success login, etc) LogLoginController = True # Enforce GG Authorization from client # Login server will kick client if client bypassed GameGuard authentication ForceGGAuth = True # FloodProtection. time in ms EnableFloodProtection = True FastConnectionLimit = 15 NormalConnectionTime = 700 FastConnectionTime = 350 MaxConnectionPerIP = 50 #============================================================= # Test server, shoudnt be touched in live server #============================================================= Debug = False Developer = False PacketHandlerDebug = False CryptToken = True
-
Atualizações Recentes de Status
-
Boa noite meu amigo, tudo bem?· 1 resposta
Não achei onde responde direto no tópico que você postou sobre " Como Criar um Ícone Usando IA para o Seu Item Custom ", por isso estou mandado a msg direto.
Enfim, achei seu conteúdo muito show e tentei replicar, mas não tive sucesso na etapa 5. Não consigo abrir o arquivo utx que escolhi. Aparenta o seguinte erro.
Poderia me auxiliar por gentileza?