Checkpoint help
#1

can anyone help me?

i have added some player checkpoints but when i go into the red marker it just stays i want it to go when i walk into it

SetPlayerCheckpoint(playerid,-1422.4910,-290.4396,14.1484,5.0);
Reply
#2

DisablePlayerCheckpoint(playerid);

Add that in your OnPlayerEnterCheckpoint callback.
Reply
#3

thank you very much mate
do you have any idea about local chat??
like if you use /o or /n /b
but i mean if you just type using no cmds at all

what is that?
its not under the /local cmd
Reply
#4

OnPlayerText?

Here is an example of mine :
Код:
public OnPlayerText(playerid, text[])
{
	if((strfind(text,"/q",true)) != -1 || (strfind(text,"/ q",true)) != -1)
	{
		SendClientMessage(playerid, COLOR_BRIGHTRED, "[ERROR] Your message has been blocked.");
		return 0;
	}
	SendPlayerMessageToAll(playerid,text);
	SetPlayerChatBubble(playerid, text, COLOR_WHITE, 30.0, 10000);
	return 0;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)