Ir para conteúdo

henriqerocha

Membro
  • Registro em

  • Última visita

Tudo que henriqerocha postou

  1. henriqerocha postou uma resposta no tópico em Suporte Tibia OTServer
    Galera, estou prestes a adquirir um vps em LINUX, e ja procurei muitos tutoriais e tal... mas não sei como funciona essas sources, eu tenho que ter minhas próprias, ou posso pegar de outro server, tipo baixei umas sources trunk 3884, e pelo o que eu li, ela é compatível com o TFS 0.4. Mas e depois pra essas sources funcionarem no meu ot? tenho que copiar a pasta do meu ot pra dentro dessas sources? ALGUÉM PODE ME ESCLARECER? REP+ AI PRA QUEM AJUDAR
  2. Quando chegar em casa vou testar e respondo aqui. VLW! REP+
  3. No caso minha cidade é legendary island, coloquei as coordenas tudo certo, mas nem aparece a opção no captain
  4. Galera bom dia! Queria um ajuda de vocês, eu criei uma cidade vip no rme, mas não sei como adicionar para que o captain do meu barco vip leve até a cidade. Me ajudem por favor REP+ PRA QUEM AJUDAR! Npc do barco vip Jack fate.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local Topic = {} -- OTServ event handling functions start function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end -- OTServ event handling functions end function greetCallback(cid) Topic[cid] = 1 return true end function creatureSayCallback(cid, type, msg) if not npcHandler:isFocused(cid) then return false elseif msgcontains(msg, 'yalsadasdahar') then npcHandler:say("Do you seek a passage to Yalahar for " .. (getConfigInfo("freeTravel") and "free?" or "275 gold?"), cid) Topic[cid] = 1 elseif Topic[cid] == 1 and msgcontains(msg, 'yes') then local storage = 88775 if doPlayerRemoveMoney(cid, 275) == true then if getPlayerStorageValue(cid, storage) == 1 then npcHandler:say('And, here we go!', cid) npcHandler:releaseFocus(cid) doSendMagicEffect(getThingPos(cid), CONST_ME_TELEPORT) local yalahar = {x = 32816, y = 31272, z = 6} doTeleportThing(cid, yalahar) doSendMagicEffect(yalahar, CONST_ME_TELEPORT) Topic[cid] = 0 else npcHandler:say('You have not helped Wyrdin! Come back when you have done so.', cid) Topic[cid] = 0 end else npcHandler:say('You do not have enough money.', cid) Topic[cid] = 0 end end return true end local travelNode = keywordHandler:addKeyword({'ethno'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Do you seek a passage to Ethno for 0 gold?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = true, level = 0, cost = 0, destination = {x=32048, y=31974, z=6} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) local travelNode = keywordHandler:addKeyword({'Legendary island'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Quer viajar para a Lendaria ilha sagrada for 0 gold?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = true, level = 0, cost = 0, destination = {x=31505, y=31627, z=6} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) local travelNode = keywordHandler:addKeyword({'gengia'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Do you seek a passage to Gengia for 0 gold?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = true, level = 0, cost = 0, destination = {x=32071, y=32182, z=6} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) local travelNode = keywordHandler:addKeyword({'transilvania island'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Quer Viajar para terra dos vampiros for 0 gold?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = true, level = 0, cost = 0, destination = {x=31092, y=32531, z=6} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) local travelNode = keywordHandler:addKeyword({'dfdf'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Do you seek a passage to Ankrahmun for 90 gold?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 90, destination = {x=33092, y=32883, z=6} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) local travelNode = keywordHandler:addKeyword({'masas'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Do you seek a passage to Darashia for 200 gold?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 200, destination = {x=33289, y=32480, z=6} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) local travelNode = keywordHandler:addKeyword({'thais'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Do you seek a passage to Thais for 180 gold?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 180, destination = {x=32310, y=32210, z=6} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) local travelNode = keywordHandler:addKeyword({'gorsdasdoma'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Ugh. You really want to go back to Goroma? I\'ll surely have to repair my ship afterwards, so I have to charge 500 gold pieces. Okay?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 500, destination = {x=32161, y=32558, z=6} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) keywordHandler:addKeyword({'sail'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Para onde você quer ir? Para Gengia, Ethno, Transilvania island ou Legendary island'}) keywordHandler:addKeyword({'job'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'I\'m the captain of this sailing ship.'}) keywordHandler:addKeyword({'captain'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'I\'m the captain of this sailing ship.'}) npcHandler:setCallback(CALLBACK_GREET, greetCallback) npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new()) Jack fate.xml <?xml version="1.0" encoding="UTF-8"?> <npc name="Jack Fate" script="data/npc/scripts/Jack Fate.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="129" head="19" body="69" legs="107" feet="50" addons="0"/> <voices> <voice text="Passages to Ethno,Gengia,Transilvania,legendary island." interval2="100" margin="1" yell="no"/> </voices> <parameters> <parameter key="message_farewell" value="Good bye. Recommend us if you were satisfied with our service." /> <parameter key="message_walkaway" value="Good bye. Recommend us if you were satisfied with our service." /> <parameter key="module_keywords" value="1" /> <parameter key="keywords" value="name;" /> <parameter key="keyword_reply1" value="My name is Jack Fate from the Royal Tibia Line." /> <parameter key="message_greet" value="Welcome on board, |PLAYERNAME|. Where may I sail you today?"/> </parameters> </npc>
  5. henriqerocha postou uma resposta no tópico em Suporte Tibia OTServer
    Gravar.php <?php header("Content-Type: text/html; charset=ISO-8859-1",true); $nome = strip_tags(trim($_POST[nome])); $email = strip_tags(trim($_POST[email])); $titulo = strip_tags(trim($_POST[titulo])); $vl = strip_tags(trim($_POST[vl])); $hr = strip_tags(trim($_POST[hr])); $mensagem = strip_tags(trim($_POST[mensagem])); { require('phpmailer/class.phpmailer.php'); $mail = new PHPMailer(); $mail->IsSMTP(); $mail->SMTPAuth = true; $mail->Port = '465'; /*/ Do not change without knowing what it is /*/ $mail->Host = 'smtp.gmail.com'; $mail->Username = '[email protected]'; $mail->Password = 'MINHASENHA'; $mail->SetFrom('[email protected]', 'Conta '.$titulo.' fez pagamento'); $mail->AddAddress('[email protected]', 'Confirmação NOME DO OT'); $mail->Subject = 'Confirmação - '.$titulo; $body = " <font face='verdana, arial'> <strong>Character : </strong>{$nome} <br /> <strong>E-mail : </strong>{$email} <br /> <strong>Account : </strong>{$titulo} <br /> <strong>Hora da Doação : </strong>{$hr} <br /> <strong>Valor Doado : </strong>{$vl} <br /> <strong>Detalhes Do Comprovante:<br /></strong>{$mensagem} <br /> </font> "; $mail->MsgHTML($body); if($mail->Send()) $msg = ' <SCRIPT LANGUAGE="JavaScript"> <!-- window.alert("Confirmation sent successfully !\n\n Wait 24 hours for them to drop their points in your account"); location.href=\'index.php?subtopic=latestnews\'; // --> </SCRIPT> '; else $msg = '<SCRIPT LANGUAGE="JavaScript"> <!-- window.alert("Your message was not sent, try again") // --> </SCRIPT>'; }; ?> codigo.php <?php header("Content-Type: text/html; charset=ISO-8859-1",true); /*/by Victor Fasano Raful /*/ #Credits may cause the deleted file not working if(isset($_POST["acao"]) && $_POST["acao"] == "enviar") {require ("gravar.php");} if(isset($msg)) echo "<div id=\"msg\">$msg</div>"; if($logged) { $main_content .= ' Nossa ferramenta de confirmação de pagamento somente é válida para quem efetuou o pagamento verdadeiro, caso <b>não</b> tenha efetuado nenhum tipo de transação e esta usando nossas ferramentas para uso indevido como mandar <b>"recadinhos"</b> o jogador poderá ser <b>punido</b> em 5 dias corridos.<br /><br /> <div class="TableContainer"> <div class="CaptionContainer"> <div class="CaptionInnerContainer"> <span class="CaptionEdgeLeftTop" style="background-image: url(layouts/tibiacom/images/content/box-frame-edge.gif);"> </span> <span class="CaptionEdgeRightTop" style="background-image: url(layouts/tibiacom/images/content/box-frame-edge.gif);"> </span> <span class="CaptionBorderTop" style="background-image: url(layouts/tibiacom/images/content/table-headline-border.gif);"> </span> <span class="CaptionVerticalLeft" style="background-image: url(layouts/tibiacom/images/content/box-frame-vertical.gif);"> </span> <div class="Text">Confirmação de Pagamento</div> <span class="CaptionVerticalRight" style="background-image: url(layouts/tibiacom/images/content/box-frame-vertical.gif);"> </span> <span class="CaptionBorderBottom" style="background-image: url(layouts/tibiacom/images/content/table-headline-border.gif);"> </span> <span class="CaptionEdgeLeftBottom" style="background-image: url(layouts/tibiacom/images/content/box-frame-edge.gif);"> </span> <span class="CaptionEdgeRightBottom" style="background-image: url(layouts/tibiacom/images/content/box-frame-edge.gif);"></span> </div> </div> <table class="Table1" cellpadding="0" cellspacing="0"> <tbody> <tr> <td> <div class="InnerTableContainer"> <table style="width: 100%;"> <tbody> <td valign="middle" width="25px;"> <form action="" method="post" enctype="multipart/form-data"> <select name="nome">'; $players_from_logged_acc = $account_logged->getPlayersList(); if(count($players_from_logged_acc) > 0) { $players_from_logged_acc->orderBy('name'); foreach($players_from_logged_acc as $player) { $main_content .= '<option>'.$player->getName().'</option>'; } } else { $main_content .= 'You don\'t have any character on your account.'; } $main_content .=' </select><small> (Selecione um personagem) </small> <br /><br /> <span><b>E-mail</b></span><br /> '.$account_logged->getCustomField("email").' <input type="hidden" value="'.$account_logged->getCustomField("email").'" name="email" readonly /> <br /><br /> <span><b>Account</b></span><br /> '.$account_logged->getCustomField("name").' <input type="hidden" value="'.$account_logged->getCustomField("name").'" name="titulo" readonly /> <br /><br /> <span><b>Hora da Doação</b></span> <br /> <input type="text" name="hr" /> <br /><br /> <span><b>Valor Doado</b></span> <br /> <input type="text" name="vl" /> <br /><br /> <span><b>Detalhes Do Comprovante</b></span> <br /> <textarea name="mensagem" cols="30" rows="5"></textarea> <br /><br /> <input type="hidden" name="acao" value="enviar" /> <input type="submit" value=" Enviar Confirmação " class="btn"/> </form> <small>Script by <b>VictorWebMaster</b>.</small> </tbody> </table> </div> </td> </tr> </tbody> </table> </div>'; } else { $main_content .=' <TABLE BORDER="0" CELLSPACING="1" CELLPADDING="5" WIDTH="100%"> <tr BGCOLOR="'.$config['site']['vdarkborder'].'"> <td CLASS="white"><b>Error</b></td> </tr> <tr BGCOLOR='.$config['site']['darkborder'].'> <td><font size="5">Login first.</font><br /><br /><a href="index.php?subtopic=accountmanagement">Login</a> or <a href="index.php?subtopic=createaccount">Register</a>.</td> </tr> </TABLE> ';} ?> config.php <?PHP $link_down = "http://www.tibia.com"; ## Link de download do cliente proprio ## $config['site']['SocialFacebook'] = "VictorRaful"; $config['site']['SocialTweet'] = "victor__fasano"; ############################### ###### Bônus Points ########### ############################### ################################ ## Ex: 1x = Points normais ##### # Ex: 2x = Compra 1 e recebe 2 # ################################ ################################ # 5x double points os pontos ### # são extreme points ########### ################################ $config['site']['bonusPoints'] = 1; #! Quantidade de vezes a ser multiplicados os points !# ################################### ###### CONFIGURAÇÕES DO SITE ###### ################################### $config['site']['check_titles']= false; #! Não mecha !# $config['site']['allowed_titles'] = array(); #! Não mecha !# $config['site']['worlds'] = array(0 => 'Server Name'); #! NOME DO SERVIDOR !# $config['site']['one_email'] = 1; #! 1 email por account 1 = sim, 0 = não !# $config['site']['verify_code'] = 1; $config['site']['email_days_to_change'] = 7; $config['site']['newaccount_premdays'] = 10; ## DIAS DE PREMIUM QUE JOGADOR RECEBE QUANDO CRIA CHARACTER ## $config['site']['create_account_verify_mail'] = 0; #! Verificar conta com link enviado no email !# $config['site']['generate_new_reckey'] = "1"; #! POSSIBILIDADE DE GERAÇÃO NOVA DE RECOVERY KEY 1 = sim || 0 = não !# $config['site']['generate_new_reckey_price'] = 5; #! Preço em 'points' de nova recovery key !# $config['site']['send_mail_when_change_password'] = 0; #! Enviar novo password sempre que for alterado para o email !# $config['site']['send_mail_when_generate_reckey'] = 1; #! Enviar nova recovery key para o email !# $config['site']['send_register_email'] = 0; #! Enviar email de boas vindas quando account é criada !# ############################################## ####### CONFIGURAÇÃO DAS VOCAÇÕES ############ ############################################## $config['site']['newchar_vocations'][0] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample'); $config['site']['newchar_vocations'][1] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample'); $config['site']['newchar_towns'][0] = array(1); $config['site']['newchar_towns'][1] = array(1); $vocation_name[0][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight'); $vocation_name[0][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight'); $vocation_name[1][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight'); $vocation_name[1][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight'); ####################################### ######### Cidades do Servidor ######### ####################################### $towns_list[0] = array(1 => 'Town 1'); $config['site']['monsters'] = array("amazon","valkyrie","carrion worm","rotworm","rotworm queen","cockroach","kongra","merlkin","sibang","crystal spider","giant spider","poison spider","scorpion","spider","tarantula","achad","axeitus headbanger","bloodpaw","bovinus","colerian the barbarian","cursed gladiator","frostfur","orcus the cruel","rocky","the hairy one","avalanche","drasilla","grimgor guteater","kreebosh the exile","slim","spirit of earth","spirit of fire","spirit of water","the dark dancer","the hag","darakan the executioner","deathbringer","fallen mooh'tah master ghar","gnorre chyllson","norgle glacierbeard","svoren the mad","the masked marauder","the obliverator","the pit lord","webster","barbarian bloodwalker","barbarian brutetamer","barbarian headsplitter","barbarian skullhunter","bear","panda","polar bear","braindeath","beholder","elder beholder","gazer","chicken","dire penguin","flamingo","parrot","penguin","seagull","terror bird","bazir","infernatil","thul","munster","son of verminor","xenia","zoralurk","big boss trolliver","foreman kneebiter","mad technomancer","man in the cave","lord of the elements","the count","the plasmother","dracola","the abomination","the handmaiden","mr. punish","the countess sorrow","the imperor","massacre","apocalypse","brutus bloodbeard","deadeye devious","demodras","dharalion","fernfang","ferumbras","general murius","ghazbaran","grorlam","lethal lissy","morgaroth","necropharus","orshabaal","ron the ripper","the evil eye","the horned fox","the old widow","tiquandas revenge","apprentice sheng","dog","hellhound","war wolf","winter wolf","wolf","chakoya toolshaper","chakoya tribewarden","chakoya windcaller","blood crab","crab","frost giant","frost giantess","ice golem","yeti","acolyte of the cult","adept of the cult","enlightened of the cult","novice of the cult","ungreez","dark torturer","demon","destroyer","diabolic imp","fire devil","fury","hand of cursed fate","juggernaut","nightmare","plaguesmith","blue djinn","efreet","green djinn","marid","frost dragon","wyrm","sea serpent","dragon lord","dragon","hydra","dragon hatchling","dragon lord hatchling","frost dragon hatchling","dwarf geomancer","dwarf guard","dwarf soldier","dwarf","dworc fleshhunter","dworc venomsniper","dworc voodoomaster","elephant","mammoth","elf arcanist","elf scout","elf","charged energy elemental","energy elemental","massive energy elemental","overcharged energy elemental","energy overlord","cat","lion","tiger","azure frog","coral frog","crimson frog","green frog","orchid frog","toad","jagged earth elemental","muddy earth elemental","earth elemental","massive earth elemental","earth overlord","gargoyle","stone golem","ghost","phantasm","phantasm","pirate ghost","spectre","cyclops smith","cyclops drone","behemoth","cyclops","slick water elemental","roaring water elemental","ice overlord","water elemental","massive water elemental","ancient scarab","butterfly","bug","centipede","exp bug","larva","scarab","wasp","lizard sentinel","lizard snakecharmer","lizard templar","minotaur archer","minotaur guard","minotaur mage","minotaur","squirrel","goblin demon","badger","bat","deer","the halloween hare","hyaena","pig","rabbit","silver rabbit","skunk","wisp","dark monk","monk","tha exp carrier","necromancer","priestess","orc berserker","orc leader","orc rider","orc shaman","orc spearman","orc warlord","orc warrior","orc","goblin leader","goblin scavenger","goblin","goblin assassin","assasin","bandit","black knight","hero","hunter","nomad","smuggler","stalker","poacher","wild warrior","ashmunrah","dipthrah","mahrdis","morguthis","omruc","rahemos","thalas","vashresamun","pirate buccaneer","pirate corsair","pirate cutthroat","pirate marauder","carniphila","spit nettle","fire overlord","massive fire elemental","blistering fire elemental","blazing fire elemental","fire elemental","hellfire fighter","quara constrictor scout","quara hydromancer scout","quara mantassin scout","quara pincher scout","quara predator scout","quara constrictor","quara hydromancer","quara mantassin","quara pincher","quara predator","cave rat","rat","cobra","crocodile","serpent spawn","snake","wyvern","black sheep","sheep","mimic","betrayed wraith","bonebeast","demon skeleton","lost soul","pirate skeleton","skeleton","skeleton warrior","undead dragon","defiler","slime2","slime","bog raider","ice witch","warlock","witch","bones","fluffy","grynch clan goblin","hacker","minishabaal","primitive","tibia bug","undead minion","annihilon","hellgorak","latrivan","madareth","zugurosh","ushuriel","golgordan","thornback tortoise","tortoise","eye of the seven","deathslicer","flamethrower","magicthrower","plaguethrower","poisonthrower","shredderthrower","troll champion","frost troll","island troll","swamp troll","troll","banshee","blightwalker","crypt shambler","ghoul","lich","mummy","vampire","grim reaper","trainer","forest dragon","knight","paladin","druid","sorcerer","guard","mercenary","thief","toxiros","pyramo","lazarus","zathroth","goshnar","durin","demora","orc champion","lumenia","dracula","alezzo","prince almirith","elf warlord","random noob","magebomb"); $config['site']['npc'] = array('alice', 'oarkhal', 'equer', 'parkhal', 'leoric', 'sarkhal', 'pallo', 'riona', 'her miona', 'varkhal', 'eura', 'blitz', 'markhal', 'wengo', 'larkhal'); $config['site']['max_players_per_account'] = 5; #! Personagens por account !# $config['site']['guild_need_level'] = 8; #! Level minimo para criar uma nova guild !# $config['site']['guild_need_pacc'] = 0; #! Para criar guild necessario premium? 1 = sim || 0 = não !# $config['site']['guild_image_size_kb'] = 200; #! Tamanho da imagem para logo da guild !# $config['site']['guild_description_chars_limit'] = 1000; $config['site']['guild_description_lines_limit'] = 6; $config['site']['guild_motd_chars_limit'] = 150; ########################################### ########## CONFIGURAÇÃO DE SMTP ########### ## Insira todas as informações de email ### ## para que possa funcionar o smtp ######## ########################################### $config['site']['send_emails'] = 1; $config['site']['mail_address'] = "[email protected]"; $config['site']['smtp_enabled'] = "yes"; $config['site']['smtp_host'] = "smtp.gmail.com"; $config['site']['smtp_port'] = 587; $config['site']['smtp_auth'] = "yes"; $config['site']['smtp_user'] = "[email protected]"; $config['site']['smtp_pass'] = "MINHASENHA"; #! Opções, paginas e etc a serem exibidos !# $config['site']['access_news'] = 6; $config['site']['access_admin_panel'] = 6; $config['site']['news_big_limit'] = 3; $config['site']['news_ticks_limit'] = 5; $config['site']['show_creationdate'] = 1; $config['site']['last_deaths_limit'] = 40; $config['site']['players_group_id_block'] = 4; $config['site']['support_group_id'] = 2; $config['site']['shop_system'] = 1; $config['site']['serverinfo_page'] = 1; $config['site']['email_lai_sec_interval'] = 180; $config['site']['screenoftheday'] = 1; ############# ## Layouts ## ############# $config['site']['layout'] = 'tibiacom'; ############################ ## PagSeguro/Paypal Email ## ############################ $config['pagseguro']['email'] = '[email protected]'; ## EMAIL PAGSEGURO ## $config['paypal']['email'] = '[email protected]'; ## EMAIL PAYPAL ## ## Formas de pagamento [1 = ativo | 0 = inativo] ## $config['site']['caixa'] = 1; $config['site']['pagseguro'] = 1; $config['site']['paypal'] = 1; ##################### ## Nome do Produto ## ##################### $config['pagseguro']['produtoNome'] = 'Premium Points'; ############################# ######### C A I X A ######## ############################# #! Informações do pagamento com caixa economica federal !# $config['site']['CaixaCont'] = " C/C: Ag: etc.. "; ?>
  6. henriqerocha postou uma resposta no tópico em Suporte Tibia OTServer
    Bom dia família TK Queria pedir uma ajudinha de vocês, como eu configuro esse smtp para que os emails da confirmação dos points vá pro meu email?
  7. e como colocar no captain?
  8. onde fica esses ground's?
  9. bom dia galera, to querendo criar uma cidade vip no rme como fazer isso? alguma video aula e queria também adiciona-la no captain, porque ja tentei, coloquei coordenas e tudo mais, mas não consigo ajudem ai por favor
  10. Bom agora é o seguinte, consegui entrar pelo ip servegame. mas não abre o site todo, abre só o background e algumas opções do painel.
  11. Tem um tuto ai de como liberar a porta 80 do Thomsom TG-508? creio que não fiz certo.
  12. cara uso um thomsom tg508, não sei liberar a porta 80 dele, pois aparece Protocolo Port Range Para traduzir ... Protocolo acionar Trigger Port N º portuário mapas definidos para este jogo ou aplicação. AnyTCPUDP to AnyTCPUDP 80 to 80 ?
  13. uso modem e roteador, preciso abrir em todos? ou apenas no roteador
  14. Creio que sim, como verificar? e quais as necessárias? liberei 7171 e 7172
  15. Boa noite família tibiaKing, Venho mais uma vez recorrer a vocês, que sei que são os únicos a me ajudarem. É o seguinte... Uso Xampp 1.7.3, Duc e tudo mais, eu consigo entrar no meu ot normalmente, inclusive com o ip que fiz no no-ip, meus colegas conseguem entrar no ot também normalmente, O PROBLEMA ESTÁ NA HORA DE ENTRAR NO SITE. Quando passo o site pra alguém entrar dá erro na página. Alguém sabe o que pode ser? por favor, me ajudem. no no-ip ta configurado como DNS Host REP + PRA QUEM AJUDAR AI
  16. Primeiramente Bom dia! Galera é o seguinte, uso um sistema vip by mock. mas gostaria que quando o player comprasse a vip no site, ele já ficava vip automaticamente, e ocorresse a mesma coisa na hora que acabar a vip, sair automaticamente! O site está funcionando 100%, quando crio uma vip no shopadmin, por exemplo de 30 dias, e compro com a acc ele apareçe no status vip e o dia que a vip irá expirar. Gostaria de saber se slá, tem algúm script que muda a storage pra que quando o player compre Vipdays no site, ele possa passar pelas storages 15400. Ajudem ai, REP+ pra quem ajudar
  17. Sim Ricardo, irei hospedar, mas primeiramente só queria que UMA pessoa entrasse e desse opinião, que no caso é meu rl, então não vejo motivo para pagar R$ 80,00 de começo para UMA pessoa, não acha?
  18. dúvida sanada, pode fechar o tópico!
  19. Cara, depois de muito esforço consegui, muito obrigado por se importar e me ajudar! REP+ ai
  20. tem algum tuto de como liberar as portas do modem Thomson TG 508 ai? pra ver se to fazendo certo
  21. sim, está. to usando um programa pra vê se as portas estão abertas, e ta aparecendo que sim. Programa PF Port Checker
  22. liberei novamente, mas persiste.
  23. só as do modem? tem que colocar TCP ou UDP, no roteador tá tudo TCP

Informação Importante

Confirmação de Termo