Jump to content

Question

Posted (edited)

my mvp card Drop  rate is 70%

 

how to i make some MVP monster like this

1% lighthalzen boss Card

3% FallenBisHop card

5% GoldenThiefBug card

3% Randgris card

2% Thanatos card

3% Ifrit card

3% Beelzebub card

help :(

Edited by Kariton Revolution

7 answers to this question

Recommended Posts

Posted

i have here..

 

-	script	Sample	-1,{
function CustomRateCard;

OnNPCKillEvent:
// CustomRateCard( <MobID>,<CardID>,<Rate> );
// Rate : 1 = 0.01%  /  1000 = 10%  /  10000 = 100%

CustomRateCard( 1734,4403,1 );	// Kiel Card
CustomRateCard( 1751,4407,200 );	// Valkyrie Randgris Card
CustomRateCard( 1646,4357,200 );	// Lord Knight Card

// so on...

credits to Emistry.

Posted

its that working on 3ceam? :(

try it

 

btw with this script you can gain 2 cards at once (normal drop+by script)

I suggest to implement theses commands on your server (rathena only, search the trac)

*addmonsterdrop <monster id>,<item id>,<rate>;
*addmonsterdrop "<monster name>",<item id>,<rate>;
*delmonsterdrop <monster id>,<item id>;
*delmonsterdrop "<monster name>",<item id>;

These commands will temporarily add or delete a monster drop, which will be reset
when the mob database reloads or the server shuts down. They return 1 upon success.

If the monster already drops the specified item, its drop rate will be updated with
the given rate (100 = 1%).

Examples:
    // Makes Owl Baron drop Honey at an 80% rate.
    addmonsterdrop 1295,518,8000;

    // Deletes Executioner's Mitten from Rybio.
    delmonsterdrop 1201,7017;
  • Upvote 1
Posted

its that working on 3ceam? :(

try it

 

btw with this script you can gain 2 cards at once (normal drop+by script)

I suggest to implement theses commands on your server (rathena only, search the trac)

*addmonsterdrop <monster id>,<item id>,<rate>;
*addmonsterdrop "<monster name>",<item id>,<rate>;
*delmonsterdrop <monster id>,<item id>;
*delmonsterdrop "<monster name>",<item id>;

These commands will temporarily add or delete a monster drop, which will be reset
when the mob database reloads or the server shuts down. They return 1 upon success.

If the monster already drops the specified item, its drop rate will be updated with
the given rate (100 = 1%).

Examples:
    // Makes Owl Baron drop Honey at an 80% rate.
    addmonsterdrop 1295,518,8000;

    // Deletes Executioner's Mitten from Rybio.
    delmonsterdrop 1201,7017;

in order to prevent that from happening, you must remove the id card number from the mob_db of that mvp.

Posted

-    script    Sample    -1,{

function CustomRateCard;

OnNPCKillEvent:

// CustomRateCard( <MobID>,<CardID>,<Rate> );

// Rate : 1 = 0.01%  /  1000 = 10%  /  10000 = 100%

CustomRateCard( 1708,4399,300 ); // Thanatos 3% ??

CustomRateCard( 1086,4128,5000 ); // GTB 5%??

CustomRateCard( 1832,4430,5000 ); // Ifrit 5%

CustomRateCard( 1874,4145,5000 ); // Berzebub 5%

CustomRateCard( 1751,4407,300 ); // Randgris 3%

CustomRateCard( 1086,4441,300 ); // Fallen bishop

end;

function    CustomRateCard    {

    if( killedrid == getarg(0) && rand( 10000 ) <= getarg(2) ){

            getitem getarg(1),1;

            announce "[ "+strcharinfo(0)+" ] get 1 "+getitemname( getarg(1) ),0;

    }

    return;

}

}

 

is this correct?  :(

 

 

its that working on 3ceam? :(

try it

 

btw with this script you can gain 2 cards at once (normal drop+by script)

I suggest to implement theses commands on your server (rathena only, search the trac)

*addmonsterdrop <monster id>,<item id>,<rate>;
*addmonsterdrop "<monster name>",<item id>,<rate>;
*delmonsterdrop <monster id>,<item id>;
*delmonsterdrop "<monster name>",<item id>;

These commands will temporarily add or delete a monster drop, which will be reset
when the mob database reloads or the server shuts down. They return 1 upon success.

If the monster already drops the specified item, its drop rate will be updated with
the given rate (100 = 1%).

Examples:
    // Makes Owl Baron drop Honey at an 80% rate.
    addmonsterdrop 1295,518,8000;

    // Deletes Executioner's Mitten from Rybio.
    delmonsterdrop 1201,7017;

in order to prevent that from happening, you must remove the id card number from the mob_db of that mvp.

 

 

its that working on 3ceam? :(

try it

 

btw with this script you can gain 2 cards at once (normal drop+by script)

I suggest to implement theses commands on your server (rathena only, search the trac)

*addmonsterdrop <monster id>,<item id>,<rate>;
*addmonsterdrop "<monster name>",<item id>,<rate>;
*delmonsterdrop <monster id>,<item id>;
*delmonsterdrop "<monster name>",<item id>;

These commands will temporarily add or delete a monster drop, which will be reset
when the mob database reloads or the server shuts down. They return 1 upon success.

If the monster already drops the specified item, its drop rate will be updated with
the given rate (100 = 1%).

Examples:
    // Makes Owl Baron drop Honey at an 80% rate.
    addmonsterdrop 1295,518,8000;

    // Deletes Executioner's Mitten from Rybio.
    delmonsterdrop 1201,7017;

can you check the droprate percent ? :(

Posted

It's not correct.

// CustomRateCard( <MobID>,<CardID>,<Rate> );
// Rate : 1 = 0.01%  /  1000 = 10%  /  10000 = 100%

5% => rate 500

not 5000

CustomRateCard( 1086,4128,5000 ); // GTB 5%??

it's arithmetic, use a calculator


 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...