03.07.2018, 10:15
You can create a loop for example something like this:
PHP код:
#define MAXINDEX 4
stock PhoneShowSystem(playerid, index, string[])
{
for(new d = 0;d<MAXINDEX;d++)
{
new index = d;
PlayerTextDrawSetString(playerid, PhoneList1[index][playerid], string);
PlayerTextDrawShow(playerid, PhoneList1[index][playerid]);
}
return 1;
}