20.12.2012, 20:51
I am really sorry for double posting, but I got a more urgent question..
I made a sort of tracking system for bone county, pressing a key will open the map for bone county, i got a dot texture-textdraw, and i want it to be tracking the player.. But ofcourse setting the textdraw's x,y coordinates are not the same as the player co-ordinates..
so how would I link these two? either It's not possible or it's possible with a very difficult math formula which I am not aware of..
edit: Here's the map that's covering the entire screen
Now I only expect someone like ****** or so to come up with such a great math formula, or anyone smart ofcourse 
Thanks in advance
I made a sort of tracking system for bone county, pressing a key will open the map for bone county, i got a dot texture-textdraw, and i want it to be tracking the player.. But ofcourse setting the textdraw's x,y coordinates are not the same as the player co-ordinates..
so how would I link these two? either It's not possible or it's possible with a very difficult math formula which I am not aware of..
edit: Here's the map that's covering the entire screen
pawn Код:
Textdraw0 = TextDrawCreate(-503.000000, -78.000000, "samaps:gtasamapbit1");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 4);
TextDrawLetterSize(Textdraw0, 0.500000, 1.000000);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 1);
TextDrawSetShadow(Textdraw0, 1);
TextDrawUseBox(Textdraw0, 1);
TextDrawBoxColor(Textdraw0, 255);
TextDrawTextSize(Textdraw0, 860.000000, 872.000000);
Textdraw1 = TextDrawCreate(357.000000, -78.000000, "samaps:gtasamapbit2");
TextDrawBackgroundColor(Textdraw1, 255);
TextDrawFont(Textdraw1, 4);
TextDrawLetterSize(Textdraw1, 0.500000, 1.000000);
TextDrawColor(Textdraw1, -1);
TextDrawSetOutline(Textdraw1, 0);
TextDrawSetProportional(Textdraw1, 1);
TextDrawSetShadow(Textdraw1, 1);
TextDrawUseBox(Textdraw1, 1);
TextDrawBoxColor(Textdraw1, 255);
TextDrawTextSize(Textdraw1, 860.000000, 872.000000);

Thanks in advance

