I've already found an issue (chatGPT helped me) :)
This happened because my function was trying to , but in Pawn you cannot return arrays of unknown size.
The solution was to remove the
statement and simply let the function fill the string that is passed by reference. The function call stays the same:
Thanks to ChatGPT for helping me figure this out!
This happened because my
Code:
Convert
Code:
return stringTos;
The solution was to remove the
Code:
return
Code:
new time[32];
Convert(GetPVarInt(playerid, "schet_time_to_finish"), time);
Thanks to ChatGPT for helping me figure this out!