Hello, I'm trying to develop an advanced GPS system for vehicle owners, I've been trying to use the sprite fronten2:map which is supposted to be an empty San Andreas map, but it doesn't work, I've tried every other kind of sprite and they seem to work pretty well, but for some reason it's not working on my computer, I opened myself the fronten2 file to confirm "map" is there, but my game doesn't load it.
Can you guys confirm if you can see it in your servers, or If I am doing something wrong, thank you very much.
This is the one I'm trying to create.
Can you guys confirm if you can see it in your servers, or If I am doing something wrong, thank you very much.
Code:
new Text: TEST;
TEST = TextDrawCreate(1.000000, -1.000000, "fronten2:map"); //If you try another name, it will work, but this one doesn't work, that's why I created this post
TextDrawFont(TEST, 4);
TextDrawTextSize(TEST, 200.000000, 200.000000);
TextDrawLetterSize(TEST, 2.500000, 2.000000);
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, TEST);
return 1;
}
This is the one I'm trying to create.