Ir para conteúdo

SkyDangerous

Lorde
  • Total de itens

    2098
  • Registro em

  • Última visita

  • Dias Ganhos

    16

Tudo que SkyDangerous postou

  1. Sim. O lugar não seria esse aqui , aqui é de scripts (LUA) isso usará c++ , então para as pessoas ajudarem concerteza o melhor lugar é. http://www.xtibia.com/forum/forum/586-programacao-open-tibia/ -== TÒPICO. Não vai encontrar ajuda , pois isso deve ser muito dificil de se fazer , só pagando mesmo.
  2. Não curti não. O formato até que dá pra dizer que está legal , mas o espaço está muito grande e com poucos detalhes de um castelo.
  3. Olha o link: http://www.xtibia.com/forum/topic/137431-gesior-aacshop-itens-com-categorias/
  4. Amigo acessa o tópico Open Servers ou na listas de servidores , tem um monte de servidor para escolher.
  5. Se ele não funcionar , você não deve ter feito tudo corretamente , e não está deixando você terminar a instalação. Se possivél , faça novamente com todas as steps.
  6. Mas é uma discussão em relação a scripts. Então deveria ser "Duvidas em Scripts"
  7. Pow Ninguem de Londrina ou Perto não ?? Que chato ;*

    1. testepaulinho

      testepaulinho

      Poxa ajuda com alguns script ? ( !bless ) ex !

  8. Essa é a formula (((skill + 25) / 3) + (level / 5)), -((skill + 25) + (level / 5)) Quanto maior mais forte , tenque fazer o calculo , que é chato de fazer ;D e tem esse: setAttackFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 25, 23, 25, 27) Que nao me lembro que cada numero faz , só sei que aumentar o dano aumenta
  9. ;D Provavelmente acontece isso poque ele acessa o seu site , e lá ele modifica. Só botar senha .D
  10. Excelente ! Na mnha primeira sprite saiu tudo torto , a sua saiu bunitinha ;D pARABÉNS !
  11. Tenho certeza que alguma coisa que modificou e ta dando erro. Eu baixei o site do pokemon , também dava erro , eu fiz certinho que o cara pediu e deu certo. Então verifica se fez tudo certo.
  12. Olha , nao tenho tempo para ficar testando. Eu tentei fazer aqui para ver se ajuda , eu estou sem tempo para fazer scripts. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} 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 function creatureSayCallback(cid, type, msg) if(not npcHandler:isFocused(cid)) then return false end local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid if msgcontains(msg, 'mission') then if getPlayerStorageValue(cid,2599) == 1 then selfSay('Me entregue 50 hydra eggs e recebe knight armor , quer aceitar? {yes} para aceitar e {no} para cancelar', cid) talkState[talkUser] = 1 else selfSay('Entao cai fora', cid) end elseif talkState[talkUser] == 1 then if msgcontains(msg, 'yes') then if doPlayerRemoveItem(cid,4850,50) == 1 then setPlayerStorageValue(cid,2599,1) doPlayerAddItem(cid,2476,1) selfSay('Obrigado. voce recebeu sua recompensa', cid) talkState[talkUser] = 0 else selfSay('Voce nao tem 50 hydra eggs', cid) end else selfSay('Sai daqui noob', cid) end end return true end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new())
  13. Eu uso o win 7 e nunca deu isso. Deve ser seu executavél ;( Utilize o crystal server. Corrigir: axe era exe né?
  14. Tópico lugar errado. Reportado :button_cancel:
  15. Muito complicado para ver tudo isso ;( Desculpe , tentei ajudar. Vê se assim resolve <?php /* Copyright © 2007 - 2008 Nicaw This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ class IOBox { private $elements, $buttons, $name, $label; public $target, $icon; function __construct($name){ $this->name = $name; $buttons = 0; } public function addMsg($msg){ $this->elements[]= '<p style="margin: 5px">'.$msg.'</p>'; } public function addSelect($name,$options){ $code = '<select id="'.$this->name.'__'.$name.'" name="'.$this->name.'__'.$name.'">'; foreach (array_keys($options) as $option){ $code.= '<option value="'.$option.'">'.$options[$option].'</option>'; } $code.= '</select> <label for="'.$this->name.'__'.$name.'">- '.ucfirst($name).'</label>'; $this->elements[] = $code; } public function addCaptcha(){ global $cfg; if(!$cfg['use_captcha']) return; if (isset($_POST['ajax'])) $img = 'doimg.php?'.time(); else $img = '../doimg.php?'.time(); $_SESSION['RandomText'] = substr(str_shuffle(strtolower('qwertyuipasdfhjklzxcvnm12345789')), 0, 6); $this->elements[]= '<img width="250px" height="40px" src="'.$img.'" alt="Verification Image"/>'; $this->elements[]= '<input id="captcha" name="'.$this->name.'__captcha" type="text" maxlength="10" style="text-transform: uppercase"/> <label for="captcha">- Verification</label>'; } public function addInput($name, $type = 'text', $value = '', $length = 100, $readonly = false){ if ($readonly) $readonly = ' readonly="readonly"'; else $readonly = ''; $this->elements[]= '<input id="'.$this->name.'__'.$name.'" name="'.$this->name.'__'.$name.'" type="'.$type.'" maxlength="'.$length.'" value="'.$value.'"'.$readonly.'/> <label for="'.$this->name.'__'.$name.'">- '.ucfirst($name).'</label>'; } public function addCheckBox($name, $check = false){ if ($check) $check = ' checked="checked"'; else $check = ''; $this->elements[]= '<input type="checkbox" id="'.$this->name.'__'.$name.'" name="'.$this->name.'__'.$name.'"'.$check.'> <label for="'.$this->name.'__'.$name.'">'.ucfirst($name).'</label>'; } public function addTextbox($name,$value = '',$cols = 40,$rows = 10){ $this->elements[]= '<textarea name="'.$this->name.'__'.$name.'" cols="'.$cols.'" rows="'.$rows.'">'.$value.'</textarea>'; } public function addSubmit($text){ $this->buttons[]= '<input style="width: 100px; height: 25px;" type="submit" name="'.$this->name.'__'.$this->name.'" value="'.$text.'"/>'; } public function addReload($text){ $this->buttons[]= '<input style="width: 100px; height: 25px;" onclick="ajax(\'form\',\''.htmlspecialchars($_SERVER['PHP_SELF']).'\',\'\',true)" type="button" name="'.$this->name.'__'.$this->name.'" value="'.$text.'"/>'; } public function addRefresh($text){ $this->buttons[]= '<input onclick="location.reload(false)" type="button" style="width: 100px; height: 25px;" value="'.$text.'"/>'; } public function addClose($text){ $this->buttons[]= '<input style="width: 100px; height: 25px;" onclick="document.getElementById(\'iobox\').style[\'visibility\'] = \'hidden\'" type="button" value="'.$text.'"/>'; } public function addCode($code){ $this->elements[]= $code; } public function addLabel($code){ $this->label = '<legend>'.$code.'</legend>'; } public function getCode(){ if (isset($_POST['ajax'])) $code = '<table cellspacing="10px" onmouseup="Cookies.create(\'iobox_x\',document.getElementById(\'iobox\').style.left,1);Cookies.create(\'iobox_y\',document.getElementById(\'iobox\').style.top,1);" style="visibility:hidden" id="iobox" class="draggable"><tr><td><fieldset>'.$this->label.'<form id="'.$this->name.'" action="javascript:ajax(\'form\',\''.htmlspecialchars($this->target).'\',getParams(document.getElementById(\''.$this->name.'\')),true)" method="post">'; else $code = '<div id="iobox" class="iobox"><fieldset>'.$this->label.'<form id="'.$this->name.'" action="'.htmlspecialchars($this->target).'" method="post">'; foreach ($this->elements as $element) $code.= $element."<br/><div style=\"margin-top: 5px;\"></div>\r\n"; $code.= '<hr style="margin: 10px 2px 2px 2px; padding: 0;"/> | '; foreach ($this->buttons as $button) $code.= $button." | \r\n"; $code.= '</form></fieldset></td></tr></table>'; return $code; } public function show(){ echo $this->getCode(); } } class Form { public $attrs; public function __construct($name){ foreach( array_keys($_POST) as $key){ if ('^'.$name.'__',$key)){ $p = explode('__', $key); $this->attrs[$p[1]] = trim($_POST[$key]); } } } public function getBool($attr){ return $this->attrs[$attr] === 'on'; } public function exists(){ if (isset($this->attrs)) return true; else return false; } public function validated(){ global $cfg; if (!$cfg['use_captcha']) return true; if (strtolower($this->attrs['captcha']) === $_SESSION['RandomText'] && !empty($_SESSION['RandomText'])){ $_SESSION['RandomText'] = null; return true; }else return false; } }
  16. Amigo. Me passa o arquivo iobox.php. Para conferir.
  17. Amigo. Se possivél me ajudar. Ele irá receber uma recompença ?
  18. Nossa ! Não é complicado fazer isso , porém dá trabalho eu ficar fazendo as coisas. So nao ajudo , por que estou no global ;( Mas isso não é tão inovador ñ
  19. Bom. Mas não acho uma boa citar qual exp é boa , isso varia muito de pessoa para pessoa. Fazer sucesso e ter gente noob no servidor coloca 999x , demorar pra fazer sucesso e só ter gente que gosta de pvp coloca uns 25x mais ou menos. Mas ta valendo .D
  20. Ui.. Desenhos lindos ;D Parabéns xD
  21. Amigo. Usa o dmz desbloqueia todas as portas , e evita você ficar perdendo tempo desbloqueando 1 por 1.
  22. Você não citou as portas. Então , precissa desbloquear elas que são 8090 e 80.
  23. uhuh' Criativo , ja vo por no meu servidor ;D REP + ;d
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...