Ir para conteúdo

Developer Berg

Membro
  • Registro em

  • Última visita

Tudo que Developer Berg postou

  1. Queria que alguém me ensinasse a criptografar os arquivos .dat e spr para que não pudessem roubar minhas sprites e meu cliente Ex: 熶ڡ㰮垛詬䂿⋢栝︸ሎ뮥麮⏢ꍇ뮎贐쥟⡜樂 Isso é uma parte criptografada do client do PAdventures. Não tenho certeza se esse é o lugar adequado para postar isso, mas foi o local que eu considerava ser mais correto. rep+ pra quem tentar me ajudar nisso
  2. Poste A Tag Desse Script Pfv
  3. Alguém Me Ajuda Pfv, Meu Rme Para De Funcionar Quando Eu Tento Tirar Um Print Do Meu Mapa, Vou Deixar 2 Prints Para Vcs Verem Do Rep+ Quem Me Ajudar
  4. Editado Use Essa Script Para Quest Vá Em Data/Action/Quests E Crie Um Arquivo.lua Chamado " Queststm " E Cole Isso Dentro Em pos = {x=475, y=355, z=10} Coloque As Coordenadas Do Bau Em UID_DO_BAU = 12340 Vá No Seu RME E Coloque O Unique ID 12340 No Seu Bau Em ID_DO_PREMIO1 = 2235 E ID_DO_PREMIO2 = 9516 Coloque O ID Dos Premios Que Vc Quer Em if getPlayerLevel(cid) >= 250 then Coloque O Lvl Que As Pessoas Podem Pegar O Bau Em doPlayerAddItem(cid,9516,3) E doPlayerAddItem(cid,2159,100) Coloque O Id Dos Premios E A Quantidade Dos Premios Depois Vá Em Action.xml E Cole Essa Tang <action uniqueid="12340" event="script" value="quests/Queststm.lua"/> E Pronto
  5. Alguém Sabe Me Dizer Onde Posso Mudar Os Prêmios Das Quests Do Server Do Kpdo ? Esse Server Aqui http://www.tibiaking.com/forum/topic/47080-pokemon-kpdopokemon-kpdo-exaioros-by-cater/ ( Obs: Já Olhei Na Pasta Actions E N Achei Nada ) Do Rep+ Quem Me Ajudar
  6. + pode explicar como eu poderia deixar ele on ? pq sou novato em negocios de vps
  7. pois n sei se é vps kkk é esse aki http://www.lgvhost.com.br/cloud-jogos.html se eu colocar nele ?
  8. Se Eu Comprar Uma Vps ( Semi Dedicado ) E Eu Deixar O Server Rodando No Meu Pc Com O Ip Da Vps E Minha Net Cair O Server Também Cai ? Do Rep + Quem Me Ajudar
  9. Alguém Pfv Me Ensina A Colocar Itens Novos Para Vender No Vip Shop Pfv ? Estou Usando O Site Do Otpokemon V3.0. Agradeço Quem Me Ajudar Do Rep+ Quem Me Ajudar
  10. achei uma aki mais n sei se é nela vou te mandar <?php class shop { function connect() { $ots = POT::getInstance(); $ots->connect(POT::DB_MYSQL, connection()); return $ots->getDBHandle(); } function isInstalled() { require('config.php'); $con = mysql_connect($config['database']['host'], $config['database']['login'], $config['database']['password']); mysql_select_db($config['database']['database'],$con); if(mysql_query("SELECT * FROM shop_offer,shop_history")) return true; else return false; } function points($account) { $SQL = $this->connect(); $points = $SQL->query('SELECT premium_points FROM accounts WHERE name = "'.$account.'"')->fetch(); return $points['premium_points']; } function getPlayerAccount($name) { $SQL = $this->connect(); $player = $SQL->query('SELECT account_id FROM players WHERE name = "'.$name.'"')->fetch(); return $SQL->query('SELECT * from accounts WHERE id = '.$player['account_id'].''); } function AddPremium($name,$days) { $SQL = $this->connect(); $account = $this->getPlayerAccount($name)->fetch(); return $SQL->query('UPDATE accounts SET premdays = (premdays + '.$days.') WHERE name = "'.$account['name'].'"'); } function CharacterList($account) { $SQL = $this->connect(); $id = $SQL->query('SELECT id FROM accounts WHERE name = "'.$account.'"')->fetch(); return $SQL->query('SELECT * FROM players WHERE account_id = '.$id['id'].''); } function isOnline($name) { $SQL = $this->connect(); $player = $SQL->query('SELECT online FROM players WHERE name = "'.$name.'"')->fetch(); return $player['online']; } function isBanned($name) { $SQL = $this->connect(); $ID = $this->getPlayerAccount($name)->fetch(); return $SQL->query('SELECT * FROM bans WHERE value = '.$ID['id'].''); } function UnBan($name) { $SQL = $this->connect(); $ID = $this->getPlayerAccount($name)->fetch(); return $SQL->query('DELETE FROM bans WHERE value = '.$ID['id'].''); } function execute_file($file) { if (!file_exists($file)) { $this->last_error = "The file $file does not exist."; return false; } $str = file_get_contents($file); if (!$str) { $this->last_error = "Unable to read the contents of $file."; return false; } // split all the queries into an array $quote = ''; $line = ''; $sql = array(); $ignoreNextChar = ''; for ($i = 0; $i < strlen($str); $i++) { if ( !$ignoreNextChar ) { $char = substr($str, $i, 1); $line .= $char; if ($char == ';' && $quote == '') { $sql[] = $line; $line = ''; } else if ( $char == '\\' ) { // Escape char; ignore the next char in the string $ignoreNextChar = TRUE; } else if ($char == '"' || $char == "'" || $char == '`') { if ( $quote == '' ) // Start of a new quoted string; ends with same quote char $quote = $char; else if ( $char == $quote ) // Current char matches quote char; quoted string ends $quote = ''; } } else $ignoreNextChar = FALSE; } if ($quote != '') return false; foreach ($sql as $query) { if (!empty($query)) { $r = mysql_query($query); if (!$r) { $this->last_error = mysql_error(); return false; } } } return true; } function install() { $SQL = $this->connect(); if ($this->isInstalled()) return false; else return $this->execute_file("gifts/config/Shop.sql"); } } ?>
  11. ss estar em mysql
  12. Alguém Pfv Me Ensina A Colocar Itens Novos Para Vender No Vip Shop Pfv ? Estou Usando O Site Do Otpokemon V3.0 E Alguém Sabe Tirar O Erro Do Print Que Vou Deixar ? Do Rep + Quem Me Ajudar
  13. Estou Usando A Versão 3.0 Eu Tentei + N Entendi Direito :/ Ta Dando Esse Erro Aqui Quando Eu Coloco No Shop, E N Aparece Nem Um Item Pra Vender.
  14. Olá Estou Com Um Problema No Vip Shop Do Meu Site, Tipo Quando Eu Clico Na Opção Vip Shop No Site Simplesmente Não Faz Nada :/ é Como Se N Tivesse Vip Shop :/ Estou Usando O Modern Aac Site Do Otpokemon. Nele Já Tem A Pasta Do Vip Shop Por Isso Acho Que é Só Configurar Do Rep + Quem Me Ajudar
  15. Man Eu Já Fiz Isso Como Eu Falei No Server Ta 300 O Limite + No Site Do Server Consta Que O Limite É 16 Mesmo Assim Vlw Pela Ajuda
  16. Alguém Pode Me Ensinar A Aumentar O Limite De Player No Site ? Tipo Lá No Site Ta Aparecendo Que O Limite De Player é 16 + No Server Ta Limite De 300 Player E Eu Usei Outro Site E Nesse Outro Site O Limite Mudo Fico 100 :/ Em Fim Quem Me Ajudar Do Rep+
  17. Ok Vou Olhar Aqui Man Eu To Aki No Banco De Dados Do Phpmyadmin + N To Achando O Lugar Pra Editar A Cap Dos Characters Sample :/ Ta Ai Um Print Cara Consegui Ajeitar Vlws Era Em phpmyadmin mesmo Vlwsssssss
  18. ok Olha Ai accountManager = false namelockManager = true newPlayerChooseVoc = false newPlayerSpawnPosX = 1032 newPlayerSpawnPosY = 1026 newPlayerSpawnPosZ = 5 newPlayerTownId = 1 newPlayerLevel = 1 newPlayerMagicLevel = 0 generateAccountNumber = false redSkullLength = 30 * 24 * 60 * 60 blackSkullLength = 45 * 24 * 60 * 60 dailyFragsToRedSkull = 3 weeklyFragsToRedSkull = 5 monthlyFragsToRedSkull = 10 dailyFragsToBlackSkull = dailyFragsToRedSkull weeklyFragsToBlackSkull = weeklyFragsToRedSkull monthlyFragsToBlackSkull = monthlyFragsToRedSkull dailyFragsToBanishment = dailyFragsToRedSkull weeklyFragsToBanishment = weeklyFragsToRedSkull monthlyFragsToBanishment = monthlyFragsToRedSkull blackSkulledDeathHealth = 40 blackSkulledDeathMana = 0 useBlackSkull = true useFragHandler = true advancedFragList = false notationsToBan = 3 warningsToFinalBan = 4 warningsToDeletion = 5 banLength = 7 * 24 * 60 * 60 killsBanLength = 7 * 24 * 60 * 60 finalBanLength = 30 * 24 * 60 * 60 ipBanishmentLength = 1 * 24 * 60 * 60 broadcastBanishments = false maxViolationCommentSize = 200 violationNameReportActionType = 2 autoBanishUnknownBytes = false worldType = "pvp" protectionLevel = 50 pvpTileIgnoreLevelAndVocationProtection = true pzLocked = 10 * 1000 huntingDuration = 60 * 1000 criticalHitChance = 7 criticalHitMultiplier = 1 displayCriticalHitNotify = false removeWeaponAmmunition = true removeWeaponCharges = true removeRuneCharges = true whiteSkullTime = 15 * 60 * 1000 noDamageToSameLookfeet = true showHealingDamage = false showHealingDamageForMonsters = false fieldOwnershipDuration = 5 * 1000 stopAttackingAtExit = false oldConditionAccuracy = true loginProtectionPeriod = 10 * 1000 deathLostPercent = 10 stairhopDelay = 2 * 1000 pushCreatureDelay = 2 * 1000 deathContainerId = 1987 gainExperienceColor = 215 addManaSpentInPvPZone = true squareColor = 0 allowFightback = true worldId = 0 ip = "25.174.16.29" bindOnlyConfiguredIpAddress = false loginPort = 7171 gamePort = 7172 adminPort = 9179 statusPort = 7171 loginTries = 10 retryTimeout = 5 * 1000 loginTimeout = 60 * 1000 maxPlayers = 400 motd = "Welcome To Universe Pokemon!" displayOnOrOffAtCharlist = false onePlayerOnlinePerAccount = false allowClones = false serverName = "Universe Pokemon" loginMessage = "Welcome to Universe Pokemon server!" statusTimeout = 5 * 60 * 1000 replaceKickOnLogin = true forceSlowConnectionsToDisconnect = false loginOnlyWithLoginServer = true premiumPlayerSkipWaitList = true sqlType = "mysql" sqlHost = "localhost" sqlPort = 3306 sqlUser = "root" sqlPass = "" sqlDatabase = "forgottenserver" sqlFile = "forgottenserver.s3db" sqlKeepAlive = 0 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "sha1" deathListEnabled = true deathListRequiredTime = 1 * 60 * 1000 deathAssistCount = 19 maxDeathRecords = 5 ingameGuildManagement = true levelToFormGuild = 40 premiumDaysToFormGuild = 0 guildNameMinLength = 2 guildNameMaxLength = 25 highscoreDisplayPlayers = 15 updateHighscoresAfterMinutes = 60 buyableAndSellableHouses = true houseNeedPremium = true bedsRequirePremium = true levelToBuyHouse = 130 housesPerAccount = 0 houseRentAsPrice = false housePriceAsRent = false housePriceEachSquare = 2975 houseRentPeriod = "never" houseCleanOld = 0 guildHalls = false timeBetweenActions = 950 timeBetweenExActions = 1000 hotkeyAimbotEnabled = true mapName = "KPDO" mapAuthor = "Kpdo" randomizeTiles = true storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "-1" defaultPriority = "high" niceLevel = 10 coresUsed = "-1" optimizeDatabaseAtStartup = false removePremiumOnInit = true confirmOutdatedVersion = false formulaLevel = 5.0 formulaMagic = 1.0 bufferMutedOnSpellFailure = false spellNameInsteadOfWords = false emoteSpells = false allowChangeOutfit = true allowChangeColors = true allowChangeAddons = true disableOutfitsForPrivilegedPlayers = false addonsOnlyPremium = true dataDirectory = "data/" bankSystem = true displaySkillLevelOnAdvance = true separateViplistPerCharacter = false maximumDoorLevel = 500 maxMessageBuffer = 4 saveGlobalStorage = true useHouseDataStorage = false storePlayerDirection = false checkCorpseOwner = false monsterLootMessage = 3 monsterLootMessageType = 22 ghostModeInvisibleEffect = false ghostModeSpellEffects = false idleWarningTime = 3000 idleKickTime = 10000 expireReportsAfterReads = 1 playerQueryDeepness = 2 maxItemsPerPZTile = 0 maxItemsPerHouseTile = 5 freePremium = false premiumForPromotion = true blessingOnlyPremium = false blessingReductionBase = 30 blessingReductionDecreament = 5 eachBlessReduction = 8 experienceStages = true rateExperience = 3 rateExperienceFromPlayers = 2 rateSkill = 2 rateMagic = 1 rateLoot = 1 rateSpawn = 1 rateMonsterHealth = 1.0 rateMonsterMana = 1.0 rateMonsterAttack = 1.0 rateMonsterDefense = 1.0 minLevelThresholdForKilledPlayer = 0.9 maxLevelThresholdForKilledPlayer = 1.1 rateStaminaLoss = 1 rateStaminaGain = 3 rateStaminaThresholdGain = 12 staminaRatingLimitTop = 41 * 60 staminaRatingLimitBottom = 14 * 60 rateStaminaAboveNormal = 1.0 rateStaminaUnderNormal = 1.0 staminaThresholdOnlyPremium = true experienceShareRadiusX = 30 experienceShareRadiusY = 30 experienceShareRadiusZ = 1 experienceShareLevelDifference = 2 / 3 extraPartyExperienceLimit = 20 extraPartyExperiencePercent = 20 experienceShareActivity = 2 * 60 * 1000 globalSaveEnabled = false globalSaveHour = 1 shutdownAtGlobalSave = false cleanMapAtGlobalSave = false deSpawnRange = 2 deSpawnRadius = 25 maxPlayerSummons = 1 teleportAllSummons = false teleportPlayerSummons = false ownerName = "Renan" ownerEmail = "" url = "" location = "Brazil" displayGamemastersWithOnlineCommand = false adminLogsEnabled = false displayPlayersLogging = true prefixChannelLogs = "" runFile = "" outLogName = "" errorLogName = "" truncateLogsOnStartup = false tradesave = false dumpsave = false promptExceptionTracerErrorBox = false
  19. Explique Melhor Pfv Como Eu Faço Isso ? Explique Melhor Pfv Como Eu Faço Isso ?
  20. Gente Alguém Poderia Me Ajudar, Eu Editei O Server Do Kpdo E Criei O Site Para Ele + Quando Eu Crio Uma Acc E Logo Os Itens ( Bike, Pokebag, Roper, Order, Pokedex, Pokeeve Entre Outros ) Vem Tudo No Chão :/ Eles Deveriam Ta Nos Slots E Tals + Eles Estão Vindo No Chão, Em Fim Alguém Poderia Me Ajudar Pfv Do Rep+ Quem Me Ajudar
  21. ok vou tentar aki ss pego agr ta falando que o ip do mundo que eu to usando ta errado :/ Deixa Pra Lá Conseguir Resolver Agr To Com Problemas De First Items :/ Quando Eu Crio Um Novo Char As Coisas BAG, BIKE, POKEDEX, ROPER, POKEEVO Entre Outros N Vem No Slot Eles Vem No Chão :/ Sabe Arrumar ?
  22. Hmm ata + aki já ta tudo certinho '-'

Informação Importante

Confirmação de Termo