Ir para conteúdo

tetheuscunha

Membro
  • Registro em

  • Última visita

Tudo que tetheuscunha postou

  1. Não tem mensagem de erro. Ele somente não consegue "pegar" as informações e mostrar pra mim.
  2. @xWhiteWolf coloquei a linha que voce mandou colocar pra cair so o item daquele nivel, porem da erro script Linha Erro:
  3. Já olhou em items.xml??? coloca essa linha nessa nova moeda sua <attribute key="worth" value="1000000" />
  4. Pode ser a extensão dele no config.lua
  5. É so voce mudar em outfits.xml. Quando o player for free o addon some sozinho.
  6. Ele pode pegar quantas quiser, só que com um intervalo de tempo.
  7. A strong potion já esta desativada. Preciso do script desde de pegar o fogo.... O firebug já tem outro uso. @Vodkart da um help ai.
  8. Ola, estou precisando de um estilo de "passagem secreta". Seria o Seguinte, o player vai ate um COAL BASIN "ligado" e ao da use ele recebe uma poção com o Fogo Sagrado, ai ele tem que ir ate o outro lado do mapa e ligar o COAL BASIN do deus TOPH, e com isso o coal basin apagado ele se acende e remove uma arvore e assim abrindo um túnel para entrar no sarcófago do deus TOPH . A potion e a 7588 (strong healing potion) Ao da use na potion e clica no COAL BASIN (circulo preto) ele se acende igual o que esta ao seu lado, e removendo a arvore (circulo branco) fazendo abrir um túnel (7933). Só que o player sô tem 10 segundos pra entrar, assim que passar os 10 segundos o COAL BASIN se apaga e remove o túnel e a arvore volta ao mesmo lugar. Informações sobre o OT Versão : 8.6 TFS: 0.4 IN ENGLISH I'm go at COAL Basin (on fire) and click to use, i gain the potion and now i going to the other side of quest and use de potion in COAL Basin (wiped out). When i use de potion in coal GOD TOPH remove the tree and open a hole, i have 10 seconds to go the templo of GOD TOPH (like image), when over the time, the COAL put out the fire and summon the tree again. Information about server Version : 8.6 TFS: 0.4
  9. Olá, eu utilizo esse script, só que ele esta com 2 erros, ele não mostra o MAGIC INCREASE e nem o PROTECTION (energy, physical, holy, earth, fire ..... = all) OT: 8.6 TFS : 0.4
  10. Olha na seção de Downloads la você encontra boas bases.
  11. Já procurou RME extendido? tenta ESSE AQUI ou ESSE
  12. procura no arquivo a linha 8, vai ter isso la $worlds .= ' <a href="?subtopic=livestreams&?world='.$id.'">'.$world_n.'</a> , '; remove o "?" entre &?world
  13. Vamos mudar teu arquivo de cast.php <?PHP $update_interval = 2; if(count($config['site']['worlds']) > 1) { $worlds .= '<i>Select world:</i> '; foreach($config['site']['worlds'] as $id => $world_n) { $worlds .= ' <a href="?subtopic=livestreams&world='.$id.'">'.$world_n.'</a> , '; if($id == (int) $_GET['world']) { $world_id = $id; $world_name = $world_n; } } $main_content .= substr($worlds, 0, strlen($worlds)-3); } if(!isset($world_id)) { $world_id = 0; $world_name = $config['server']['serverName']; } // Sorting type $order = $_REQUEST['order']; if($order == 'level') $orderby = 'level'; elseif($order == 'vocation') $orderby = 'vocation'; if(empty($orderby)) $orderby = 'name'; $tmp_file_name = 'cache/livestreams-'.$orderby.'-'.$world_id.'.tmp'; if(file_exists($tmp_file_name) && filemtime($tmp_file_name) > (time() - $update_interval)) { $tmp_file_content = explode(",", file_get_contents($tmp_file_name)); $number_of_players_online = $tmp_file_content[0]; $players_rows = $tmp_file_content[1]; } else { $players_online_data = $SQL->query('SELECT * FROM players WHERE world_id = '.(int) $world_id.' AND stream_status > 0 AND online > 0 ORDER BY '.$orderby); $number_of_players_online = 0; foreach($players_online_data as $player) { $number_of_players_online++; $acc = $SQL->query('SELECT flag, vip_time FROM '.$SQL->tableName('accounts').' WHERE '.$SQL->fieldName('id').' = '.$player['account_id'].' LIMIT 1;')->fetch(); if(is_int($number_of_players_online / 2)) $bgcolor = $config['site']['darkborder']; else $bgcolor = $config['site']['lightborder']; $skull = ''; if($config['site']['show_skull']) { if ($player['skulltime'] > 0 && $player['skull'] == 3) $skull = '<right><image src="./images/whiteskull.gif"/></right>'; elseif ($player['skulltime'] = $player['skull'] == 4) $skull = '<right><image src="./images/redskull.gif"/></right>'; elseif ($player['skulltime'] = $player['skull'] == 5) $skull = '<right><image src="./images/blackskull.gif"/></right>'; } $players_outfit_row = ''; if($config['site']['show_outfit']) $players_outfit_row .= '<TD ALIGN="right">'.$skull.'<center><image src="'.getOutfitLink($player['id']).'"/></center></TD>'; $players_rows .= ' <TR BGCOLOR='.$bgcolor.'> <TD><center><image src="images/flags/'.$acc['flag'].'.png"/></center></TD> '.$players_outfit_row.' <TD><A HREF="?subtopic=characters&name='.$player['name'].'">'.$player['name'].'</A></TD> <TD>'.$player['stream_desc'].'</TD> <TD>'.$player['level'].'</TD> <TD>'.$vocation_name[$world_id][$player['promotion']][$player['vocation']].'</TD> <TD>'.($acc['vip_time'] > 0 ? '<font color="green"><b>VIP</b></font>' : '<font color="red"><b>NO</b></font></TD>').' </TR>'; } file_put_contents($tmp_file_name, $number_of_players_online.','.$players_rows); } 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>There are no players streaming right now on <b>'.$config['site']['worlds'][$world_id].'</b>.</TD></TR> </TABLE> </TD> </TR> </TABLE> <BR>'; else { //Vocations pics $vocs = array(); foreach($SQL->query('SELECT `vocation`, COUNT(`id`) AS `count` FROM `players` WHERE `world_id` = "'.$world_id.'" AND `online` > 0 GROUP BY `vocation`') as $entry) $vocs[$entry['vocation']] = $entry['count']; $main_content .= ' <div class="TableContainer" > <table class="Table1" cellpadding="0" cellspacing="0" > <div class="CaptionContainer" > <div class="CaptionInnerContainer" > <span class="CaptionEdgeLeftTop" style="background-image:url(http://static.tibia.com/images/global/content/box-frame-edge.gif);" /></span> <span class="CaptionEdgeRightTop" style="background-image:url(http://static.tibia.com/images/global/content/box-frame-edge.gif);" /></span> <span class="CaptionBorderTop" style="background-image:url(http://static.tibia.com/images/global/content/table-headline-border.gif);" ></span> <span class="CaptionVerticalLeft" style="background-image:url(http://static.tibia.com/images/global/content/box-frame-vertical.gif);" /></span> <div class="Text" >World Information</div> <span class="CaptionVerticalRight" style="background-image:url(http://static.tibia.com/images/global/content/box-frame-vertical.gif);" /></span> <span class="CaptionBorderBottom" style="background-image:url(http://static.tibia.com/images/global/content/table-headline-border.gif);" ></span> <span class="CaptionEdgeLeftBottom" style="background-image:url(http://static.tibia.com/images/global/content/box-frame-edge.gif);" /></span> <span class="CaptionEdgeRightBottom" style="background-image:url(http://static.tibia.com/images/global/content/box-frame-edge.gif);" /></span> </div> </div> <tr> <td> <div class="InnerTableContainer" > <table style="width:100%;" > <tr> <td class="LabelV150" ><b>Status:</b></td> <td>Online</td></tr><tr><td class="LabelV150" ><b>Live Streams:</b></td> <td>'.$number_of_players_online.'</td></tr><tr><td class="LabelV150" ><b>Creation Date:</b></td> <td>30/11/2010</td></tr> <tr><td class="LabelV150" ><b>Location:</b></td><td>Brazil</td></tr> <tr><td class="LabelV150" ><b>PvP Type:</b></td><td>Open PvP</td></tr> <tr> <td class="LabelV150" ><b>World Quest Titles:</b></td> <td><a href="?subtopic=lightbearer">Lightbearer</a></td> </tr> </table> </div> </td> </tr> </table> </div> <br>'; //list of players $width_name = 35; if($config['site']['show_outfit']) { $players_outfit_row = '<TD WIDTH=5%><a href="" CLASS=white >Outfit</a></TD>'; $width_name = 30; } $main_content .= ' <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%> <TR BGCOLOR="'.$config['site']['vdarkborder'].'"> <TD WIDTH=5%><a href="" CLASS=white >Country</a></TD> '.$players_outfit_row.' <TD WIDTH='.width_name.'%><A HREF="?subtopic=livestreams&order=name&world='.$world_id.'" CLASS=white>Name</A></TD> <TD WIDTH=40%><A HREF="?subtopic=livestreams&order=stream_desc&world='.$world_id.'" CLASS=white>Stream Description</A></TD> <TD WIDTH=5%><A HREF="?subtopic=livestreams&order=level&world='.$world_id.'" CLASS=white>Level</A></TD> <TD WIDTH=10%><A HREF="?subtopic=livestreams&order=vocation&world='.$world_id.'" CLASS=white>Vocation</TD> <TD WIDTH="5%><a href="" CLASS=white >VIP</a></TD></TR>'.$players_rows.'</TABLE>'; //search bar $main_content .= ' <BR> <FORM ACTION="?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>'; } ?> ALTER TABLE `players` ADD `cast` TINYINT NOT NULL DEFAULT '0', ADD `castViewers` INT( 11 ) NOT NULL DEFAULT '0', ADD `castDescription` VARCHAR( 255 ) NOT NULL
  14. Testa esse ALTER TABLE `players` ADD `viewers` INTEGER(11) NOT NULL DEFAULT 0;
  15. posta o arquivo que ali aparece. cast.php
  16. Neste tópico você encontra toda as colunas que você precisa.
  17. Ali esta falando que esta faltando uma coluna na sua database. Nos dois erros.
  18. Procura no script "?" na hora de copiar aqui do Tk esta dando um bug que aparece "?" no meio do script.
  19. Olá The Oracle.xml oracle.lua Promotion.xml promotion.lua
  20. Atualizei o primeiro post. Da uma olhada la.
  21. Reiniciar o server e tenta de novo.
  22. "um ai"? ???? Manda print de quando voce fala com ele por favor.
  23. Na hora de salvar o arquivo vai em SALVAR COMO e muda a codificação do arquivo para ANSI. Sempre fecha e abre o server dnv na hora de testar um NPC
  24. <?xml version="1.0" encoding="UTF-8"?> <npc name="The Oracle" script="oracle.lua" walkinterval="0" floorchange="0"> <health now="100" max="100"/> <look typeex="1448" corpse="3128"/> </npc>

Informação Importante

Confirmação de Termo