• Welcome to Vice City Multiplayer.
 

Question from friend (he doesn't know english)

Started by szostol, January 31, 2008, 02:02:16 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

szostol

My friend is trying to do server as counter strike 2 teams etc. and he need command which can call !masskill and kill all players. Can you help?

Mex

If you're using this script, then try this

on *:SIGNAL:vcmp.command:{
  if ($2 == !masskill) {
    var %a = 0
    while (%a <= 50) {
      if ($hget(vcmp,%a $+ .name) != $null) { vcmp.sethp %a 0 }
      !inc %a
    }
  }
}


Replace 50 with the max players allowed in your server.

szostol