SA-MP Forums Archive
Reaction test - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Reaction test (/showthread.php?tid=361588)



Reaction test - farCry.xD - 21.07.2012

Hey , I founded a reaction test .. But when I type what fs say , nothing happens
Here is onplayertext :
Код:
	switch(xTestBusy)
	{
	    case true:
	    {
			if(!strcmp(xChars, text, false))
			{
			    new
			        string[128],
			        pName[MAX_PLAYER_NAME]
				;
				GetPlayerName(playerid, pName, sizeof(pName));
				format(string, sizeof(string), "« \%s\" has won the reaction test. »", pName);
			    SendClientMessageToAll(GREEN, string);
			    format(string, sizeof(string), "« You have earned $%d + %d score points. »", xCash, xScore);
			    SendClientMessage(playerid, GREEN, string);
			    GivePlayerMoney(playerid, xCash);
				SetPlayerScore(playerid, GetPlayerScore(playerid) + xScore);
				xReactionTimer = SetTimer("xReactionTest", TIME, 1);
			    xTestBusy = false;
			}
		}
	}
	return 1;
}
If you need somenthing else just say
Thx


Respuesta: Reaction test - farCry.xD - 21.07.2012

<Sooolved>