By
fiXed
Witam! Mam do Was pytanie. Dlaczego nie dzialaja mi kolory? Przed kazdym skryptem pisze to:
#include <sourcemod>
#include <multicolors>
A kolory dalej nie dzialaja ;/
Przykladowy kod w ktorym nie dzialaja kolory:
#include <sourcemod>
#include <multicolors>
public void OnPluginStart() {
RegConsoleCmd("sm_pomoc", WszystkieKomendy, "Wyswietla wszystkie dostepne komendy na serwerze");
}
public Action WszystkieKomendy(int client, int args) {
PrintToChat(client, "{darkred}Wszystkie komendy dostepne na serwerze:");
PrintToChat(client, "{gray}>> {orange}!rank");
PrintToChat(client, "{gray}>> {orange}!ranga");
PrintToChat(client, "{gray}>> {orange}!ws");
PrintToChat(client, "{gray}>> {orange}!knife");
PrintToChat(client, "{gray}>> {orange}!gloves");
PrintToChat(client, "{gray}>> {orange}!kontakt");
return Plugin_Handled;
}
Z gory dziekuje!
Recommended Posts