Jump to content
  • 0

request monster arena


Question

Posted

they will warp to a certain map and mvp monster are there .. then when they kill each mvp they will get a points .. each mvp have their own points in them like baphomet has 50points when they kill it and tao gunka has 20points something like that

3 answers to this question

Recommended Posts

Posted


// permanent monster

prontera,0,0,0,0 monster Baphomet 1039,1,7200000,600000,"monster_points::OnMobDead1"

prontera,0,0,0,0 monster Tao Gunka 1583,1,18000000,600000,"monster_points::OnMobDead2"

// etc..

- script monster_points -1,{

OnMobDead1:// bapho

.@points = 50;

#monster_points = #monster_points + .@points ;// give points to the killer

dispbottom "you got "+ .@points +" points. Total: "+ #monster_points +" points.";// display the points

end;

OnMobDead2:// tao

.@points = 20;

#monster_points = #monster_points + .@points ;

dispbottom "you got "+ .@points +" points. Total: "+ #monster_points +" points.";

end;

}

// etc..

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