02.07.2013, 15:48
This sign should show current vehicle speed, but it shows only 0 always
Maybe I missed something ? How it looks like :
http://www.part.lt/perziura/20bacd18...c9c5bb9107.png
Code:
Maybe I missed something ? How it looks like :http://www.part.lt/perziura/20bacd18...c9c5bb9107.png
Code:
Код:
public OnGameModeInit()
{
new stri[128];
new objektas = CreateObject(7246, 687.94568, -1756.04565, 16.27477, 0.00000, 0.00000, 252.25433);
for(new i = 0; i < MAX_PLAYERS; i++)
format(stri,128,"%d",GetPlayerSpeed(i,true));
SetObjectMaterialText(objektas,stri, 0, OBJECT_MATERIAL_SIZE_256x128,\
"Arial", 80, 0, 0xFFFF8200, 0xFF000000, OBJECT_MATERIAL_TEXT_ALIGN_CENTER);
}


