Ir para conteúdo

venohost

Membro
  • Registro em

  • Última visita

  1. KindraMore reagiu a uma resposta no tópico: (Resolvido)Criação de colunas mysql
  2. Myalitth reagiu a uma resposta no tópico: (Resolvido)Criação de colunas mysql
  3. NewCore reagiu a uma resposta no tópico: (Resolvido)Criação de colunas mysql
  4. Olá vou tentar lhe ajudar: zaypay_payment CREATE TABLE `zaypay_payment` ( `payID` bigint(30) NOT NULL, `account_id` int(20) NOT NULL, `status` varchar(255) NOT NULL, PRIMARY KEY (`payID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; z_bug_tracker CREATE TABLE `z_bug_tracker` ( `account` varchar(255) NOT NULL, `type` int(11) NOT NULL, `status` int(11) NOT NULL, `text` text NOT NULL, `id` int(11) NOT NULL, `subject` varchar(255) NOT NULL, `reply` int(11) NOT NULL, `who` int(11) NOT NULL, `uid` int(11) NOT NULL auto_increment, `tag` int(11) NOT NULL, PRIMARY KEY (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; z_changelog CREATE TABLE `z_changelog` ( `id` int(11) NOT NULL auto_increment, `type` varchar(255) NOT NULL default '', `where` varchar(255) NOT NULL default '', `date` int(11) NOT NULL default '0', `description` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; z_forum CREATE TABLE `z_forum` ( `id` int(11) NOT NULL auto_increment, `sticky` tinyint(1) NOT NULL default '0', `closed` tinyint(1) NOT NULL default '0', `first_post` int(11) NOT NULL default '0', `last_post` int(11) NOT NULL default '0', `section` int(3) NOT NULL default '0', `replies` int(20) NOT NULL default '0', `views` int(20) NOT NULL default '0', `author_aid` int(20) NOT NULL default '0', `author_guid` int(20) NOT NULL default '0', `post_text` text NOT NULL, `post_topic` varchar(255) NOT NULL, `post_smile` tinyint(1) NOT NULL default '0', `post_date` int(20) NOT NULL default '0', `last_edit_aid` int(20) NOT NULL default '0', `edit_date` int(20) NOT NULL default '0', `post_ip` varchar(32) NOT NULL default '0.0.0.0', `icon_id` tinyint(4) NOT NULL default '1', PRIMARY KEY (`id`), KEY `section` (`section`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; z_monsters CREATE TABLE `z_monsters` ( `hide_creature` tinyint(1) NOT NULL default '0', `name` varchar(255) NOT NULL, `mana` int(11) NOT NULL, `exp` int(11) NOT NULL, `health` int(11) NOT NULL, `speed_lvl` int(11) NOT NULL default '1', `use_haste` tinyint(1) NOT NULL, `voices` text NOT NULL, `immunities` varchar(255) NOT NULL, `summonable` tinyint(1) NOT NULL, `convinceable` tinyint(1) NOT NULL, `race` varchar(255) NOT NULL, `gfx_name` varchar(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; z_newtickers CREATE TABLE `z_newstickers` ( `date` int(11) NOT NULL default '1', `author` int(11) NOT NULL, `image_id` int(3) NOT NULL default '0', `text` text NOT NULL, `hide_ticker` tinyint(1) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; z_ots_comunication CREATE TABLE `z_ots_comunication` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `action` varchar(255) NOT NULL, `param1` varchar(255) NOT NULL, `param2` varchar(255) NOT NULL, `param3` varchar(255) NOT NULL, `param4` varchar(255) NOT NULL, `param5` varchar(255) NOT NULL, `param6` varchar(255) NOT NULL, `param7` varchar(255) NOT NULL, `delete_it` int(2) NOT NULL default '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=26 ; z_polls CREATE TABLE `z_polls` ( `id` int(11) NOT NULL auto_increment, `question` varchar(255) NOT NULL, `end` int(11) NOT NULL, `start` int(11) NOT NULL, `answers` int(11) NOT NULL, `votes_all` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; z_polls_answers CREATE TABLE `z_polls_answers` ( `poll_id` int(11) NOT NULL, `answer_id` int(11) NOT NULL, `answer` varchar(255) NOT NULL, `votes` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; z_shop_history_item CREATE TABLE `z_shop_history_item` ( `id` int(11) NOT NULL auto_increment, `to_name` varchar(255) NOT NULL default '0', `to_account` int(11) NOT NULL default '0', `from_nick` varchar(255) NOT NULL, `from_account` int(11) NOT NULL default '0', `price` int(11) NOT NULL default '0', `offer_id` int(11) NOT NULL default '0', `trans_state` varchar(255) NOT NULL, `trans_start` int(11) NOT NULL default '0', `trans_real` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=26 ; z_shop_history_pacc CREATE TABLE `z_shop_history_pacc` ( `id` int(11) NOT NULL auto_increment, `to_name` varchar(255) NOT NULL default '0', `to_account` int(11) NOT NULL default '0', `from_nick` varchar(255) NOT NULL, `from_account` int(11) NOT NULL default '0', `price` int(11) NOT NULL default '0', `pacc_days` int(11) NOT NULL default '0', `trans_state` varchar(255) NOT NULL, `trans_start` int(11) NOT NULL default '0', `trans_real` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; z_shop_offer CREATE TABLE `z_shop_offer` ( `id` int(11) NOT NULL auto_increment, `points` int(11) NOT NULL default '0', `itemid1` int(11) NOT NULL default '0', `count1` int(11) NOT NULL default '0', `itemid2` int(11) NOT NULL default '0', `count2` int(11) NOT NULL default '0', `offer_type` varchar(255) default NULL, `offer_description` text NOT NULL, `offer_name` varchar(255) NOT NULL, `pid` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12668 ; z_spells CREATE TABLE `z_spells` ( `name` varchar(255) NOT NULL, `spell` varchar(255) NOT NULL, `spell_type` varchar(255) NOT NULL, `mana` int(11) NOT NULL default '0', `lvl` int(11) NOT NULL default '0', `mlvl` int(11) NOT NULL default '0', `soul` int(11) NOT NULL default '0', `pacc` varchar(255) NOT NULL, `vocations` varchar(255) NOT NULL, `conj_count` int(11) NOT NULL default '0', `hide_spell` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; guild_kills CREATE TABLE `guild_kills` ( `id` int(11) NOT NULL auto_increment, `guild_id` int(11) NOT NULL, `war_id` int(11) NOT NULL, `death_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `guild_kills_ibfk_1` (`war_id`), KEY `guild_kills_ibfk_2` (`death_id`), KEY `guild_kills_ibfk_3` (`guild_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; guild_ranks CREATE TABLE `guild_ranks` ( `id` int(11) NOT NULL auto_increment, `guild_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `level` int(11) NOT NULL COMMENT '1 - leader, 2 - vice leader, 3 - member', PRIMARY KEY (`id`), KEY `guild_id` (`guild_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;
  5. Pagar online é fácil só gerar o boleto e pagar na Casa Lotérica ou online pelo seu banco.
  6. Olá tenho vps de 16,99 1gb com Anti DDoS mas como o amigo de cima falou melhor seria um cloud de 2gb.
  7. rudsonedu reagiu a uma resposta no tópico: AJUDAAA URGENTEEE ! EDITANDO MAPA ...
  8. Vai ter que editar tudo ou você pode mudar nas sources para aceitar o itens.otb do que estava no map editor: http://www.tibiaking.com/forum/topic/8856-fazendo-que-o-servidor-aceite-qualquer-itemsotb/
  9. rudsonedu reagiu a uma resposta no tópico: AJUDAAA URGENTEEE ! EDITANDO MAPA ...
  10. Para não dar erros tem que fazer ao contrário pegar o itens.otb do seu otserver e botar na pasta 860 do seu mapeditor ai o map editor vai mostrar os mesmos ids que está no seu server.
  11. venohost postou uma resposta no tópico em Suporte Tibia OTServer
    Olá temos ts3 com 30 slots por 15 reias ou seja 50 centavos o slot, para mais informações veja http://venohost.com/teamspeak.php
  12. Pode ser o script de contador de kill e death ou algum script que execute algo quando mata um jogador.
  13. Veja se esse funciona não testei. function onUse(cid, item, frompos, item2, topos) local pausa = 1800000 -- (1000 = 1 segundos) Tempo que o script vai durar local texto = 'You receive double the experience to kill a monster for 30 minutes.' -- Texto que irá receber ao usar a potion. textofinal = 'Its just minutes.' -- Texto que irá receber quando o efeito da potion acabar. local exp = 2 -- O quanto que você quer que dobre sua experiencia, por exemplo 2 é 2x as rates do seu server. local drop = 2 -- double loot, por exemplo 2 é 2x o drop loot do seu servidor. expfinal = 1 --Não mude, isso é para a experiencia voltar ao normal. dropfinal = 1 -- Não mude, isso é para o drop voltar ao normal. if item.itemid == 7443 then doRemoveItem(item.uid,1) doPlayerSetExperienceRate(cid,exp) doCreatureSetDropLoot(cid, drop) doPlayerAddStamina(cid,1200000) doSendMagicEffect(frompos,13) doPlayerSendTextMessage(cid,22,texto) addEvent(potion,pausa,cid) end end end end function potion(pos, cid) doPlayerSetExperienceRate(pos,expfinal) doCreatureSetDropLoot(cid, dropfinal) doPlayerSendTextMessage(pos,22,textofinal) end
  14. vitorhugo2012xd reagiu a uma resposta no tópico: [AJUDA] Invasão
  15. Leoo Zanin reagiu a uma resposta no tópico: [AJUDA] Invasão
  16. Leoo Zanin reagiu a uma resposta no tópico: [AJUDA] Invasão
  17. venohost postou uma resposta no tópico em Suporte Tibia OTServer
    Quando seu apache recebe um ataque ele desativa sozinho.
  18. venohost postou uma resposta no tópico em Suporte Tibia OTServer
    Contrate uma proteção ou um servidor com uma proteção.
  19. venohost postou uma resposta no tópico em Suporte Tibia OTServer
    Axo que só tirar os previlegios do page access 2. Acho que o cara está te atacando agora.
  20. venohost postou uma resposta no tópico em Suporte Tibia OTServer
    Foi assim que ele fez essa bagunça toda e vai nos samples e account manager na sua data base e bota deleted = 1 para ele não poder post no forum
  21. venohost postou uma resposta no tópico em Suporte Tibia OTServer
    Amigo o cara tirou o preço dos itens e deve ter adicionado pontos para todos, se já não fez antes melhor fazer 1 reset.
  22. venohost postou uma resposta no tópico em Suporte Tibia OTServer
    Amigo você colocou os samples senha 1/1 e com e com poder de adm por isso podem editar seu site.
  23. vá no config.php do seu site e muda para sua town que é 1: $config['site']['newchar_towns'][0] = array(1);

Informação Importante

Confirmação de Termo