• Welcome to Vice City Multiplayer.
 

Unknown Command ??????

Started by thijn, July 07, 2008, 08:17:53 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

thijn

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:


GTA-Roloboy

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) }

thijn

thanks for reply, i will try that ;)


thijn

#3
it still doesn't work :( :(

my mIRC:
/timer: timer 1 not active
Unknow command


PLZZ ANYONE?


Mattz

Use:  /timer 1 4 $vcmp.checkcheat2($1)

thijn

Nope, doesn't work:
my mIRC:
/timer: timer 1 not active
Unknow command


thijn

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?


Mattz

$1 is for irc and $2 is for ingame

thijn

#8
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 :'(


Mattz

Yes, if its a command in irc.

thijn

its a command ingame, does anyone knows how i can fix this ???


thijn



Mattz

Dude stop double posting.

Use elseif ($2 == !checkhp) { $vcmp.checkcheat($3) }

Since its a ingame command.

GTA-Roloboy

When it's a IRC command dont you mean to use:

elseif ($1 == !checkhp) { $vcmp.checkcheat($2) }

?

Mattz