10.01.2011, 21:05
Hello I'v made text lables to all my cars except the ones that spawn how would i make that? and how would I make a command where I can change what the 3D text says? from in the game.
And make them random on each car? this what iv got so far
And make them random on each car? this what iv got so far
Quote:
new Text3D:vTexts[MAX_VEHICLES]; //right befor OnGamemodeInit (All my static cars) for(new vehid;vehid<MAX_VEHICLES;vehid++) { if(GetVehicleModel(vehid)) { vTexts[vehid]=Create3DTextLabel("MW-DM", 0xFF0000AA, 0.0, 0.0, 0.0, 50.0, 0, 0); Attach3DTextLabelToVehicle(vTexts[vehid],vehid,0.0,0.0,2.0); } } return 1; } |