20.09.2015, 11:43
Try this :
if this doesn't work then try this and tell what happens :
PHP код:
new string[128], imie[23], nazwisko[23];//no need to make them 500 way to big
strcat(imie, dj(PlayerPath(playerid), "Dane/Imię"));
strcat(nazwisko, dj(PlayerPath(playerid), "Dane/Nazwisko"));
PHP код:
new string[128], imie[23], nazwisko[23];//no need to make them 500 way to big
format(imie, sizeof(imie), "%s", dj(PlayerPath(playerid), "Dane/Imię"));
format(nazwisko, sizeof(nazwisko), "%s", dj(PlayerPath(playerid), "Dane/Nazwisko"));

