-
Total de itens
554 -
Registro em
-
Última visita
-
Dias Ganhos
7
Tudo que Natanael Beckman postou
-
[Gesior Acc] Configurando Lost Account
um tópico no fórum postou Natanael Beckman Tutoriais de Websites
Boa galera, vejo que ainda tem muita gente que necessita de um tutorial parecido com esse, então resolvi posta pra alguns pode ser besteira mais pra outros pode ser muito bom. Vamos nois... Vai até htdocs/confg/config.php Procure por: // E-MAIL config Estará assim: // E-MAIL config $config['site']['send_emails'] = 0; // is acc. maker configured to send e-mails? $config['site']['mail_address'] = ""; // e-mail address $config['site']['smtp_enabled'] = "yes"; // send by smtp or mail function (set 0 if use mail function) $config['site']['smtp_host'] = "smtp.gmail.com"; // address $config['site']['smtp_port'] = 465; // port $config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth) $config['site']['smtp_user'] = ""; // login $config['site']['smtp_pass'] = ""; // password 1° Criei um email no Gmail.com 2° Vamos configurar. Em: $config['site']['send_emails'] = 0; // is acc. maker configured to send e-mails? Bote 1 no lugar do 0. Ficará: $config['site']['send_emails'] = 1; // is acc. maker configured to send e-mails? Em: $config['site']['mail_address'] = ""; // e-mail address Bote o email que você criou no Gmail. Ficará: $config['site']['mail_address'] = "meuemail@gmail.com"; // e-mail address Em: $config['site']['smtp_enabled'] = "yes"; // send by smtp or mail function (set 0 if use mail function) Deixa assim mesmo está correto. Em: $config['site']['smtp_host'] = "smtp.gmail.com"; // address Deixa assim mesmo está correto. Em: $config['site']['smtp_port'] = 465; // port Aqui você troque o port, que está 465 bote o correto 587. Ficará: $config['site']['smtp_port'] = 587; // port Em: $config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth) Deixa assim mesmo está correto. Em: $config['site']['smtp_user'] = ""; // login Novamente bote o email que você criou. Ficará: $config['site']['smtp_user'] = "meuemail@gmail.com"; // login Em: $config['site']['smtp_pass'] = ""; // password Aqui você bota a senha do seu email. Ficará: $config['site']['smtp_pass'] = "123456"; // password Bom galera fazendo tudo da forma correta, seu sistema de recuperar accounts estará funcionando corretamente. Existem alguns outros detalhes não tão importantes mais fazem diferença. // USE ONLY IF YOU CONFIGURED E-MAIL AND IT WORK $config['site']['create_account_verify_mail'] = 0; // quando o jogador criar conta deve usar para a direita de e-mail, receberá senha aleatória para a conta, como na tíbia RL, 1 = sim, 0 = não $config['site']['generate_new_reckey'] = 1; // vamos gerar chave de recuperação do jogador novo, ele vai receber e-mail com a tecla rec novo (não exibir na página, o hacker não pode gerar a chave REC) $config['site']['generate_new_reckey_price'] = 5; // você pode obter alguns pontos Premium para os principais novo rec $config['site']['send_mail_when_change_password'] = 1; // enviar e-mail com a nova senha quando alterar a senha para a conta, defina 0 se queixa de alguém para enviar spam $config['site']['send_mail_when_generate_reckey'] = 1; // enviar e-mail com a tecla REC (tecla é exibido na página de qualquer maneira quando gerar), conjunto 0, se o abuso de alguém para enviar spam $config['site']['send_register_email'] = 1; // enviar e-mail quando registrar conta Galera quem gostar comenta e rep++ té aproxima. -
Se quizer eu vendo. natanbeckman@hotmail.com
-
Como Mudar O Lugar Onde O Player Nasce
tópico respondeu ao Mamedioo de Natanael Beckman em Lixeira Pública
<?PHP $config['site']['worlds'] = array(0 => 'Server Name', 1 => 'Server Name 1', 2 => 'Server Name 2'); <<<<<<<<<<AQUI MANO $config['site']['quests'] = array('Annihilator' => 5000,'Demon Helmet' => 2645,'Pits of Inferno' => 5550); // list of quests, 'questname' => storage-id, // ACCOUNT config $config['site']['one_email'] = 0; // one e-mail can be used only to create one account 0 / 1 $config['site']['verify_code'] = 0; // show verify code to block stupid scripts, set 0 if you have problems with image $config['site']['email_days_to_change'] = 2; // how many days user need to change e-mail to account - block hackers $config['site']['newaccount_premdays'] = 0; // how many days receive new account // USE ONLY IF YOU CONFIGURED E-MAIL AND IT WORK $config['site']['create_account_verify_mail'] = 0; // when create account player must use right e-mail, he will receive random password to account like on RL tibia, 1 = yes, 0 = no $config['site']['generate_new_reckey'] = 0; // let player generate new recovery key, he will receive e-mail with new rec key (not display on page, hacker can't generate rec key) $config['site']['generate_new_reckey_price'] = 5; // you can get some Premium Points for new rec key $config['site']['send_mail_when_change_password'] = 0; // send e-mail with new password when change password to account, set 0 if someone abuse to send spam $config['site']['send_mail_when_generate_reckey'] = 0; // send e-mail with rec key (key is displayed on page anyway when generate), set 0 if someone abuse to send spam $config['site']['send_register_email'] = 0; // send e-mail when register account // CHARACTER config, format: ID_of_vocation => 'Name of Character to copy', load vocation name from $vocation_name[0] (below) $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'); // sample, if rook only: $config['site']['newchar_vocations'][0] = array(0 => 'Rook Sample'); $config['site']['newchar_towns'][0] = array(2); $config['site']['newchar_towns'][1] = array(1,2); // sample, if all players should spawn in one city (city with ID 4): $config['site']['newchar_towns'] = array(4); // list of vocations on ots (world 0) $vocation_name[0][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight'); // id => 'name' , $vocation_name[0] - promotion level 0, $vocation_name[0] - for world ID 0 $vocation_name[0][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight'); // id => 'name' , $vocation_name[1] - promotion level 1, $vocation_name[0] - for world ID 0 // list of vocations on ots (world 1) $vocation_name[1][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight'); // id => 'name' , $vocation_name[0] - promotion level 0, $vocation_name[1] - for world ID 1 $vocation_name[1][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight'); // id => 'name' , $vocation_name[1] - promotion level 1, $vocation_name[1] - for world ID 1 // list of towns on ots $towns_list[0] = array(0 => 'Venore', 1 => 'Edron', 2 => 'Thais', 3 => 'Carlin'); // list of towns, id => 'name', $towns_list[0] - for world id 0 $towns_list[1] = array(0 => 'Venore', 1 => 'Edron', 2 => 'Thais', 3 => 'Carlin'); // list of towns, id => 'name', $towns_list[1] - for world id 1 // list of monsters on ots - names blocked, you can generate list of your monsters in acc. maker admin panel ( Reload Monsters ) $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"); // list of NPCs on ots - names blocked $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'] = 35; // max. number of characters on account // GUILDS config $config['site']['guild_need_level'] = 8; // minimum level to create guild $config['site']['guild_need_pacc'] = 0; // guild need pacc 0 / 1 $config['site']['guild_image_size_kb'] = 50; // maximum size of image in KB $config['site']['guild_description_chars_limit'] = 1000; // limit of guild description $config['site']['guild_description_lines_limit'] = 6; // limit of lines, if description has more lines it will be showed as long text, without 'enters' $config['site']['guild_motd_chars_limit'] = 150; // limit of MOTD (show in game?) // E-MAIL config $config['site']['send_emails'] = 0; // is acc. maker configured to send e-mails? $config['site']['mail_address'] = "YOUREMAIL@gmail.com"; // e-mail address $config['site']['smtp_enabled'] = "yes"; // send by smtp or mail function (set 0 if use mail function) $config['site']['smtp_host'] = "smtp.gmail.com"; // address $config['site']['smtp_port'] = 465; // port $config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth) $config['site']['smtp_user'] = "login"; // login $config['site']['smtp_pass'] = "password"; // password // ACC MAKER OPTIONS config $config['site']['access_news'] = 2; // access level needed to edit news $config['site']['access_admin_panel'] = 3; // access level needed to open admin panel $config['site']['news_big_limit'] = 3; // limit of news on latest news page $config['site']['news_ticks_limit'] = 5; // limit of ticker news on latest news page $config['site']['show_creationdate'] = 1; // show date of character creation 1 = yes, 0 = no (when use Search Player) $config['site']['last_deaths_limit'] = 40; // max. number of death on last death page $config['site']['players_group_id_block'] = 4; // don't show in statistics players with group ID higher (or equal) then (show tutors, senior tutors and normal players) $config['site']['support_group_id'] = 2; // on game masters list show players with group id 2 or higher $config['site']['shop_system'] = 1; // show server shop page? 1 = yes, 0 = no, use only if you installed LUA scripts of shop $config['site']['download_page'] = 1; // show download page? 1 = yes, 0 = no $config['site']['serverinfo_page'] = 1; // show server info page? 1 = yes, 0 = no $config['site']['verify_code_shop'] = 0; // show verify code when player try to check premium code $config['site']['gallery_page'] = 1; // show gallery page? 1 = yes, 0 = no $config['site']['email_lai_sec_interval'] = 180; // time in seconds between e-mails to one account from lost account interface, block spam $config['site']['show_marriage_info'] = 0; // show marriage, 1 = yes, 0 = no $config['site']['show_skills_info'] = 1;//show players skills, 1 = yes, 0 = no $config['site']['show_vip_status'] = 1;// show vip status, 1 = yes, 0 = no $config['site']['show_vip_storage'] = 0;// the storage of vip $config['site']['show_outfit'] = 1;// show outfit, 1 = yes, 0 = no $config['site']['show_signature'] = 1;// show signature, 1 = yes, 0 = no $config['site']['screenoftheday'] = 1;// show screenshot of the day $config['site']['worldtransfer'] = 1;//1-Enable/0-Disable Character World Transfer $config['site']['worldtransferprice'] = 10;//Price for Character World Transfer $config['site']['transfermonths'] = 6;//Months for which you cannot make World Transfer with a character // layout, available layouts: rasta,tibiacom,darkritual $config['site']['layout'] = "layout"; // layout name ?> -
Como Mudar O Lugar Onde O Player Nasce
tópico respondeu ao Mamedioo de Natanael Beckman em Lixeira Pública
Vai em htdocs/confg/config.php => procure por essa linha: $config['site']['worlds'] = array(0 => 'Server Name', 1 => 'Server Name 1', 2 => 'Server Name 2'); troca por essa: $config['site']['worlds'] = array(0 => 'MeuServer'); Rep++ -
;D Que bom rep++ man...
-
O viptime é um sistema que conta por segundos no caso tem que transformar segundos em dias o gesior é configurado pra add dias 1 = 1 dia normal. então você tem que tranforma os segundos em dias ex: 86400 seg = 1 dia 15 dias = 1296000 segundos. Tenta bota assim no shopsystem.php if($buy_offer['type'] == 'pacc') { $player_viptime = $buy_player_account->getCustomField('viptime'); $player_lastlogin = $buy_player_account->getCustomField('lastday'); $save_transaction = 'INSERT INTO '.$SQL->tableName('z_shop_history_pacc').' (id, to_name, to_account, from_nick, from_account, price, pacc_days, trans_state, trans_start, trans_real) VALUES (NULL, '.$SQL->quote($buy_player->getName()).', '.$SQL->quote($buy_player_account->getId()).', '.$SQL->quote($buy_from).', '.$SQL->quote($account_logged->getId()).', '.$SQL->quote($buy_offer['points']).', '.$SQL->quote($buy_offer['days']).', \'realized\', '.$SQL->quote(time()).', '.$SQL->quote(time()).');'; $SQL->query($save_transaction); if($player_viptime > 0) $buy_player_account->setCustomField('viptime', $player_viptime + $buy_offer['days'] * 86400); else $buy_player_account->setCustomField('viptime', time() + $buy_offer['days'] * 86400); $buy_player_account->setCustomField('premium_points', $user_premium_points-$buy_offer['points']); $user_premium_points = $user_premium_points - $buy_offer['points']; if ($player_vipdays >= 1) { } $main_content .= '<center><h2>VIP Days added!</h2><b>'.$buy_offer['days'].' days</b> of VIP days added to the account of player <b>'.$buy_player->getName().'</b> for <b>'.$buy_offer['points'].' premium points</b> from your account.<br />Now you have <b>'.$user_premium_points.' premium points</b>.<br><br><a href="index.php?subtopic=shopsystem">Go to Shop Site</a><br>'; }
-
[Geisor Acc By Doidin 8.54] Vip-Status
tópico respondeu ao ImperiumOT de Natanael Beckman em Lixeira Pública
Qual sistema VIP você usar? -
[8.6 - 8.61 - 8.62] Crystal Server V0.2.2
tópico respondeu ao Tryller de Natanael Beckman em Lixeira Pública
Opa com war system fica bem melhor vou usar esse distro ;D -
[8.6 - 8.61 - 8.62] Crystal Server V0.2.2
tópico respondeu ao Tryller de Natanael Beckman em Lixeira Pública
oMg Que bom ver essa galera top de volta. Pelo visto um belo trabalho, parabéns eu tava compilando essa rev 3940 hojé =s, agora nem precisa mais ;D Rep++ Edit -------------------------- Bota assim no globalevents.xml <globalevent name="save" interval="7200000" event="script" value="save.lua"/> 1 em 1 hora. Normalmente ele conta por segundos mais pelo visto o seu ta por milezimo. -
Bom, o que diz ae é que o site não tem acesso ao sample paladin que está na na sua database. Isso é caso ele esteja veja se a instalação está correta. Pra fica melhor poste o seu config.php pra min da uma olhada isso é coisa simples.
-
Vai no config.lua do seu ot e procure por: ingameGuildManagement / = Manuteção da guild dentro do jogo? Se tiver true troque por false.
-
Ae vai ter que muda algumas coisas, mais... Go go 1° htdocs/buypoints.php ==> muda o buypoints.php pra o nome que você quer ex: oferta.php 2° htdocs/index.php/ Vai até: case "buypoints"; $subtopic = "buypoints"; $topic = "Buy Points"; include("buypoints.php"); break; Mude pra: case "oferta"; $subtopic = "oferta"; $topic = "Oferta"; include("oferta.php"); break; 3° htdocs/layouts/tibiacom/layouts.php vai até: <a href='?subtopic=buypoints'> <div id='submenu_buypoints' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'> <div class='LeftChain' style='background-image:url(".$layout_name."/images/general/chain.gif);'></div> <div id='ActiveSubmenuItemIcon_buypoints' class='ActiveSubmenuItemIcon' style='background-image:url(".$layout_name."/images/menu/icon-activesubmenu.gif);'></div> <div class='SubmenuitemLabel'><blink style=\"color: red;\">Buy Points</blink></div> <div class='RightChain' style='background-image:url(".$layout_name."/images/general/chain.gif);'></div> </div> </a> Modifica assim: <a href='?subtopic=oferta'> <div id='submenu_oferta' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'> <div class='LeftChain' style='background-image:url(".$layout_name."/images/general/chain.gif);'></div> <div id='ActiveSubmenuItemIcon_oferta' class='ActiveSubmenuItemIcon' style='background-image:url(".$layout_name."/images/menu/icon-activesubmenu.gif);'></div> <div class='SubmenuitemLabel'><blink style=\"color: red;\">Oferta</blink></div> <div class='RightChain' style='background-image:url(".$layout_name."/images/general/chain.gif);'></div> </div> </a> Nesse linha que está localizada acima /\ aonde contém o nome oferta é o nome que irá aprecer no site nas colunas de opções. <div class='SubmenuitemLabel'><blink style=\"color: red;\">Oferta</blink></div>
-
Erro De Instalação Do Gesior Acc Maker No Apache !
tópico respondeu ao mikeleoss de Natanael Beckman em Lixeira Pública
Mude o nome pra htdocs mesmo e vai em confg.ini veja se o essa linha esta assim: install = "no" Se tiver no bota yes. -
Criando Conta Com Conta E Senha Enviada Pro E-Mail
tópico respondeu ao Msfox de Natanael Beckman em Lixeira Pública
Bom cara, então acredito que você não esteja fazendo as coisas corretamente como informamos. Caso tenha feito e não da certo seu caso é raro leia as coisa com atenção usa um pouquinho da cabeça =p -
We Do Ots 0.1.1 (Beta Version)
tópico respondeu ao comedinhasss de Natanael Beckman em Lixeira Pública
O bug da paralyze magic wall foram corrigidos sim. Postem os bugs a unica maneira da gente corrigir tudo é sabendo quais são o erros.... Ajuda galera ;p -
Gesior Acc Maker Para O Tfs 8.60
tópico respondeu ao murilo775 de Natanael Beckman em Lixeira Pública
Vai na seção de downloads e baixe qualquer Gesior ACC isso não importa. Não existe versão apropiadas pra versões de Tibia as tabelas não mudam. É recomendavél 0.3.5/0.3.6/0.3.7 um desses. -
Criando Conta Com Conta E Senha Enviada Pro E-Mail
tópico respondeu ao Msfox de Natanael Beckman em Lixeira Pública
Como você diz, é impossivel se cadastra somente com o e-mail. Ele sempre irá pedi pra add account name. Agora caso conheça alguem que saiba bem sobre coder de php e esteja afim de te ajudar pode até ser. ;x Se for realmente isso que você queira, caso o contrario desconsidere essa resposta. -
Vai na pasta do seu ot em htdocs add uma pasta com o nome data e dentro dela bota a pasta items do seu ot. Pronto resolvido.
-
Como Por Vip Status No Gesior Sem Storage?
tópico respondeu ao nmaster de Natanael Beckman em Lixeira Pública
Nuckles sua solução: http://www.xtibia.com/forum/topic/142966-gesior-acc-vip-status-obedecendo-vip-time/ -
[Gesior Acc] Vip Status Obedecendo Vip_Time.
um tópico no fórum postou Natanael Beckman Tutoriais de Websites
Boa galera mais uma vez eu aqui! ;p Agora o sistema de VIP Status obedece pelo vip_time, no Gesior ACC o sistema de vip atual obedece o storage que não é tão bom devido um bug quando o player recebe um vip pelo storage no termino do vip_time ele ainda fica com o Status de VIP, nesse tutorial eu vou ensinar como ele obedecer o accont>vip_time. Recomendado pra quem usa system vip by Mock e para sistema vip By Lukeskywalker. Vamos nois... Vai até htdocs/pot/OTS_ACCOUNT.php Procure por: 'lastday' => 0, Logo após adicione: 'vip_time' => 0, Procure por: ' . $this->db->fieldName('rlname') . ', Logo após adicione: '. $this->db->fieldName('vip_time') . ', Procure por: ' . $this->db->fieldName('rlname') . ' = ' . $this->db->quote($this->data['rlname']) . ', Logo após adicione: ' . $this->db->fieldName('vip_time') . ' = ' . $this->db->quote($this->data['vip_time']) . ', Procure por: public function getRLName() { if( !isset($this->data['rlname']) ) { throw new E_OTS_NotLoaded(); } return $this->data['rlname']; } Logo após adicione: public function getPlayerVip_Time() { if( !isset($this->data['vip_time']) ) { throw new E_OTS_NotLoaded(); } return $this->data['vip_time']; } Vai até htdocs/Accountmanagement.php Procure por: $account_email = $account_logged->getEMail(); $account_email_new_time = $account_logged->getCustomField("email_new_time"); if($account_email_new_time > 1) $account_email_new = $account_logged->getCustomField("email_new"); Logo após adicione: /*Vip Status*/ $account_vip = $account_logged->getPlayerVip_Time() ? '<b><font color="green"> Vip Account, '.$account_logged->getPlayerVip_Time().' Days left </font></b>' : '<b><font color="red">Not Vip Account</font></b>'; Procure por: " ><td class="LabelV" >Account Status:</td><td>'.$account_status.'</td></tr><tr style="background-color:'.$config['site']['darkborder'].'; Logo após adicione: " ><td class="LabelV" >Vip Status:</td><td>'.$account_vip.'</td></tr><tr style="background-color:'.$config['site']['darkborder'].'; Vai até htdocs/character.php Procure por: if(is_int($number_of_rows / 2)) { $bgcolor = $config['site']['darkborder']; } else { $bgcolor = $config['site']['lightborder']; } $number_of_rows++; $main_content .= '<TR BGCOLOR="'.$bgcolor.'"><TD>Account*Status:</TD><TD>'; $main_content .= ($account->isPremium()) ? '<b><font color="green">Premium Account</font></b>' : '<b><font color="red">Free Account</font></b>'; Logo após adicione: /*Vip Status*/ if(is_int($number_of_rows / 2)) { $bgcolor = $config['site']['darkborder']; } else { $bgcolor = $config['site']['lightborder']; } $number_of_rows++; $main_content .= '<TR BGCOLOR="'.$bgcolor.'"><TD>Vip Status:</TD><TD>'; $main_content .= ($account->getPlayerVip_Time()) ? '<b><font color="green">Vip Account</font></b>' : '<b><font color="red">Not Vip Account</font></b>'; Bom, se você fizer tudo corretamente como está no topico tudo vai da certo leia atentamente e faça com calma. Creditos: Natan Beckman Acordion -
Beleza doidin e amén né você trabalha bem.
-
[Gesior Acc] Vendedo Vip Pelo Pacc
tópico respondeu ao Natanael Beckman de Natanael Beckman em Tutoriais de Websites
Comprou o VIP recebe na hora. Mais esse que fiz é propio pro vipsystem do mock o que ja vem no relaserver. -
É pode ser exatamente o que o Felipe falou: sqlType = "mysql" sqlHost = "localhost" sqlPort = 3306 sqlUser = "root" sqlPass = "boteiasenhacerta¬¬" sqlDatabase = "forgottenserver" <- bota nome da sua database que você criou no phpmyadmin. sqlFile = "forgottenserver.S3DB" sqlKeepAlive = 0 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "plain"
-
Eu uso xampp 1.7.3 nunca tive esse problema mais qualquer coisa ative um firewall e se seu servidor for dedicado peça ao seu dedicado o anti-ddos.
-
Concerteza os dados dos seu config.lua estão incorretos la em mysql, veja senha nome da database.
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.