Ir para conteúdo
Banner com Efeitos

Sociopata

Membro
  • Registro em

  • Última visita

Tudo que Sociopata postou

  1. execute isso no phpmyadmin CREATE TABLE `bans` ( `id` INT UNSIGNED NOT NULL auto_increment, `type` TINYINT(1) NOT NULL COMMENT '1 - ip banishment, 2 - namelock, 3 - account banishment, 4 - notation, 5 - deletion', `value` INT UNSIGNED NOT NULL COMMENT 'ip address (integer), player guid or account number', `param` INT UNSIGNED NOT NULL DEFAULT 4294967295 COMMENT 'used only for ip banishment mask (integer)', `active` TINYINT(1) NOT NULL DEFAULT TRUE, `expires` INT NOT NULL, `added` INT UNSIGNED NOT NULL, `admin_id` INT UNSIGNED NOT NULL DEFAULT 0, `comment` TEXT NOT NULL, `reason` INT UNSIGNED NOT NULL DEFAULT 0, `action` INT UNSIGNED NOT NULL DEFAULT 0, `statement` VARCHAR(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `type` (`type`, `value`), KEY `active` (`active`) ) ENGINE = InnoDB;
  2. Simple e eficiente vlw pelo conteudo
  3. 1- sim 2- um de 1GB ou 1,5GB (da lgv host ou lkm hosting) 3- com as memorias acima ate 80 chutando 4- a empresa lhe informara melhor sobre isso mas basta vc usar a conexão de area de trabalho remota
  4. Sociopata postou uma resposta no tópico em Playground (Off-topic)
  5. // Guilds option $config['site']['guild_need_level'] = 100; $config['site']['guild_need_pacc'] = 1; $config['site']['guild_image_size_kb'] = 50; $config['site']['guild_description_chars_limit'] = 1000; $config['site']['guild_description_lines_limit'] = 6; $config['site']['guild_motd_chars_limit'] = 150; // Show statistics Guild $config['site']['showStat'] = 0; $config['site']['showAdvenceStat'] = 0; vo sai aki fico devendo mas por hora tenta ae
  6. acho q é so tirar da linha do login.lua nao é certeza irei vericar melhor amnha pos ja estou de saida
  7. http://www.4shared.com/file/Fo04CINq/guilds.html eu dei uma mexida basica
  8. retire o comando !createguild do arquivo takactions.xml // Guilds option $config['site']['guild_need_level'] = 150; $config['site']['guild_need_pacc'] = 1; $config['site']['guild_image_size_kb'] = 50; $config['site']['guild_description_chars_limit'] = 1000; $config['site']['guild_description_lines_limit'] = 6; $config['site']['guild_motd_chars_limit'] = 150; // Show statistics Guild $config['site']['showStat'] = 0; $config['site']['showAdvenceStat'] = 0; o outro erro so vendo o guilds.php
  9. ai so basta vc fazer o banner
  10. vai em npc > lib > npcsystem > modules.lua troque function StdModule.travel(cid, message, keywords, parameters, node) local npcHandler = parameters.npcHandler if(npcHandler == nil) then error('StdModule.travel called without any npcHandler instance.') end if(cid ~= npcHandler.focus) then return false end if(isPlayerPremiumCallback == nil or isPlayerPremiumCallback(cid) == true or parameters.premium == false) then if(parameters.level ~= nil and getPlayerLevel(cid) < parameters.level) then npcHandler:say('You must reach level ' .. parameters.level .. ' before I can let you go there.') elseif(doPlayerRemoveMoney(cid, parameters.cost) ~= TRUE) then npcHandler:say('You do not have enough money!') else doTeleportThing(cid, parameters.destination) doSendMagicEffect(parameters.destination, 10) end else npcHandler:say('I can only allow premium players to travel with me.') end npcHandler:resetNpc() return true end por function StdModule.travel(cid, message, keywords, parameters, node) local npcHandler = parameters.npcHandler if(npcHandler == nil) then error('StdModule.travel called without any npcHandler instance.') end if(cid ~= npcHandler.focus) then return false end if(isPlayerPremiumCallback == nil or isPlayerPremiumCallback(cid) == true or parameters.premium == false) then if(parameters.level ~= nil and getPlayerLevel(cid) < parameters.level) then npcHandler:say('You must reach level ' .. parameters.level .. ' before I can let you go there.') elseif(doPlayerRemoveMoney(cid, parameters.cost) ~= TRUE) then npcHandler:say('You do not have enough money!') elseif (parameters.vip ~= nil and getPlayerStorageValue(cid, 29000) - os.time() <= 0) then npcHandler:say('I can only allow vip players to travel with me!') else doTeleportThing(cid, parameters.destination) doSendMagicEffect(parameters.destination, 10) end else npcHandler:say('I can only allow premium players to travel with me.') end npcHandler:resetNpc() return true end ai você pode usar o parâmetro igual no premium premium = true -- para só premium usar vip = true -- para só vip usar e tbm colcoa o strorage do su sistema vip no script Credito:Vodkart
  11. para tirar o vip do nome ta no topico q postei acime fera se nao conseguir posta aki, e sim o sitema de vip medal se adicionado certo é pra funcionar
  12. Sociopata postou uma resposta no tópico em Playground (Off-topic)
  13. se a pasta com as imagens estiver certo add esse code em layout.php <div id="ThemeboxesColumn"> <div id="RightArtwork"> <img src="images/monsters/piratebuccaneer.gif" alt="Monster of the Week" name="Monster" id="Monster" onClick="window.location = '?subtopic=creatures&amp;creature=pirate buccaneer';" /> <img id="PedestalAndOnline" src="<?PHP echo $layout_name; ?>/images/header/pedestal-and-online.gif" alt="Monster Pedestal and Players Online Box"/> <?PHP if(count($config['site']['worlds']) > 1) $whoisonlineworld = '?subtopic=whoisonline'; else $whoisonlineworld = '?subtopic=whoisonline&world=0'; ?> <div id="PlayersOnline" onClick="window.location='<?PHP echo $whoisonlineworld; ?>'">
  14. tudo normal aki so falta coloca a imagem q mostra quantos players tem online
  15. aoaga o q tem la na parte de fly e add esse elseif skill == "fly" then local pokemon = flys[getPokemonName(getCreatureSummons(cid)[1])] doPlayerSendTextMessage(cid, 27, "Type \"up\" or \"h1\" to fly higher and \"down\" or \"h2\" to fly lower.") doChangeSpeed(cid, -getCreatureSpeed(cid)) local speed = 500 + PlayerSpeed/5 + getSpeed(sid) * 6 * speedRate doChangeSpeed(cid, speed) setPlayerStorageValue(cid, 54844, speed) doSetCreatureOutfit(cid, {lookType = pokemon[1] + 351}, -1) doItemSetAttribute(getPlayerSlotItem(cid, 8).uid, "hp", getCreatureHealth(getCreatureSummons(cid)[1]) / getCreatureMaxHealth(getCreatureSummons(cid)[1])) doRemoveCreature(getCreatureSummons(cid)[1]) setPlayerStorageValue(cid, 17000, 1) if not isPremium(cid) then doPlayerSendCancel(cid, "Only premium members are allowed to fly.") return true end
  16. data/lib abre o arquivo order.lua procure elseif skill == "fly" then e add isso pra ve se da certo (resomendo fazer backup do arquivo) if not isPremium(cid) then doPlayerSendCancel(cid, "Only premium members are allowed to fly.") return true end
  17. muda em layout e outras coisa vc mes add e pode muda con config dependendo do q vc quer fazer
  18. versão do xammp?aconselho usar a 1.7.3 e seguir o tuto abaixo 1º passo depois que instalou o Xampp entre no phpmyadmin do xampp Criar novo Banco de Dados com o nome que preferir de sua escolha carregue o arquivo mysql que geralmente vem com seu servidor de poketibia depois que carregar pegue o arquivo do web site poketibia 1.0 extrair dentro da pasta htdocs dentro do Xampp pronto o resto agora e facil. 2º passo va no navegador e coloque http://localhost automaticmente ele vai pra pagina de instalação do site pronto instação completa vamus configurar o restante abre o config.lua de dentro da pasta do web site poketibia 1.0 altere essa linha pois e a coordenada onde o char vai nascer obs: o Web site Poketibia 1.0 so suporta ser a configuração do config.lua do seu servidor de poketibia tiver em versão criptografada Sha1 então altere para Sha1 e mysql alte tambem remova o as linhas do config.lua do seu servidor que contenha "--" na frente do nome pode remover não vai aver neum problema na remoção não esqueça de desativar o acc manager do config lua tb pois vai bugar os char e não vão poder entra no servidor
  19. é so muda no config.lua
  20. eu sei disso so estou dizendo da proxima vez colocar elas grandes já
  21. Obrigado pela contribuição, as imagens poderiam ter sido melhor postadas neh? Enfim Reputado!!!

Informação Importante

Confirmação de Termo