31.10.2009, 16:13
Code:
#include <IsPlayerLAdmin>
Code:
dcmd_testing(playerid,params[])
{
#pragma unused params
if(IsPlayerLAdmin(playerid))
{
SendClientMessage(playerid, 0xFF0000AA, "Tested");
//Use any function you want here
//This is setup for DCMD if you use strcmp use the same top part
//of the strcmp command layout
}
return 1;

