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.


Messages - Only a Dude

Pages: [1] 2
1
Support / Re: cant connect to favourite server
« on: May 07, 2010, 02:37:18 pm »
lol i cant join to Argonath too, it stops at "loading network game"  :o :o :o

2
mIRC/pawn Scripting / Re: Please nice idea for scripts
« on: March 21, 2010, 12:27:43 am »
damn! :D

3
Support / Re: [Help !!!!!!] Problem...
« on: March 21, 2010, 12:24:23 am »
( My Friend computerer  ;D )
??! wtf new work computerer!

4
Support / Re: VCMP minimizes gta-vc.exe when connecting to a server
« on: March 19, 2010, 11:39:51 am »
It happens sometimes to me too, in fighting :s!
and i have XP 64 bit

5
Support / Re: Problem...
« on: March 17, 2010, 04:21:59 pm »
BUY ()

MORE ()

RAM ()
ROFL I loled

6
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"

7
Tutorials / Re: How to do a basical Internet Server
« on: March 14, 2010, 01:27:24 am »
Quote
Although 127.0.0.1 will always work.
i mean this.

8
Tutorials / Re: How to do a basical Internet Server
« on: March 14, 2010, 12:36:52 am »
Hey, Can Help...

My IP is change every Time i am restart the router...

i cant make a server ..?... ???

your local ip never change man...

9
mIRC/pawn Scripting / Re: All Pick IDs
« on: March 13, 2010, 11:27:37 pm »
if there will be 0.4 with objects stuff, we can use the IDs to create solid objects. Can be for example a health pickup a object too?
Yes.
OH YEAHH like in SA:MP

10
mIRC/pawn Scripting / Re: All Pick IDs
« on: March 13, 2010, 04:14:41 pm »
hmm and this?



never seen before :x

11
XE Servers (Legacy) / Re: i want report server admin ULK.Tical
« on: March 05, 2010, 04:01:08 pm »
lol tical  ;D

12
Support / Re: weird heli bug ?
« on: March 03, 2010, 03:33:28 pm »
lol true. Big fail of all!

* OnlY_A_DudE Runs Away from slaps

13
Vice City / Re: Your favorite vice city radio station.
« on: March 02, 2010, 10:25:38 pm »
Flash, Fever, Vrock, mp3 player

14
mIRC/pawn Scripting / Re: Check Cmd
« on: March 01, 2010, 10:19:40 pm »
thanks thijn, you are the best!
again thanks!!!

15
mIRC/pawn Scripting / Re: Check Cmd
« on: March 01, 2010, 05:51:55 pm »
thanks thijn, you are the best!

:P

the correct source:
Code: [Select]
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
    }
  }
}

Pages: [1] 2