Jump to content

imat1

Members
  • Posts

    101
  • Joined

  • Days Won

    5

Everything posted by imat1

  1. Thanks for this! It's working with the latest rathena! It's just missing a few boss sprites. baphomet 1039 fallen bishop 1871 egnigem cenia 1658
  2. Hello @Functor I hope you're doing well. Since Skype has been discontinued, what is the best way to contact you regarding Gepard?
  3. I'm pretty sure this is SQL side.
  4. That's how it behaves even on official ROs.
  5. The error clearly said item id 11602 in your item db does not exist.
  6. Might be the one you're looking for https://ratemyserver.net/index.php?iname=12790&page=re_item_db&quick=1&isearch=Search
  7. Show me your item script of it. I might be able to help you.
  8. Are you using costume item for it or costume via npc?
  9. try changing those base level to your max level.
  10. Item script of your custom box should be: callfunc "F_EventBox"; and add this in your npc/custom folder function script F_EventBox { // change Item ID here setarray .@i1[0],607,608; // Common Items setarray .@i2[0],512,513; // Rare Items setarray .@i3[0],514,515; // Super Rare Items set .@i1rand,rand( getarraysize(.@i1) ); // Randomize Common Items; just change max amount if you add items set .@i2rand,rand( getarraysize(.@i2) ); // Randomize Rare Items; just change max amount if you add items set .@i3rand,rand( getarraysize(.@i3) ); //Randomize Super Rare Items; just change max amount if you add items .@chance = rand(100); // Super Rare Item 1% if (.@chance == 1) { getitem .@i3[.@i3rand],1; announce "[ "+strcharinfo(0)+" ] won a [ "+getitemname(.@i3[.@i3rand])+" ] from the Event Box.",0; } else if (.@chance <= 10) { // 10% getitem .@i2[.@i2rand],1; } // Common Items else { getitem .@i1[.@i1rand],1; } end; }
  11. probably your problem lies in ExternalSettings.lub
  12. 255 is your max level? And then 254 and below shouldn't have aura right?
  13. Change 4 to 6 or maybe higher for the signboard not to overlap with your NPCs sprite. Adjust to your liking.
  14. For height. Just increase the value of those zero besides x and y coordinates. Try set to 6 for valk npc.
  15. https://github.com/rathena/rathena/blob/5b2f4e63a7b894c5438052f9fabef4885c4b6bbc/conf/msg_conf/map_msg.conf#L558
  16. Here vipicon.tga
  17. That's because of white space. Try changing every mes " > to mes ">
  18. Do you want the one from landverse?
  19. I think you need to create a custom status change for it. Or try this on your potion script. bonus_script "{ bonus bVariableCastrate,-30; }",1800;
  20. What's your server name in char_athena.conf? Don't put any space. Put something like SampleRO.
  21. hmm that's weird. Try changing ExternalSettings_kr_sak.lub instead of ExternalSettings_kr.lub AssistAddr = "127.0.0.1:8888"
  22. Did you run web-server.exe together with map, login and char server?
  23. change the identifiedResourceName to 대형마제스틱고우트2
  24. https://github.com/rathena/rathena/pull/7939 Also I recommend you to join rathena's discord channel. You'll meet a lot of cool people there.
  25. https://github.com/rathena/rathena/blob/f4fa967991fcd8b4f24999b464864a1a16c34b25/conf/battle/items.conf#L122
×
×
  • Create New...