2021-03-08, 07:55 PM
You can use y_commands, but you need to encode the command names using punycode (the same encoding that URLs use):
Becomes:
If you use a website like this one: https://www.punycoder.com/ The result will be "xn--vehculo-9ya", remove the "xn--" prefix and change the "-" to "@". I keep meaning to make a site to do it for y_commands, just never got around to it.
Code:
CMD:veh?culo(playerid, params[])
Becomes:
Code:
CMD:vehculo@9ya(playerid, params[])
If you use a website like this one: https://www.punycoder.com/ The result will be "xn--vehculo-9ya", remove the "xn--" prefix and change the "-" to "@". I keep meaning to make a site to do it for y_commands, just never got around to it.