2021-03-07, 08:06 PM
Hi there,
I want to use spanish words in my gamemode, but the compiler throws error when try to compile.
This throws an error: "Invalid function or declaration" in the line where "vehículo" word is.
Also when I want to use SendClientMessage, there is no error at compiler level but the message look weird character, instead of the character I want.
Maybe the compiler doesn't support characters like " í "?
I want to use spanish words in my gamemode, but the compiler throws error when try to compile.
Code:
CMD:vehículo(playerid, params[]) {
SendClientMessage(playerid, -1, "test");
return 1;
}
Also when I want to use SendClientMessage, there is no error at compiler level but the message look weird character, instead of the character I want.
Maybe the compiler doesn't support characters like " í "?
Code:
CMD:test(playerid, params[]) {
SendClientMessage(playerid, -1, "vehículo");
return 1;
}
![[Image: rUHhU8b.png]](https://i.imgur.com/rUHhU8b.png)