Jump to content

imat1

Members
  • Posts

    99
  • Joined

  • Days Won

    5

imat1 last won the day on October 22 2023

imat1 had the most liked content!

3 Followers

About imat1

  • Birthday 03/05/1990

Profile Information

  • Gender
    Male
  • Location
    Philippines
  • Discord: Tami#8737
  • Interests
    Playing Ragnarok Online of course!

Recent Profile Visitors

3093 profile views

imat1's Achievements

Metaling

Metaling (6/15)

  • Reacting Well
  • Dedicated
  • First Post
  • Collaborator
  • Conversation Starter

Recent Badges

19

Reputation

7

Community Answers

  1. That's how it behaves even on official ROs.
  2. The error clearly said item id 11602 in your item db does not exist.
  3. Might be the one you're looking for https://ratemyserver.net/index.php?iname=12790&page=re_item_db&quick=1&isearch=Search
  4. Show me your item script of it. I might be able to help you.
  5. Are you using costume item for it or costume via npc?
  6. try changing those base level to your max level.
  7. 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; }
  8. probably your problem lies in ExternalSettings.lub
  9. 255 is your max level? And then 254 and below shouldn't have aura right?
  10. Change 4 to 6 or maybe higher for the signboard not to overlap with your NPCs sprite. Adjust to your liking.
  11. For height. Just increase the value of those zero besides x and y coordinates. Try set to 6 for valk npc.
  12. https://github.com/rathena/rathena/blob/5b2f4e63a7b894c5438052f9fabef4885c4b6bbc/conf/msg_conf/map_msg.conf#L558
  13. That's because of white space. Try changing every mes " > to mes ">
  14. Do you want the one from landverse?
×
×
  • Create New...