Jump to content

Gladius

Members
  • Posts

    235
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Gladius

  1. Man, explain in detail what you need. What kind of npc do you want? What should he do? Details!
  2. When the bonus does not exist, or is not applied correctly, the character is petrified.
  3. Rathena looks like a script delivery lol
  4. They do not charge for the use of network or hosting, it is monthly. You only start paying if you end the trial period, 12 months or $ 300.00 of credit. I usually configure the server with 600mb to 1.5gb of memory. It is enough to hold 100 to 500 players online (using ssd) If your server has many systems, events, etc., use more memory than the conventional one. If your server "crashes" because of memory your server may crash. It's hard to happen, but it can happen lol In Brazil (my country) they charge R$ 300. In dollars it should be around $ 55. I think that multiplying $ 55 x your currency should give you an approximate value. I'll send you the proxy settings, it's very simple. We can continue the conversation privately if necessary.
  5. Although the hosting is secure, I use some proxies on my server. In addition to national players, I have players from other parts of the world. So it's good to have several proxies for players to be happy with ping hahahha When the accommodation ends the trial period, your credit card is automatically charged. I use a virtual credit card to register the account, then I delete it. Sometimes I forget to turn off the VPS and charge me I accidentally lost money If you don't pay for the hosting, they block your access until you pay for it. When creating instances, always use Centos7 If you know the basics of Google Cloud VPS I can give you firewall commands. The firewall is not too difficult, I can teach you You are from which country?
  6. If you don't know hosting providers very well, ask the forum members. Everyone is here to help you! I do not trust hosting that say they sell exclusive host for ragnarok. As Akkarin said, there are many scammers. Do the same as benching_, set up your own hosting. Good luck.
  7. Google Cloud (VPS) gives you 1 year of free hosting, or $ 300 of traffic. If you configure the machine correctly, you can run your server quietly without requiring a lot of resources. My server runs for 2 to 3 months free of charge, when it is about to exceed the limit I create another account lol The only problem is that you must know how to configure the firewall of the vps. Other than that, the server runs perfectly, without lag, without crashes, without problems. I use the hosting for 3 years and it never goes down because of DDoS, their network is extremely safe and reliable, I recommend. Even when exceeding the free trial, it is only worth paying for the services. For Brazilians it costs an average of R $ 300, in dollars it should be something close to $ 55 It's a great price for the quality.
  8. yes... comment out all lines of the mob documents scripts_monsters.conf
  9. So yes ... You select only the ids of the items that will be announced when dropping... I use shapeshifters to avoid unnecessary advertisements. Some drops of mob_db items are buggy (too high, or too low), so it's best to select only what you need. If you want to advertise any item with a drop greater than or equal to% use the system that Amir Azman said that: https://github.com/rathena/rathena/blob/4f11020a4e59704f1909ec615857b6af098b3683/conf/battle/drops.conf#L143 to advertise items with 1% drop use: 100, 10% = 1000 ...
  10. Hey I recommend that you use: db/impot/item_flag.txt Exemple: 4399,16 // Thanatos Card And and change broadcast_hide_name: for 0 in /conf/battle/items.conf
  11. use: 000000,Custom_Weapon,Custom_Weapon,5,20,,1000,200,,1,4,0x00E00000,1,2,2,4,1,1,0,{},{},{} works only in these classes!
  12. 0000,custom,custom,4,20,,1000,200,,1,4,0x00E00000,1,2,2,4,1,1,0,{},{},{} You may need to change the 4 po 5, as tk and mtk do not use weapons. Attack and attack speed bonuses look weird lol I would make a weapon for SL separately, as he uses normal weapons ... If the member is asking, it is because he could not do it alone. Treat with empathy and not just copying and pasting links like you always do. it's annoying
  13. Você colocou a configuração de mvp no monstro la no mob_db? Peguei a do Ifrit como exemplo: 0x6283695 Acredito que seja apenas isso que falte.
  14. Is there any modification to the source to prevent store overlap? If the player logs into the sales spot that another player is currently using, he opens the store with an overlap. Another method of circumventing: using @warp (high rate servers) teleporting to the spot... I don't know the best way to set this up ... - Do not open a store on top of other players? Thanks!
  15. Qual sua dúvida em relação a adicionar itens? Visite o git: https://github.com/rathena/rathena/wiki/Custom-Items tem algumas informações para os novatos. Outra sugestão, use esse item_db para procurar efeitos de itens similares que você precisa: https://raw.githubusercontent.com/rathena/rathena/master/db/re/item_db.txt ps: Os combos eu faço no próprio item_db, não uso o item_combo, mas é uma opção minha... Caso seja mais fácil para você (sim, acredito que você seja iniciante), use o item_combo mesmo. Fico a disposição para lhe ajudar caso tenha dúvidas
  16. Se for o comando, tente arruma-lo antes de tentar remove-lo... Mas se quiser remover, basta tirar do groups.conf. Vá em: src/map/atcommand.cpp e procure por: ACMD_FUNC(storage) Veja se o comando está igual ou diferente do meu (Se estiver diferente, tente substituí-lo para testar: ACMD_FUNC(storage) { nullpo_retr(-1, sd); if (sd->npc_id || sd->state.vending || sd->state.buyingstore || sd->state.trading || sd->state.storage_flag) return -1; if (storage_storageopen(sd) == 1) { //Already open. clif_displaymessage(fd, msg_txt(sd,250)); // You have already opened your storage. Close it first. return -1; } clif_displaymessage(fd, msg_txt(sd,919)); // Storage opened. return 0; } Você instalou algum diff nesse eAmod? Seria interessante você dar mais detalhes para tentarmos lhe ajudar.
  17. Pow mano, eu ja usei eAmod e não tive esse problema. Talvez seja alguma outra configuração que você fez. Vá em conf/battle/player.conf e veja se a sua configuração está igual a minha: // How the server should measure the character's idle time? (Note 3) // 0x001 - Walk Request // 0x002 - UseSkillToID Request (Targetted skill use attempt) // 0x004 - UseSkillToPos Request (AoE skill use attempt) // 0x008 - UseItem Request (Including equip/unequip) // 0x010 - Attack Request // 0x020 - Chat Request (Whisper, Party, Guild, Battlegrounds, etc) // 0x040 - Sit/Standup Request // 0x080 - Emotion Request // 0x100 - DropItem Request // 0x200 - @/#Command Request // Please note that at least 1 option has to be enabled. // Be mindful that the more options used, the easier it becomes to cheat features that rely on idletime (e.g. checkidle()). // Default: walk (0x1) + useskilltoid (0x2) + useskilltopos (0x4) + useitem (0x8) + attack (0x10) = 0x1F idletime_option: 0x1F Não sei qual outro problema que pode ser... Se quiser testar o meu groups.conf, fique a vontade: groups.conf Atualize os comandos de acordo com o seu servidor.
  18. Tente usar: storage: true,false eAmod é um emulador muito antigo e desatualizado... Infelizmente esse é apenas o primeiro problema que você vai ter
  19. Eu falei lá em cima pra você, conf/groups.conf preste mais atenção
  20. Tente colocar em todos comandos um ,99 no final. Exemplo: storage: 0,99 Player normal vai usar com @ E apenas jogadores nível 99 de GM poderão usar com #. Não esqueça de reiniciar seu servidor, ou use o comando @reloadatcommand
×
×
  • Create New...

Important Information

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