Ich habe vor mir mein eigenes zoll system zu basteln
habe zum testen das hier
forward zoll(playerid);
>OnGamemodInit
SetTimer("Zoll", 1000, 1);
public zoll(playerid)
{
if(IsPlayerInArea(playerid, 84.5436, -1533.3575, 53.2794, -1520.6293))
{
SendClientMessage(playerid, COLOR_GREY, "Das ist ein test,");
}
else
{
//Text
}
}
als Cords
AddPlayerClass(279,84.5436,-1523.5867,4.8676,110.4852,0,0,0,0,0,0); // 1punkt
AddPlayerClass(279,83.0244,-1533.3575,5.4078,170.5831,0,0,0,0,0,0); // 1punkt2
AddPlayerClass(279,53.2794,-1529.5128,5.2638,82.8489,0,0,0,0,0,0); // 1punkt3
AddPlayerClass(279,55.8127,-1520.6293,5.1245,345.4640,0,0,0,0,0,0); // 1punkt4
Allerdings wenn ich mich dann bei der Position befinde dann kommt nix
wodrann kann das liegen?
habd auch schon so probiert
forward zoll();
>OnGamemodInit
SetTimer("Zoll", 1000, 1);
public zoll()
{
for(new i =0;i<MAX_PLAYERS;i++)
{
if(IsPlayerInArea(i, 84.5436, -1533.3575, 53.2794, -1520.6293))
{
SendClientMessage(i, COLOR_GREY, "Das ist ein test,");
}
else
{
//Text
}
}
}
aber keine sichtliche reaktion