Zaloguj się by uzyskać pełen dostęp. Nie masz jeszcze konta? Założ je już teraz w kilka sekund.
GTAONLINE.PL
Tematy otagowane jako: enumie
1. string w enumie
Czesc dlaczego string w enumie nie dziala ?
Pawn
enum testenum
{
    
string[124]
};
new 
test[MAX_PLAYERS][testenum];

Tutaj cos takiego dziala ale w grze nie wyswietla tekstu
Pawn
CMD:test1(playerid)
{
    
test[playerid][string] = strval("T");
    return 
1;
}

A to nie dziala wyskakuje error
Pawn
CMD:test2(playerid)
{
    
test[playerid][string] = "Test";
    return 
1;
}

Pawn
C:UsersKamilDesktopDMfilterscriptstescik.pwn(154) : error 047: array sizes do not match, or destination array is too small

Dodam ze bez enuma to dziala