Ich war in diesem Bereich hier unterwegs : http://forum.sa-mp.de/san-andr…Cnsche/1100-anti-werbung/ und weis immer noch nicht wo ich des hier: getIPfromString(string[])
{
new round = 0, lastchars = 0;
for(new i = 0; i < strlen(string); i++)
{
if(round == 0 && string[i] == '.')
round = 1;
else if(round <= 3 && string[i] == '.' && lastchars <= 3)
{
round += 1;
lastchars = 0;
} else if(round >= 1)
lastchars++;
}
printf("%d %d", round, lastchars);
if(round == 3)
return 1;
else
return 0;
}
Hinzufügen soll soll ich es genau so hinzufügen ohne OnPlayer.....?
Und wenn ich es einfach so hinzufüge dann kommt bei mir ein Warning:
(3064) : warning 203: symbol is never used: "getIPfromString"
Danke schon mal!