21.06.2014, 08:16
Quote:
This is so F*cking good! How to put this in the top of the screen? I have one bar on the bottom but i need this on the top... can you help me? thanks!
|
you can simply move it into the top by changing these lines
pawn Код:
MOTDBack = TextDrawCreate(1270.000000, 433.750000, "usebox");
MOTD = TextDrawCreate(640.000000, 434.000000, MOTDText[0]);
//and
MOTD = TextDrawCreate(Pos, 434.000000, MOTDText[CurrentMOTD]);
pawn Код:
MOTDBack = TextDrawCreate(1270.000000, 0, "usebox");
MOTD = TextDrawCreate(640.000000, 0.25, MOTDText[0]);
//and
MOTD = TextDrawCreate(Pos, 0.25, MOTDText[CurrentMOTD]);