KCritz Posted December 27, 2012 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 95 Reputation: 0 Joined: 12/23/12 Last Seen: March 1, 2015 Share Posted December 27, 2012 request a script please. a script that when you kill a mini or mvp boss you can gain a cashpoint and its a random for every MINIBOSS can gain around 50-150 and then every MMVP can gain around 100-500 Quote Link to comment Share on other sites More sharing options...
Capuche Posted December 27, 2012 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted December 27, 2012 - script gvubhnji -1,{ OnNPCKillEvent: if( killedrid && ( getmonsterinfo(killedrid, 21) & 0x0020 ) && ( killedrid <= 3000 ) ) { if( getmonsterinfo(killedrid, 22) ) .@R = rand( 100, 500 );//-- MVP else .@R = rand( 50, 150 );//-- MINIBOSS #CASHPOINTS = #CASHPOINTS + .@R; dispbottom "Gained : "+ .@R +" points. Total : "+ #CASHPOINTS +" points."; } end; } Quote Link to comment Share on other sites More sharing options...
2 Capuche Posted October 20, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted October 20, 2013 - script gvubhnji -1,{ OnNPCKillEvent: if( getmonsterinfo(killedrid, 21) & 0x0020 ) { if( getmonsterinfo(killedrid, 22) ) .@R = rand( 100, 500 );//-- MVP else .@R = rand( 50, 150 );//-- MINIBOSS } else .@R = rand( 10,100 );//-- normal monster #CASHPOINTS = #CASHPOINTS + .@R; dispbottom "Gained : "+ .@R +" points. Total : "+ #CASHPOINTS +" points."; end; } 1 Quote Link to comment Share on other sites More sharing options...
-1 KCritz Posted December 27, 2012 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 95 Reputation: 0 Joined: 12/23/12 Last Seen: March 1, 2015 Author Share Posted December 27, 2012 thanks Capuche Quote Link to comment Share on other sites More sharing options...
-1 krashdragon Posted October 18, 2013 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 56 Reputation: 4 Joined: 06/20/13 Last Seen: August 31, 2021 Share Posted October 18, 2013 how if include normal monster also? Quote Link to comment Share on other sites More sharing options...
-1 krashdragon Posted October 20, 2013 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 56 Reputation: 4 Joined: 06/20/13 Last Seen: August 31, 2021 Share Posted October 20, 2013 Thx a lot capuche Quote Link to comment Share on other sites More sharing options...
-1 Dev Blaze Posted March 2, 2017 Group: Members Topic Count: 68 Topics Per Day: 0.01 Content Count: 212 Reputation: 5 Joined: 01/24/12 Last Seen: February 19, 2019 Share Posted March 2, 2017 On 10/20/2013 at 9:23 PM, Capuche said: - script gvubhnji -1,{ OnNPCKillEvent: if( getmonsterinfo(killedrid, 21) & 0x0020 ) { if( getmonsterinfo(killedrid, 22) ) .@R = rand( 100, 500 );//-- MVP else .@R = rand( 50, 150 );//-- MINIBOSS } else .@R = rand( 10,100 );//-- normal monster #CASHPOINTS = #CASHPOINTS + .@R; dispbottom "Gained : "+ .@R +" points. Total : "+ #CASHPOINTS +" points."; end; } capuche how to include 1 party in your script?? Quote Link to comment Share on other sites More sharing options...
Question
KCritz
request a script please.
a script that when you kill a mini or mvp boss you can gain a cashpoint and its a random for every MINIBOSS can gain around 50-150 and then every MMVP can gain around 100-500
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.