21.01.2017, 11:33
Quote:
public StoreChatLine(playerid,text[]) { for(new i = 0; i < MAX_CHAT_MSGS_STORE-1; i++) ChatMessages[i] = ChatMessages[i+1]; format(Jstring,sizeof(Jstring),"%s(ID: %d): %s",GetName(playerid),playerid,text); ChatMessages[MAX_CHAT_MSGS_STORE-1] = Jstring; } public StoreReport(playerid,reported,reason[]) { new hour,minute,second; gettime(hour,minute,second); for(new i = 0; i < MAX_REPORTS_STORE-1; i++) Reports[i] = Reports[i+1]; format(Jstring,sizeof(Jstring),"%d:%d:%d - %s(ID: %d) Has Reported %s(ID: %d) |{FF0000} REASON: %s ",hour,minute,second,GetName(playerid),playerid,Ge tName(reported),reported,reason); Reports[MAX_REPORTS_STORE-1] = Jstring; } |