Jump to content

mathibas

Members
  • Posts

    18
  • Joined

  • Last visited

Posts posted by mathibas

  1.  

     

    did you use @allskill? if yes, then no wonder.

    @allskill is not job-sided, but all skills registered on your server will be added to your skill tree

    (ofc you won't see them in Alt+S).

     

    https://github.com/rathena/rathena/blob/master/doc/atcommands.txt#L887

    https://github.com/rathena/rathena/blob/master/src/map/atcommand.c#L3202

     

    or probably, you previously @job to that job (e.g: thief), then @allskill, then you change the job to Champion

     

    If it's me (gm account) then I wouldn't mind but if a normal character have it then that's a bug.

     

    check equipment, a ring. go unequip and check the auto skill

     

    No ring. 

  2. did you use @allskill? if yes, then no wonder.

    @allskill is not job-sided, but all skills registered on your server will be added to your skill tree

    (ofc you won't see them in Alt+S).

     

    https://github.com/rathena/rathena/blob/master/doc/atcommands.txt#L887

    https://github.com/rathena/rathena/blob/master/src/map/atcommand.c#L3202

     

    or probably, you previously @job to that job (e.g: thief), then @allskill, then you change the job to Champion

     

    If it's me (gm account) then I wouldn't mind but if a normal character have it then that's a bug.

  3. Needs more info:

    1. Did you update something when it stopped working? If yes, what did you update?

    2. Renewal / Pre-Renewal, make sure the file exists properly in the re/pre-re folder depending on setting.

    3. When you start the server, make search for errors / warnings. If it couldn't read the monster skill because of bad format, then there should be an error or at least a warning.

    4. How did you detect that a monster doesn't use any skill? With which monster did you test? What are the entries of that monster in the mob_skill_db?

     

    Hi,

     

    It is working now. I am not sure how it happened in the first place. So what I did was removed the db directory and get a fresh one.

  4. Hi, I have changed the drop and make it 100% but unfortunately it still random drops. Can you help me?

     

    1115,EDDGA,Eddga,Eddga,65,152000,0,25025,12870,1,1215,1565,15,15,78,70,85,66,90,85,10,12,2,2,23,0x37B5,300,872,1344,432,12512,1029,5000,1030,1000,13909,10000,1133,150,2268,250,518,10000,1258,500,1030,250,985,2300,13046,100,0,0,0,0,0,1
     
    Example for eddga the 13909,10000 is supposed to be 100% drop. But it still drop randomly.
  5. Hi Yonko, i cant seem to understand all of it though.

     

    1001,Scorpion@NPC_FIREATTACK,attack,186,1,2000,0,5000,yes,target,always,0,,,,,,,
      
     
    I am sure it is working before it just stop working
  6. I am trying to create a script that when an mvp monster is killed it will reward an item. I'm no good at scripting I am just trying to understand how it works and all. Is this the correct way? 

     

     

    - script MVPBox -1,{

            OnNPCKillEvent:
            setarray .@BOSSID[0],1511,1038,1272,1389,1086,1251;
            setarray .@HMVP[0],1647,1785,1630,1039,1874,2068,2238,2240,2236,2253,1719,1046,1112,1115,1418,1871,1252,2251,1768,2165,1885,2241,1649,1651,1832,1492,2255,1734,2202,1779;
                    if ( getmonsterinfo( killedrid,22) && getarraysize( .@BOSSID ) ) {
                                    getitem 13909,1;
                    }
                    else if ( getmonsterinfo( killedrid,22) && getarraysize( .@HMVP ) ) {
                                    getitem 19508,1;
                   }
          end;
    }

     

    I don't think its working at all. What I have in mind is mvp box will drop when the mvp spawn time is 1-2 hours and another mvp box when the mvp spawn time is more than 2 hours.

     

    Thanks in advance.

×
×
  • Create New...