help with /do command
#1

hi,i'm looking for a /do command i'm found it but when i'm trying to compile i'm getting a error with don't send.that's my script : http://pastebin.com/f3e40a1d2
any solution?or can you give me a /do script?
Reply
#2

What are the errors
Reply
#3

Why not post the errors?
Reply
#4

that's screen with Don't send
Reply
#5

Sorry but i don't understand you.
Reply
#6

this error: /imageshack/img710/3108/41251753.png
Reply
#7

It must be something with your script that crashes it
Try this one
Код:
 	if(strcmp(cmd, "/do", true) == 0)
	{
	  if(IsPlayerConnected(playerid))
	  {
			new length = strlen(cmdtext);
			while ((idx < length) && (cmdtext[idx] <= ' '))
			{
				idx++;
			}
			new offset = idx;
			new result[128];
			while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
			{
				result[idx - offset] = cmdtext[idx];
				idx++;
			}
			result[idx - offset] = EOS;
			if(!strlen(result))
			{
				SendClientMessage(playerid, COLOR_WHITE, "[Usage] /do [action]");
				return 1;
			}
			if(PlayerInfo[playerid][pMaskuse] == 1)
			{
			  format(string, sizeof(string), "(( Stranger %s ))", result);
			}
			else
			{
				format(string, sizeof(string), "%s (( %s ))", result, GetPlayerNameEx(playerid));
			}
			ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
		}
		return 1;
	}
Reply
#8

again,it's doesn't work...
Reply
#9

Try remove the whole /do command, does it still give error? ( Crash )
Reply
#10

so,i working for a server and I talk with the staf and they need a /do command.I've scripted but it's doesn't work(it's appear that picture)i want to make a kind of FS with /do command
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)