Ir para conteúdo

Liane

Membro
  • Registro em

  • Última visita

Tudo que Liane postou

  1. Liane postou uma resposta no tópico em Websites
    Irei Posta a Versão 2 Desse Gersior, Vai Vim Já Sem Os Bugs Que VoÇês Citaram Ai Mas afinal, o que esse Gesior tem de diferente? É completamente seguro e estável. Página "createaccount" Sem Bug. Possui um Helpdesk avançado. Possui diversas páginas explicativas. Página de donate personalizada e funcional. Shopping completamente Moderado Layout impecável e completamente perfeito. Entre outras diversas características. Algumas Prints Latest News Shop System Moderado Por Min Pagina De Compra Points Moderado Por Min Essa versão do Gesior só funciona na versão 1.0 do TFS! OBS: Se For Postar Em Outros Forum Coloca Meus Credito Por Favor!!! Créditos: Base Por Victor Fasano Raful Modificado e Configurado Por Min Liane. Download: http://www.speedyshare.com/hS82t/htdocs.rar Obs: A Database Podem Usa A Do Victor Fasano Raful v2 Scan --> https://www.virustot...sis/1420379894/ Se Curtiu o Meu Gesior Clica Em Gostei e da o Rep++
  2. Primeiramente acesse data/talkactions/scripts e crie os arquivos abaixo: start_cast.lua: function onSay(cid, words, param) local player = Player(cid) if player:startLiveCast(param) then db.query("UPDATE `players` SET `cast` = 1 WHERE `id` = " .. getPlayerGUID(cid) .. ";") player:sendTextMessage(MESSAGE_INFO_DESCR, "You have started casting your gameplay.") return false else player:sendCancelMessage("You're already casting your gameplay.") return false end end depois stop_cast.lua: function onSay(cid, words, param) local player = Player(cid) if player:stopLiveCast(param) then db.query("UPDATE `players` SET `cast` = 0 WHERE `id` = " .. getPlayerGUID(cid) .. ";") player:sendTextMessage(MESSAGE_INFO_DESCR, "You have stopped casting your gameplay.") return false else player:sendCancelMessage("You're not casting your gameplay.") return false end end Depois add as tags em data/talkactions/talkactions.xml: <talkaction words="!cast" separator=" " script="start_cast.lua"/> <talkaction words="!stopcast" script="stop_cast.lua"/> não esqueça de criar a coluna na database: ALTER TABLE `players` ADD `cast` INT( 11 ) NOT NULL DEFAULT '0' para não dar nenhum problema entre no creaturescripts/scripts/others e crie um arquivo cast.lua e coloque: function onLogout(cid) db.query("UPDATE `players` SET `cast` = 0 WHERE `id` = " .. getPlayerGUID(cid) .. ";") return true end depois em creaturescripts.xml adicione a linha: <event type="logout" name="Cast" script="others/cast.lua"/> e por fim entre em globalevents/scripts abra o arquivo startup.lua e adicione: db.query("UPDATE `players` SET `cast` = 0") abaixo de: db.query("TRUNCATE TABLE `players_online`") e pronto agora e só por a pagina no site código abaixo: <?php if(!defined('INITIALIZED')) exit; $order = $_REQUEST['order']; if($order == 'name') { $orderby = 'name'; } if($order == 'level') { $orderby = 'level'; } if($order == 'vocation') { $orderby = 'vocation'; } if(empty($orderby)) { $orderby = 'name'; } if(count($config['site']['worlds']) > 1) { $worlds .= '<i>Select world:</i> '; foreach($config['site']['worlds'] as $idd => $world_n) { if($idd == (int) $_GET['world']) { $world_id = $idd; $world_name = $world_n; } } } if($idd == (int) $_GET['world']) { $world_id = $idd; $world_name = $world_n; } if(!isset($world_id)) { $world_id = 0; $world_name = $config['server']['serverName']; } if(count($config['site']['worlds']) > 1) { $main_content .= '<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR><TD> <FORM ACTION="?subtopic=whoisonline" METHOD=get><INPUT TYPE=hidden NAME=subtopic VALUE=whoisonline><INPUT TYPE=hidden NAME=list VALUE=experience> <TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4><TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>World Selection</B></TD></TR><TR><TD BGCOLOR="'.$config['site']['lightborder'].'"> <TABLE BORDER=0 CELLPADDING=1><TR><TD>World: </TD><TD><SELECT SIZE="1" NAME="world"><OPTION VALUE="" SELECTED>(choose world)</OPTION>'; foreach($config['site']['worlds'] as $id => $world_n) { $main_content .= '<OPTION VALUE="'.$id.'">'.$world_n.'</OPTION>'; } $main_content .= '</SELECT> </TD><TD><INPUT TYPE=image NAME="Submit" ALT="Submit" SRC="'.$layout_name.'/images/buttons/sbutton_submit.gif" BORDER=0 WIDTH=120 HEIGHT=18> </TD></TR></TABLE></TABLE></FORM></TABLE><br>'; } $players_online_data = $SQL->query('SELECT * FROM players WHERE level > 0 AND cast = 1 ORDER BY '.$orderby); $number_of_players_online = 0; foreach($players_online_data as $player) { $number_of_players_online++; if($config['site']['show_flag']) { $account = $SQL->query('SELECT * FROM accounts WHERE id = '.$player['account_id'].'')->fetch(); $flag = '<image src="images/flags/'.$account['flag'].'.png"/> '; } if(is_int($number_of_players_online / 2)) { $bgcolor = $config['site']['darkborder']; } else { $bgcolor = $config['site']['lightborder']; } $players_rows .= ' <TR BGCOLOR='.$bgcolor.'> <TD WIDTH=40%>'.$flag.'<A HREF="index.php?subtopic=characters&name='.urlencode($player['name']).'">'.$player['name'].'</A><br/>'.$player['level'].' '.$vocation_name[$player['world_id']][$player['promotion']][$player['vocation']].'</TD> <TD WIDTH=20%><font color="#008000">ONLINE</font></TD> </TR>'; } if($number_of_players_online == 0) { //server status - server empty $main_content .= '<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=white><B>Server Status</B></TD></TR><TR BGCOLOR='.$config['site']['darkborder'].'><TD><TABLE BORDER=0 CELLSPACING=1 CELLPADDING=1><TR><TD>Currently there are no active casts on '.$config['server']['serverName'].'.</TD></TR></TABLE></TD></TR></TABLE><BR>'; } else { //server status - someone is online $main_content .= ' <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%> <TR BGCOLOR="'.$config['site']['vdarkborder'].'"> <TD CLASS=white><B>Server Status</B></TD> </TR> <TR BGCOLOR='.$config['site']['darkborder'].'> <TD>'; $main_content .= 'Currently there are '.$number_of_players_online.' active live casts'; $main_content .= ' on '.$world_name.' gameworlds.<br> </TD> </TR> </TABLE><BR>'; //list of players $main_content .= ' <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%> <TR BGCOLOR="'.$config['site']['vdarkborder'].'"> <TD><A HREF="index.php?subtopic=whoisonline&order=name" CLASS=white>Name</A></TD> <TD><A HREF="index.php?subtopic=whoisonline&order=vocation" CLASS=white>Status</TD> </TR> '.$players_rows.'</TABLE>'; //search bar //$main_content .= '<BR><FORM ACTION="index.php?subtopic=characters" METHOD=post> <TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4><TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Search Character</B></TD></TR><TR><TD BGCOLOR="'.$config['site']['darkborder'].'"><TABLE BORDER=0 CELLPADDING=1><TR><TD>Name:</TD><TD><INPUT NAME="name" VALUE=""SIZE=29 MAXLENGTH=29></TD><TD><INPUT TYPE=image NAME="Submit" SRC="'.$layout_name.'/images/buttons/sbutton_submit.gif" BORDER=0 WIDTH=120 HEIGHT=18></TD></TR></TABLE></TD></TR></TABLE></FORM>'; } $main_content .= '<BR><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4><TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Description</B></TD></TR><TR><TD BGCOLOR="'.$config['site']['darkborder'].'"><h4 style="margin: 0px;">Commands (owner):</h4><i>!cast {on/off}</i> - Create or close your own cast<br/><i>!cast password, |password|</i> - Sets a password for the cast<br/><i>!cast,desc, |description|</i> - Set a description for the cast<br/><i>!cast status</i> - Information about your cast (viewer amount, description, password)<br/><i>!cast viewers</i> - Displays the name of all viewers<br/><i>!cast {ban/unban},"name"</i> - Bans a viewer from joining your cast/Removes the ban<br/><i>!cast {mute/unmute} "name"</i> - Mutes a viewer on your cast/Removes the mute<br/><i>!cast bans</i> - Displays a list of banned viewers<br/><i>!cast mutes</i> - Displays a list of muted viewers<br/><i>!cast update</i> - Updates the description and status on the website<br/><br/><h4 style="margin: 0px;">Commands (viewer):</h4><i>!nick newNick</i> - Changes the viewer\'s name<br><i>!info</i> - Displays a list of all viewers</TD></TR></TABLE>'; DOWNLOAD TFS 1.0 COM CAST Se Ajudei Minda Rep++
  3. Bom eu sou mapeador scripter programador e webmaster, estou precisando de uma nova equipe para meu novo servidor 10.53 pois preciso dessas equipe para que os trabalhos adiantem mais rápidos, duvidas ? sim qual mapa é? = global full 10.53.
  4. Liane postou uma resposta no tópico em Mapas de Tibia
    como faço pra implantar ele no meu global?
  5. mais ja existe cast pra essa versao do tfs? 1.1?
  6. ja vem com o cast system?
  7. Liane postou uma resposta no tópico em Suporte Tibia OTServer
    nao tem nada aver Eu tenho um Completo aqui versao 10.53 tfs 1.0 completo full oramond mounts 10.53 full outfith 10.53 full. e roda em windows e linux Unbutom.
  8. Liane postou uma resposta no tópico em Suporte Tibia OTServer
    eu sou mapper scriper e programer e webmaster Caso Queira Um ot fala comigo que tamos ai
  9. Liane postou uma resposta no tópico em Formação de Equipe
    Cara eu sou programmer scripter mapper e webmaster... qual versao é seu ot? posso ate da umas ajudinhas
  10. reyntek, Mais cobrara pelo dedicado e mais sua mao de obra? se for nao presiso do dedicado nao
  11. //=======Formação de Equipe para Global 10.41=======\\ Bom, tô com um Global 10.41. Um servidor serio. Estou pensando em um milhão de coisas, porem seria impossível desenvolver isso sozinho, por isso preciso de ajuda. Todo o lucro do servidor será repartido por igual entre os fundadores! Darei total liberdade para ideias. --------------------------------------------------------------------- • Hunts exclusivas • Cidades exclusivas • NPCS propios • Sitema VIP diferenciado • Raids exclusivas --------------------------------------------------------------------- Contato Whatsapp: 08496595717 Facebook: jayson.silva.oliveira ---------------------------------------------------------------------
  12. Como já diz no Titulo, Cast system da versão TFS 1.0 V10.41, Esta Ocorrendo O Seguinte Erro, Quando Compilo a Soucer Com o cast system os npcs fica Bugados, ex: os players não consegui vender item e quando eles compra os item os npcs não estão cobrando o dinheiro dos players não, Quem poder min ajuda Darei Rep++, Obrigado!!! Manter o Topico Informado.
  13. Liane postou uma resposta no tópico em Websites
    vá ate o createaccount.php e min mande a line 248
  14. amigo para aparecer os world tem que clica em changer world.... sobre o .ico é porque a imagem não esta direcionada na pasta certa tente verifica isso no documento characters.php e veja se a imagem esta direcionada no local definido no characters.php , se ajudei da rep++ Vlw
  15. Certeza, Esse erro é na soucer, Estou tentando atualizar aqui e logo logo postarei a soucer sem esse erro e vou posta a database compativel tambem
  16. amigo esse erro ai é porque a database que você esta usando nao é compativel com a versao 10.53, temos que atualizar algums Bites Codigos e fontes... Se minha resposta foi O Suficiente para sua duvida da um Rep++ ai Vlw.
  17. Fagotti, Se O site nao funcionou com a database que mandei use essa database >> https://www.mediafire.com/?938xut11jqjwal6
  18. Muito Legal Seu Trabalho Amigo, Continue Assim Ganho Meu rep+
  19. aqui nao aparese nem os kill nem a barra vermelha veja na imagem, ajuda ai pfv
  20. Uniserver versao 2.2 para o linux xampp é inseguro
  21. worldType = "pvp" hotkeyAimbotEnabled = "yes" protectionLevel = 8 killsToRedSkull = 7 killsToBlackSkull = 14 pzLocked = 30 * 1000 removeAmmoWhenUsingDistanceWeapon = "no" removeChargesFromRunes = "no" timeToDecreaseFrags = 12 * 60 * 1000 whiteSkullTime = 10 * 60 * 1000 stairJumpExhaustion = 1000 experienceByKillingPlayers = "no" expFromPlayersLevelRange = 0 noDamageToSameLookfeet = "no" accountManager = "false" ip = "127.0.0.1" bindOnlyGlobalAddress = "no" loginProtocolPort = 7171 gameProtocolPort = 7172 statusProtocolPort = 7171 maxPlayers = 5000 motd = "Welcome to Pythera Server!" onePlayerOnlinePerAccount = "no" allowClones = "no" serverName = "Pythera Global" statusTimeout = 5000 replaceKickOnLogin = "yes" maxPacketsPerSecond = 100 deathLosePercent = -1 housePriceEachSQM = 10000 houseRentPeriod = "weekly" timeBetweenActions = 200 timeBetweenExActions = 1000 enableLiveCasting = "yes" liveCastPort = 7173 mapName = "realmap" mapAuthor = "Malblofor" marketOfferDuration = 30 * 24 * 60 * 60 premiumToCreateMarketOffer = "yes" checkExpiredMarketOffersEachMinutes = 60 maxMarketOffersAtATimePerPlayer = 100 mysqlHost = "localhost" mysqlUser = "root" mysqlPass = "PASSWORD" mysqlDatabase = "NOMEDADATABASE" mysqlPort = 3306 mysqlSock = "" passwordType = "sha1" allowChangeOutfit = "yes" freePremium = "no" kickIdlePlayerAfterMinutes = 15 maxMessageBuffer = 4 emoteSpells = "no" rateExp = 400 rateSkill = 60 rateLoot = 4 rateMagic = 15 rateSpawn = 2 deSpawnRange = 2 deSpawnRadius = 50 staminaSystem = "yes" defaultPriority = "high" startupDatabaseOptimization = "no" ownerName = "buNNy" ownerEmail = "[email protected]" url = "http://otland.net/" location = "Brazil" Ta ai amigo use esse config.lua que é funcional com o site se ajudei da rep++ VLW
  22. DOWNLOAD DO OT DOWNLOAD DO TFS Amigos, fação os downloads dos devidos arquivos, Depois de ter feito o download dos dois arquivos OT e TFS Extraia os dois para Área De Trabalho e Coloco tudo que tem na pasta TFS Dentro Da Pasta OT... Pois Feito Isso Efetua O Download Do Xampp 1.7.3 e instale no disco local C:// depois Efetua O Download dos arquivos DOWNLOAD DA DATABASE WEBSITE COMPATIVEL Coloque o DATABASE Dentro da Pasta OT e Extraia O Arquivo WEBSITE DENTRO DO XAMPP e boa sote se precisar de mais ajuda estarei aqui ajudando... Se ajudei Da Um Rep++
  23. Liane postou uma resposta no tópico em Suporte Tibia OTServer
    luanluciano93, teria como disponibilizar o Power Guild Pra min? uso gersior 1.0 Darei 2 REP++
  24. quando voce achar min manda aqui ok Natanael Beckman

Informação Importante

Confirmação de Termo