Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Example strcmp checks in OPT...
- public OnPlayerText(playerid, text[])
- {
- if(!strcmp("A slow check", text, true))
- {
- //...
- return 0;
- }
- else if(!strcmp("This is also slow", text, true))
- {
- //...
- return 0;
- }
- else if(!strcmp("Lol", text, true))
- {
- //...
- return 0;
- }
- else if(!strcmp("I Love Coookies", text, true))
- {
- //...
- return 0;
- }
- else if(!strcmp("Idc", text, true))
- {
- //...
- return 0;
- }
- else if(!strcmp("lmao", text, true))
- {
- //...
- return 0;
- }
- //...
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement