Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Only a Dude

Pages: [1]
1
mIRC/pawn Scripting / Setplayermoney error
« on: March 15, 2010, 06:16:46 pm »
anyone is going to show me how to define the setplayermoney?

Code: [Select]
error 017: undefined symbol "Setplayermoney"

2
mIRC/pawn Scripting / Check Cmd
« on: February 28, 2010, 07:56:40 pm »
I've done this Check Cmd, it is right?

Code: [Select]
alias vcmp.checkhealth {
  if ($vcmp.health($1, $vcmp.getid($1, $4)) == 100) {
    vcmp.say $1 Status: Cheats Detected!
    vcmp.cheatsdetected $1 $4
  }
  else vcmp.cheatsnotdetected
}
alias vcmp.checkarmour {
  if ($vcmp.armour($1, $vcmp.getid($1, $4)) == 100) {
    vcmp.say $1 Status: Cheats Detected!
    vcmp.cheatsdetected $1 $4
  }
  else vcmp.cheatsnotdetected

}
alias vcmp.cheatsnotdetected {
  vcmp.setlocation $1 $vcmp.getid($1, $4) -871.455, -683.325, 10.250
  vcmp.say $1 No cheats found!
  vcmp.setcontrols $1 $4 1
}
alias vcmp.cheatsdetected {
  vcmp.setlocation $1 $vcmp.getid($1, $4) 391.282, -506.863, 8.415
  vcmp.say $1 Cheats Detected!
  vcmp.say $1 Waiting for admins.
}
on *:SIGNAL:vcmp.player.command:{
  if ($3 == check) {
    if (!$4) vcmp.msg $1 $2 Error - Correct Syntax: ! $+ $3 <id/nick>
    elseif (. isin $4) || (, isin $4) || vcmp.msg $1 $2 Error - No negative or decimal amounts
    elseif ($vcmp.name($1, $vcmp.id($4)) == $vcmp.name($1, $2)) vcmp.msg $1 $2 Error -  You cannot Check Yourself.
    elseif (%check == on) vcmp.msg $1 $2 Checking is already in progress, please try again later.
    else {
      var %check = on
      timer 1 3 vcmp.setlocation $1 $vcmp.getid($1, $4) -968.704, -1455.056, 44.168
      timer 1 3 vcmp.say $1 Checking $vcmp.name($1, $4) ...
      timer 1 3 vcmp.setcontrols $1 $4 0
      timer 1 5 vcmp.sethealth $1 $4 100
      timer 1 5 vcmp.setarmour $1 $4 100
      timer 1 6 vcmp.sethealth $1 $4 75
      timer 1 6 vcmp.setarmour $1 $4 75
      timer 1 7 vcmp.checkarmour $1 $4
      timer 1 7 vcmp.checkhealth $1 $4
    }
  }
}

Pages: [1]