Ir para conteúdo

AlexandreKG

Marquês
  • Total de itens

    1153
  • Registro em

  • Última visita

  • Dias Ganhos

    3

Tudo que AlexandreKG postou

  1. -Vital900 Em mapa de WoDBO, o 2.2 Da mais erro ainda.Dai voce perde 1 mes editando.Este é o maos apropriado para passar versao de mapa de WoDBO.Hoje mesmo vou postar um tutorial de como fazer,isso.Agora não posso estou no curso de Photoshop. Abraços.
  2. Bom dia amigo.. Eu ja usei VPS da UOLHost,porém nao recomendo muito porque nao tem nenhuma proteção lá. Eu recomendaria estas empresas: OTSERVHost WebLara HostingJogos São as melhores na minha opnião,voce não pode escolher uma empresa pelo preço e sim pelo atendimento. Espero ter ajudado..Abraços.
  3. Bom dia amigo. Eu usei este RME 2.1 para mudar a versão do meu.Ele só buga os tiles fica bugado e tudo mais dai vc tem que arruma,mais esses tiles bugados nao impedem voce de entrar no server,para testar. Abraços.
  4. Abra o arquivo initizalize.js e ponha isto dentro: /** ------------------------------------------------------------------ * JavaScripts which are loaded by the OnLoad function of the body tag * ------------------------------------------------------------------- */ // executes JavaScripts for the loginbox and the menu function InitializePage() { LoadLoginBox(); LoadMenu(); } // functions for mouse-over and click events of non-content-buttons function MouseOverBigButton(source) { source.firstChild.style.visibility = "visible"; } function MouseOutBigButton(source) { source.firstChild.style.visibility = "hidden"; } /** --------------------- * Loginbox functionality * ---------------------- */ // initialisation of the loginbox status by the value of the variable 'loginStatus' which is provided to the HTML-document by PHP in the file 'header.inc' function LoadLoginBox() { if(loginStatus == "false") { document.getElementById('LoginstatusText_1').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-you-are-not-logged-in.gif')"; document.getElementById('ButtonText').style.backgroundImage = "url('" + IMAGES + "/buttons/_sbutton_login.gif')"; document.getElementById('LoginstatusText_2').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-create-account.gif')"; document.getElementById('LoginstatusText_2_1').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-create-account.gif')"; document.getElementById('LoginstatusText_2_2').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-create-account-over.gif')"; } else { document.getElementById('LoginstatusText_1').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-welcome.gif')"; document.getElementById('ButtonText').style.backgroundImage = "url('" + IMAGES + "/buttons/_sbutton_myaccount.gif')"; document.getElementById('LoginstatusText_2').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-logout.gif')"; document.getElementById('LoginstatusText_2_1').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-logout.gif')"; document.getElementById('LoginstatusText_2_2').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-logout-over.gif')"; } } // mouse-over and click events of the loginbox function MouseOverLoginBoxText(source) { source.lastChild.style.visibility = "visible"; source.firstChild.style.visibility = "hidden"; } function MouseOutLoginBoxText(source) { source.firstChild.style.visibility = "visible"; source.lastChild.style.visibility = "hidden"; } function LoginButtonAction() { if(loginStatus == "false") { window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement"; } else { window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement"; } } function LoginstatusTextAction(source) { if(loginStatus == "false") { window.location = LINK_ACCOUNT + "/?subtopic=createaccount"; } else { window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement&action=logout"; } } /** ------------------ * Menu functionality * ------------------ */ var menu = new Array(); menu[0] = new Object(); var unloadhelper = false; // load the menu and set the active submenu item by using the variable 'activeSubmenuItem' (provided to HTML-document by PHP in the file 'header.inc' function LoadMenu() { document.getElementById("submenu_"+activeSubmenuItem).style.color = "white"; document.getElementById("ActiveSubmenuItemIcon_"+activeSubmenuItem).style.visibility = "visible"; if(self.name.lastIndexOf("&") == -1) { self.name = "news=1&account=0&community=0&wars=0&library=0&forum=0&shops=0&"; } FillMenuArray(); InitializeMenu(); } function SaveMenu() { if(unloadhelper == false) { SaveMenuArray(); unloadhelper = true; } } // store the values of the variable 'self.name' in the array menu function FillMenuArray() { while(self.name.length > 0 ){ var mark1 = self.name.indexOf("="); var mark2 = self.name.indexOf("&"); var menuItemName = self.name.substr(0, mark1); menu[0][menuItemName] = self.name.substring(mark1 + 1, mark2); self.name = self.name.substr(mark2 + 1, self.name.length); } } // hide or show the corresponding submenus function InitializeMenu() { for(menuItemName in menu[0]) { if(menu[0][menuItemName] == "0") { document.getElementById(menuItemName+"_Submenu").style.visibility = "hidden"; document.getElementById(menuItemName+"_Submenu").style.display = "none"; document.getElementById(menuItemName+"_Lights").style.visibility = "visible"; document.getElementById(menuItemName+"_Extend").style.backgroundImage = "url(" + IMAGES + "/general/plus.gif)"; } else { document.getElementById(menuItemName+"_Submenu").style.visibility = "visible"; document.getElementById(menuItemName+"_Submenu").style.display = "block"; document.getElementById(menuItemName+"_Lights").style.visibility = "hidden"; document.getElementById(menuItemName+"_Extend").style.backgroundImage = "url(" + IMAGES + "/general/minus.gif)"; } } } // reconstruct the variable "self.name" out of the array menu function SaveMenuArray() { var stringSlices = ""; var temp = ""; for(menuItemName in menu[0]) { stringSlices = menuItemName + "=" + menu[0][menuItemName] + "&"; temp = temp + stringSlices; } self.name = temp; } // onClick open or close submenus function MenuItemAction(sourceId) { if(menu[0][sourceId] == 1) { CloseMenuItem(sourceId); } else { OpenMenuItem(sourceId); } } function OpenMenuItem(sourceId) { menu[0][sourceId] = 1; document.getElementById(sourceId+"_Submenu").style.visibility = "visible"; document.getElementById(sourceId+"_Submenu").style.display = "block"; document.getElementById(sourceId+"_Lights").style.visibility = "hidden"; document.getElementById(sourceId+"_Extend").style.backgroundImage = "url(" + IMAGES + "/general/minus.gif)"; } function CloseMenuItem(sourceId) { menu[0][sourceId] = 0; document.getElementById(sourceId+"_Submenu").style.visibility = "hidden"; document.getElementById(sourceId+"_Submenu").style.display = "none"; document.getElementById(sourceId+"_Lights").style.visibility = "visible"; document.getElementById(sourceId+"_Extend").style.backgroundImage = "url(" + IMAGES + "/general/plus.gif)"; } // mouse-over effects of menubuttons and submenuitems function MouseOverMenuItem(source) { source.firstChild.style.visibility = "visible"; } function MouseOutMenuItem(source) { source.firstChild.style.visibility = "hidden"; } function MouseOverSubmenuItem(source) { source.style.backgroundColor = "#14433F"; } function MouseOutSubmenuItem(source) { source.style.backgroundColor = "#0D2E2B"; } /** ------------------------- * functions related to forms * -------------------------- */ // set cursor focus in form (g_FormName) to field (g_FieldName) function SetFormFocus() { if (g_FormName.length > 0 && g_FieldName.length > 0 ) { document.forms[g_FormName].elements[g_FieldName].focus(); } } // toggle masked texts with readable texts function ToggleMaskedText(a_TextFieldID) { m_DisplayedText = document.getElementById('Display' + a_TextFieldID).innerHTML; m_MaskedText = document.getElementById('Masked' + a_TextFieldID).innerHTML; m_ReadableText = document.getElementById('Readable' + a_TextFieldID).innerHTML; if (m_DisplayedText == m_MaskedText) { document.getElementById('Display' + a_TextFieldID).innerHTML = document.getElementById('Readable' + a_TextFieldID).innerHTML; document.getElementById('Button' + a_TextFieldID).src = IMAGES + '/general/hide.gif'; } else { document.getElementById('Display' + a_TextFieldID).innerHTML = document.getElementById('Masked' + a_TextFieldID).innerHTML; document.getElementById('Button' + a_TextFieldID).src = IMAGES + '/general/show.gif'; } } Tomara que funcione
  5. Mano é obvio que nao entrar assim: tente: darkpokem.zapto.org:8090 e para voce localhost:8090
  6. Amigo,por que nao cria uma pagina,em PHP,dai voce poem as informações do dados de depositos e pronto ...
  7. Amigo,faça o seguinte... Baixe Este Modern ACC Escolha um WebServer de sua preferencia Criando WebSite,com xampp Espero ter ajudado...
  8. Bom,amigo dei uma pesquisada achei este tutorial interesante. Link Espero lhe-ajude...
  9. Amigo,voce deixo ou espaço antes do /,retire-o. E para arrumar as vocações.Voce olhe nas linhas <skill id="0" multiplier="1.1"/> <skill id="1" multiplier="1.1"/> <skill id="2" multiplier="1.1"/> <skill id="3" multiplier="1.1"/> <skill id="4" multiplier="1.4"/> <skill id="5" multiplier="1.1"/> <skill id="6" multiplier="1.1"/> Deixe mais ou menos assim: <skill id="0" multiplier="0.1"/> <skill id="1" multiplier="0.1"/> <skill id="2" multiplier="0.1"/> <skill id="3" multiplier="0.1"/> <skill id="4" multiplier="0.4"/> <skill id="5" multiplier="0.1"/> <skill id="6" multiplier="0.1"/> Nao sei se vai ajudar mais tenta ai.
  10. Nao sabe ajeitar o post? Simples olhe no seu post,do lado da caixinha Multiquote vem um pouco para ca <-,e vai ter Editar,dai voce clica e voce vai poder editar seu post. Espero ter ajudado ...
  11. Amigo,ponha codigos em PHP ou Script .lua sempre em : [ code] [ /code] ou [ spoiler] [ /spoiler] Para ficar mais organizado,e quanto ao equilibrio,mude tudo para 1.0 e menos.
  12. Pode ignorar,nao faço minima questao de falar com vc.
  13. Meu rl,tem ps3.Vo avisar ele Valeu Won.
  14. Consegui arrumar ja,pessoal. Duvida sanada,reportado para moverem. Obrigado,a todos ai que me ajudaram (ou tentaram me ajuda)
  15. Novo titulo e adicionado uma nova tirinha ;x
  16. Ótimo tutorial,parabéns. Ajude a sessão ,retornar a ativa.
  17. Tutorial,excelente,mas poderia dar uma formatada melhor nao acha? E essa parte aqui: Resultado final: Dúvidas Frequentes: Onde está o resultado final?
  18. Estou aqui para ajudar,oque estiver em meu alcance,todos que pedirem ajuda,eu certamente,tentarei ajudar. "Alias,nao custa tentar."
  19. Eu tenho GVT Power Box,aqui tambem,e na hora de ir em Configurações > Jogos e Aplicações, nao tem Tibia nem Open Tibia,entao eu usei Half Life e Half Life server,e esta dando certo aqui.
  20. Voce precisa desbloquar as portas do firewall,verifique se as configurações de ip estao normais,o ip de acesso para o hoster é localhost ou 127.0.0.1
  21. Onde ele vai editar o id do efeito?
  22. Ótimo tutorial,obrigado por fazer estas runas,vou adicionar em meu wodbo.
  • Quem Está Navegando   0 membros estão online

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