Jump to content
  • 0

Job Class Extra Drops


Kinx

Question


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  106
  • Reputation:   30
  • Joined:  04/03/17
  • Last Seen:  

hello, I'm looking for a job opportunity to give extra mob drops.

The respective jobs should have a 1-3% change to get a random item from the respective list

for this job, but separate lists

Knight,Lord Knight,Rune Knight Item's 7097,1034 and other items.
Sage,Professor,Sorcerer Item's 904,946 and other items.
Blacksmith,Whitesmith,Mechanic Item's 999,984 and other items.
Alchemist,Creator,Genetic Item's 7135,7136 and other items.
Assassin,Assassin Cross,Guillotine Cross Item's 7155,7003 and other items.

 

 

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  70
  • Reputation:   21
  • Joined:  11/08/15
  • Last Seen:  

-	script	Drop_extra	-1,{

OnNPCKillEvent:



if( rand( 100 ) <= 3 && (Class == Job_Knight || Class == Job_Lord_Knight || Class == Job_Rune_Knight_T)) {
{ .@item_id = F_Rand( 7097,1034 );

getitem .@item_id,1;  }
end; 
}

if( rand( 100 ) <= 3 && (Class == Job_Sage || Class == Job_Professor || Class == Job_Sorcerer_T)) {
{ .@item_id = F_Rand( 904,946 );

getitem .@item_id,1;  }
end; 

}

if( rand( 100 ) <= 3 && (Class == Job_Blacksmith || Class == Job_Whitesmith || Class == Job_Mechanic_T)) {
{ .@item_id = F_Rand( 999,984 );

getitem .@item_id,1;  }
end; 

}

if( rand( 100 ) <= 3 && (Class == Job_Alchemist || Class == Job_Creator || Class == Job_Genetic_T)) {
{ .@item_id = F_Rand(  7135,7136 );

getitem .@item_id,1;  }
end; 

}

if ( rand( 100 ) <= 3  && (Class == Job_Assassin || Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross_T)) {
{ .@item_id = F_Rand( 7155,7003 );

getitem .@item_id,1;  }
end; 

}

}

 

  • Upvote 1
Link to comment
Share on other sites

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.

×
×
  • Create New...