• Welcome to Vice City Multiplayer.
 
Menu

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.

Show posts Menu

Messages - Only a Dude

#31
General Discussion / VC-MP World Fighters Union
March 05, 2010, 09:02:23 PM
VC-MP World Fighters Union was created by me. It IS NOT a clan but is an union of clans.
All clans can join it.
I hope that everyone entering the VCWFU.

Website: http://onlyadude.tripod.com/ There was a mistake for the site name and I cannot change it now. damn. lol.
#33
lol tical  ;D
#34
Support / Re: weird heli bug ?
March 03, 2010, 01:33:28 PM
lol true. Big fail of all!

* OnlY_A_DudE Runs Away from slaps
#35
Flash, Fever, Vrock, mp3 player
#36
General Discussion / Re: Help to the country Haiti
March 02, 2010, 08:17:40 PM
Quote from: Jc18 on March 01, 2010, 10:32:47 PM
Quote from: Forze on March 01, 2010, 09:34:26 PM
At least, he has donated :)

Hope everyone does the same to Chile now :(

chile says that they doesnt need international help :S
:S they are crazy!
#37
mIRC/pawn Scripting / Re: Check Cmd
March 01, 2010, 08:19:40 PM
Quote from: Only a Dude on March 01, 2010, 03:51:55 PM
thanks thijn, you are the best!
again thanks!!!
#38
mIRC/pawn Scripting / Re: Check Cmd
March 01, 2010, 03:51:55 PM
thanks thijn, you are the best!

:P

the correct source: alias vcmp.checkhealth {
  if ($vcmp.health($1, $vcmp.getid($1, $4)) > 75) {
    vcmp.say $1 Status: Cheats Detected!
    vcmp.cheatsdetected $1 $4
  }
  else vcmp.cheatsnotdetected
}
alias vcmp.checkarmour {
  if ($vcmp.armour($1, $vcmp.getid($1, $4)) > 75) {
    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
  set %check = off
  vcmp.setarmour $1 $4 0
  vcmp.sethealth $1 $4 100
}
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. 
  set %check = off
}
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 - Invalid ID
    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 {
      set %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 8 vcmp.sethealth $1 $4 75
      timer 1 8 vcmp.setarmour $1 $4 75
      timer 1 10 vcmp.checkarmour $1 $4
      timer 1 10 vcmp.checkhealth $1 $4
    }
  }
}
#39
ShowRoom (pawn) / Re: gamemode 'Stunt Server'
March 01, 2010, 02:17:51 PM
I like it man!  :D
:D !nam ti ekil I
#40
mIRC/pawn Scripting / Re: Check Cmd
March 01, 2010, 01:40:28 PM
thx thijn,

I changed it to

alias vcmp.checkhealth {
 if ($vcmp.health($1, $vcmp.getid($1, $4)) > 75) {
   vcmp.say $1 Status: Cheats Detected!
   vcmp.cheatsdetected $1 $4
 }
 else vcmp.cheatsnotdetected
}
alias vcmp.checkarmour {
 if ($vcmp.armour($1, $vcmp.getid($1, $4)) > 75) {
   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
 var %check = off
 vcmp.setarmour $1 $4 0
  vcmp.sethealth $1 $4 100
}
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.  
 var %check = off
}
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 - Invalid ID
   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 8 vcmp.sethealth $1 $4 75
     timer 1 8 vcmp.setarmour $1 $4 75
     timer 1 10 vcmp.checkarmour $1 $4
     timer 1 10 vcmp.checkhealth $1 $4
   }
 }
}


But I am not sure for the working of %check
#41
mIRC/pawn Scripting / Check Cmd
February 28, 2010, 05:56:40 PM
I've done this Check Cmd, it is right?

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
    }
  }
}
#43
UltraMegaServer / Re: >:( Hach by Killz0r >:(
February 10, 2010, 09:06:21 PM
ye i seen killz0r "heliglitching lol" in tommy spawn
#44
VC:MP Clans / Re: Vote for the Best Deathmatching Clan
February 10, 2010, 08:59:31 PM
CG and DU - Double U - Unbeatable, Untouchable -
#45
ShowRoom (pawn) / Re: PSA 0.10
February 10, 2010, 08:55:48 PM
nice i like it