Jump to content
  • 0
erryngok

If kill mob can get cashpoint

Question

I already seach the cashpoint script, but all about pvp and mvp kill can get the cash point. Anyone can share with me script that if kill any monster in akk maps can get cash point ?

 

Thanks advanced and sorry my bad english .

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
- script gvubhnji -1,{

OnNPCKillEvent:
#CASHPOINTS = #CASHPOINTS + [email protected];

dispbottom "Gained : "+ [email protected] +" points. Total : "+ #CASHPOINTS +" points."; }

end;

OnInit:
set [email protected],1; //cashpoints per kill
end;

}

this will add cashpoint for each monster killed

Edited by benching
Link to comment
Share on other sites

  • 0

search for the use of

OnNPCKillEvent

and

atcommand

that will help you.

 

 

I show the example script.. this one if kill mvp / mini bos.. how if if kill all mob on all maps ?

 

 

- 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 + [email protected];

dispbottom "Gained : "+ .@R +" points. Total : "+ #CASHPOINTS +" points."; }

end;

}

Edited by erryngok
Link to comment
Share on other sites

  • 0
- script gvubhnji -1,{

OnNPCKillEvent:
#CASHPOINTS = #CASHPOINTS + [email protected];

dispbottom "Gained : "+ [email protected] +" points. Total : "+ #CASHPOINTS +" points."; }

end;

OnInit:
set [email protected],1; //cashpoints per kill
end;

}

this will add cashpoint for each monster killed

 

Thanks sir  /no1

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...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.