Skip to content

Instantly share code, notes, and snippets.

@Westie
Created March 5, 2010 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Westie/323096 to your computer and use it in GitHub Desktop.
Save Westie/323096 to your computer and use it in GitHub Desktop.
public OnCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "hai"))
{
print("A command, lol!");
return 1;
}
if(!strcmp(cmdtext, "bai"))
{
print("Another command. What a surprise.");
return 1;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment