Skripta koju koristim: UP (CMD)
Detaljan opis problema: Errori
Dio skripte: http://pastebin.com/WnxbSQhP
Neke slike:
[HELP]Errori.
263
pregleda
7
postova
19. Okt. 2015.
(dest[], const source[], maxlength = sizeof dest)
strcat(info, ""ORANGE""ORANGE"Cestitke postavljeni ste za Admina od strane OWNER-a "SIVA" %s \n",GetName(playerid));
strcat(info, ""ORANGE"Vas Admin nivo:"SIVA" %d \n",level);
strcat(info, ""ORANGE"PIN:"SIVA" %d \n",kod);
Valjda moraÅ¡ koristit neki temp string u kojeg ćeÅ¡ da formatiraÅ¡ ove reÄenice sa parametrima, pa da tek onda strcat taj temp string u info string
strcat(info, ""ORANGE""ORANGE"Cestitke postavljeni ste za Admina od strane OWNER-a "SIVA" %s \n",GetName(playerid));
strcat(info, ""ORANGE"Vas Admin nivo:"SIVA" %d \n",level);
strcat(info, ""ORANGE"PIN:"SIVA" %d \n",kod);
Valjda moraÅ¡ koristit neki temp string u kojeg ćeÅ¡ da formatiraÅ¡ ove reÄenice sa parametrima, pa da tek onda strcat taj temp string u info string
20. Okt. 2015.
strcat(info, ""ORANGE""ORANGE"Cestitke postavljeni ste za Admina od strane OWNER-a "SIVA" %s \n",GetName(playerid));
strcat(info, ""ORANGE"Vas Admin nivo:"SIVA" %d \n",level);
strcat(info, ""ORANGE"PIN:"SIVA" %d \n",kod);
zamijeni sa
new temp;
format(temp, sizeof(temp), ""ORANGE""ORANGE"Cestitke postavljeni ste za Admina od strane OWNER-a "SIVA" %s \n",GetName(playerid));
strcat(info, temp);
format(temp, sizeof(temp), ""ORANGE"Vas Admin nivo:"SIVA" %d \n",level);
strcat(info, temp);
format(temp, sizeof(temp), ""ORANGE"PIN:"SIVA" %d \n",kod);
strcat(info, temp);
Morate biti prijavljeni da biste odgovorili na ovu temu.
Prijava