S?uchajcie mam kod w mapie na wykszta?cenie i mam problem z jednym Po wpisaniu komendy /wsie Pisze SendClientMessage(playerid,0x33AA33AA,"Teraz Piszesz Egzamin - Poczekaj Chwile...");
A chcial bym a by minute po tym pojawi? si? napis Zda?e? Egzamin I potym napisie pojawila sie ranga np Dzielnikarz
Oto m?j kod
#define Szkola 66
if(!strcmp(cmdtext, "/wsie", true))
{
new string[3000];
strcat(string,"{C3C3C3}Elektrykn");
strcat(string,"{C3C3C3}Kierowca Tiran");
strcat(string,"{C3C3C3}Mechanikn");
strcat(string,"{C3C3C3}Dzielnikarskin");
strcat(string,"{C3C3C3}Sprzedawcan");
strcat(string,"{C3C3C3}G?rnikn");
ShowPlayerDialog(playerid, Szkola, DIALOG_STYLE_LIST,"Wybierz Profil Szkolny",string,"Z??? Podanie","Anuluj");
return 1;
}
return 0;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == Szkola)
{
if(listitem == 0)
{
SendClientMessage(playerid,0x33AA33AA,"Teraz Piszesz Egzamin - Poczekaj Chwile...");
}
if(listitem == 1)
{
SendClientMessage(playerid,0x33AA33AA,"Teraz Piszesz Egzamin - Poczekaj Chwile...");
}
if(listitem == 2)
{
SendClientMessage(playerid,0x33AA33AA,"Teraz Piszesz Egzamin - Poczekaj Chwile...");
}
... |