#1

Quote:

The command using ZCMD
*CODE*

Okay, so, someone gave me a faction script, and he said: The command using ZCMD and then the code. I have no idea where to place it, any help?
Reply
#2

Place your ZCMD commands outside everything else - This means, don't place them in callbacks/functions.
pawn Код:
//Example
public OnPlayerSpawn( playerid )
{
   print( "hi" );
   return 1;
}

COMMAND:sayhi( playerid, params[ ] )
{
   print( "This is my first example command of ZCMD." );
   return 1;
}
Reading the ZCMD topic can give you some tips and tricks.
Reply
#3

Oh, okay, but where do i paste my command? In the ZCMD file?
Reply
#4

In the GM (pwn)
Reply
#5

Thanks.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)