Hi,
I've in my sansan script a auto check-cheat, but when im calling it (!checkhp)
nothing happens and my mIRC says: "vcmp.checkcheat Unknown command".
You think: I forgot the alias vcmp.checkcheat, nut i didn't ??? ???
Screen:
(http://img60.imageshack.us/img60/3247/cheatvi2.png)
Put the aliases ABOVE the signal of the commands.
Btw, try this:
Quote
alias vcmp.checkcheat { vcmp.sethp $1 90 | .timer 1 4 $vcmp.checkcheat2($1) }
alias vcmp.checkcheat2 {
if ($vcmp.hp($1) > 90) { vcmp.adminchat ** Automatic Check - Cheats Detected On $vcmp.hgetname($1) $+ ! }
else { vcmp.sethp $1 100 }
}
Quote
elseif ($1 == !checkhp) { $vcmp.checkcheat($3) }
thanks for reply, i will try that ;)
it still doesn't work :( :(
my mIRC:
/timer: timer 1 not active
Unknow command
PLZZ ANYONE?
Use: /timer 1 4 $vcmp.checkcheat2($1)
Nope, doesn't work:
my mIRC:
/timer: timer 1 not active
Unknow command
Quote from: GTA-Roloboy on July 07, 2008, 08:21:50 PM
Quote
elseif ($1 == !checkhp) { $vcmp.checkcheat($3) }
Why $1?
I always use $2 for commands, or am i wrong?
$1 is for irc and $2 is for ingame
so where do i need to put
Quote from: thijn on July 07, 2008, 08:38:08 PM
elseif ($1 == !checkhp) { $vcmp.checkcheat($3) }
???
EDIT: I know where i need to put it, but the commands still doesnt work :'(
Yes, if its a command in irc.
its a command ingame, does anyone knows how i can fix this ???
anyone????
Dude stop double posting.
Use elseif ($2 == !checkhp) { $vcmp.checkcheat($3) }
Since its a ingame command.
When it's a IRC command dont you mean to use:
elseif ($1 == !checkhp) { $vcmp.checkcheat($2) }
?