Hallo ich hab mal ne kleine frage zu SendClienMessage...
Ich bin zur Zeit an einer Mautstelle.
Also ich möchte dem Spieler eine Nachricht Senden Sobald er an eine bestimmten Punkt ist.
if(PlayerToPoint(5, playerid, 20.505138, -1530.430542, 2.202931))
{
SendClientMessage(playerid, COLOR_LIGHTBLUE,"Tippe /Los Santos");
return 1;
}
if (strcmp(cmdtext, "/Los Santos", true) == 0)
{
if(PlayerToPoint(5, playerid, 20.505138, -1530.430542, 2.202931))
{
GivePlayerMoney(playerid, -100);
MoveObject(maut_links,20.505138, -1530.430542, 2.202931,4);
SetTimer("GateClosemaut_links", 7000, 2);
}
return 1;
}
Wenn ich das so mache erscheint der Text erst wenn man /Los Santos eingegeben hat. Er soll aber erscheinen wenn man in der Nähe der Mautstelle ist.
MfG