Jump to content

Tsuuu

Members
  • Content Count

    80
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Tsuuu

  1. Good morning, first of all, thank you very much to those who are willing to help me ... I am trying to run the emulator on vps (host) but the configure file is not recognized at all, I already tried several things, install multiple dependencies, I already followed several tutorials and I can not make the file work, could someone help me with this task ? I just wanted to put my server online, but I'm inexperienced in the subject. Thank you very much. @edit now is another problem
  2. I would like to know how do I forbid certain classes to use certain equipment. I already tried using Does not work. :/ Is there a list of job class identifiers?
  3. Tsuuu

    [Mob] Pet Mob

    Sim, olhei, mas não entendi como transformar um monstro em pet, eu já tentei fazer algumas alterações no arquivo mas não tive suesso !
  4. Tentei pesquisar sobre o assunto mais não encontrei nada concreto, talvez as labels de pesquisa não estavam em conjunto com os tópicos... Gostaria de saber como eu faço pra tornar um monstro um pet e se possível colocar algumas condições pra ele, como por exemplo: aumentar algum stats ou dá algum efeito quando se está usando e principalmente como faço pra colocar restrição de uso. Se alguém puder me informar onde eu olho essas configurações eu ficarei grato.
  5. I'm at work and I can not test now, as soon as I get home I'm going to test, thank you very much for helping me, I'll return on this topic to notify you if it worked or not @edit Forgive me the delay, you helped me, thank you very much, could you inform me where I see the documentation of these parameter commands? It stayed like this, works perfectly without any warning on the map-serv: OnAtcommand4: getmapxy @map$,@x,@y,0; if(@map$=="bra_dun01") { message strcharinfo(0),"WARP OFF."; end; } else { if(.@atcmd_numparameters == 3) { if ( WARPCOORCD + 5 > gettimetick(2) ) { dispbottom "[Delay Warp com Coordenadas] ---> Você precisa esperar " + ( WARPCOORCD + 5 - gettimetick(2) ) + " segundos."; end; } else { atcommand "@warp "+.@atcmd_parameters$[0]+" "+.@atcmd_parameters$[1]+" "+.@atcmd_parameters$[2]+""; WARPCOORCD = gettimetick(2); end; } } else if(.@atcmd_numparameters == 2){ dispbottom "Você utilizou o warp com coordenadas erradas, corriga o comando."; end; } else { atcommand "@warp "+.@atcmd_parameters$[0]+""; } } }
  6. Good Morning, could someone tell me how I can remove this 'warning' in map-server: Here is the script: PS: I'm a beginner, so please do not repair the code, just help me optimize it. PS²: I sure use hercules.
  7. Hello guys, well... I've a little problem, I changed the server lv max to 255, but when I try to change the lv max of the caracter, HP and SP return to 150/150, but if the caracter got the lv 150, he has 30k HP and 5k SP ( it's normal ), who knows what could it be?
  8. For all have errors: download ActEditor: https://rathena.org/board/files/file/3304-act-editor/ look red parts and change sprite number of soword red, you can also change the switch time as wish..\/ Ps: for you who have downloaded and are using the friend's work please deems to +1 , it is the least you can do..
  9. Thank you for sharing your work... +1
  10. Tsuuu

    Warning

    Troca os numeros pelos nomes http://nn.ai4rei.net/dev/npclist/?qq=8
  11. Hello , I found this function but can not remember where , everything works as expected, but would like to make a change in function and do not know how. The function lists all the teams of the character, wanna listed only head - top , armor, shield , boots and robe, also list only those who have without this item , those already equipped stay off the list. it's possible? Could someone please help me? it's possible it's possible Function source: /*======================================================= * Returns where the current item is equipped. *-------------------------------------------------------*/ BUILDIN(getequippedon) { int i = status->current_equip_item_index; struct map_session_data *sd; if (( sd = script->rid2sd(st) ) != NULL) { switch (i) { case EQI_HAND_L: script_pushint(st, ( sd->inventory_data[i]->type == IT_ARMOR ? EQP_SHIELD : EQP_WEAPON )); break; default: script_pushint(st, sd->status.inventory[i].equip); break; } } else script_pushint(st, 0); return 0; } Item_db: Id: 9999 AegisName: "Diablo_Enchant" Name: "Diablo Enchant" Type: 11 Script: <" callfunc( "F_DiabloEnchant",9999,909 ); "> }, { Id: 909 AegisName: "Jellopy" Name: "Jellopy" Buy: 6 Weight: 10 BuyingStore: true Script: <" .@eqp = getequippedon(); if (.@eqp & EQP_ARMOR) { bonus bVit,100; } if (.@eqp & EQP_HEAD_TOP) { bonus bInt,100; } if (.@eqp & EQP_SHOES) { bonus bAgi,100; } ">
  12. Yeah, probably I was wrong, i'm sorry. I thought it was easy, thought it was just studying how is the mob_chat_db file that I could. Thanks.
  13. Hello , I did a little research and found nothing on the subject... How do or where I see where have the exact configuration of the speech of a monster? For example mvp moc_fild22 , it has a sequence of functional lines to talk.. but do not know how to do this setting to other MVPs , would like to create a file to make it work or even edit the existing and set up for each monster ? Could someone please help me? Any answer is welcome, even to study on the subject ! Thanks... Ps: File-->mob_chat_db.txt .. hehe
  14. Tsuuu

    npctalk

    exactly, thanks. I will be grateful to you.
  15. Tsuuu

    npctalk

    I'm sorry for the delay , I tried every way and none worked... You have any other idea where I look or search? Obs: Thank you for answer to my topic
  16. Tsuuu

    npctalk

    It is possible to change the color of the writing of "npctalk" in chat? Or will always be white? I'm sorry if I posted the wrong place.
  17. Holy shit , thank you, how can this, i need to study more, i did not realize ,. Problem solved, God bless you ! @edit Script working perfectly here \/ I need to study more I need to study more
  18. Hello, good afternoon, someone could help me in this script ? good, I caught a CP IN Game and added an option to reset position of character, but when the menu appears for selection of characters something is wrong, when I select the first character it returns me the second and when I select the last in the list it returns me null, ie my repetition structure is in the index with a value more... I do not know how to solve this , someone could give me some tips please ? Ps: My english is bad but i understand with help of translater. Ps²: I'm sorry if I was not clear in the words, I am willing to provide any iformação in the code for better understanding query_sql "SELECT `name` FROM `char` WHERE `account_id` = '"+getcharid(3)+"'",@chars$; case 3: next; mes .cp$; mes "Selecione qual personagem você deseja resetar posição"; next; switch(select("Escolher Personagem")) { case 1: for (.@i = 1; .@i < getarraysize(@chars$); .@i++) { //Here I ride the menu .@menu$ = .@menu$ +" "+ @chars$[.@i]; .@menu$ = .@menu$ + ":"; } .@escolha = select(.@menu$); .@char$ = @chars$[.@escolha]; break; } mes .cp$; mes "Deseja resetar a posição do personagem ^0000ff"+.@char$+"^000000?"; //Here I see that the return value is 1 more next; if (select("- ^0000ffSim^000000:- Não") == 2) close; query_sql "UPDATE `char` SET `last_map` = 'prontera', `last_x` = 50, `last_y` = 50 WHERE `name` = '"+.@char$+"'"; mes .cp$; mes "Posição resetada !"; close;
  19. Solved, forgive my stupidity, you are the best... Can close this topic, thanks.
  20. Hello, good afternoon, first I would like to say that I am Brazilian and my english is bad but i understand and peopl to not notice my english. Did a search and found nothing related to what I'm looking , I saw a system of buying items from merchant, something related to this skill call buying store: http://ratemyserver.net/index.php?page=skill_db&skid=2535 Can anyone please tell me where to find it in hercules and how make for add ? Font: http://irowiki.org/wiki/Buying_Store @edit Not find the npc quest, somebody help me please somebody help me somebody help me somebody help me somebody help me somebody help messomee somebody help me somebody help me
  21. Bom, temos um meno no npc de presença que faz a troca de pontos por itens, no entanto, é definido a quantidade de itens pelo próprio menu, por exemplo, troca 1 ponto de presença por 100 ygg, gostaria de saber como faço pra adicionar um menu nesse npc pro player escolher quantos pontos ele deseja trocar, ficando assim: 1 ponto = 100 ygg Digite a quantidade de pontos que você deseja trocar: Se o jogador não tiver obviamente que vai retornar uma opção inválida, se alguém puder ajudar ficarei grato, segue abaixo o npc: Obs: O npc não é meu, não foi eu quem fiz, nem tenho nenhum crédito sobre o npc, apenas editei. @edit Pode fechar o tópico, dúvida sanada !
  22. Alguém já te falou que você é o melhor contribuidor da comunidade? Pois é, estou falando agora, devido às pesquisas que fiz e a quantidade de tópicos que eu vi sua ajuda, você pra mim é o melhor, tem conhecimento e explicações sólidas, ajudando bastante no entendimento rápido, bom, quero deixar meus mais sinceros agradecimentos, você é uma excelente pessoa, feliz é aquele que tem seus serviços as ordem ! @edit Tanta dor de cabeça por causa de nada, era só dá um "F5" no auto patch, foi a única coisa que resolveu. Podem fechar o tópico !
  23. Boa tarde, fiz a alteração da imagem da bg.bmp do thor patch, tudo funcionou perfeitamente, configurei a nova posição dos botões e tudo mais, no entanto, quando fiz a alteração da imagem (bg.jpg) de noticia na pasta web, a mesma não funciona, está pegando a imagem antiga, mesmo eu tendo apagado a imagem antiga, não tem nem de onde buscar a imagem da skin antiga e mesmo assim ela está lá, não estou entendendo o que fiz de errado ou o que deixei de fazer, alguém poderia me ajudar com alguma informação a respeito? Grato desde já ! Obs: Não sei se abri o tópico na área certa ou se dão suporte a esse tipo de coisa, caso cometi um delito, peço que movam o tópico para área correta e aceito o alerta !
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.