15.01.2011, 03:56
Im trying to script a License plate system with 3D text labels hwo would i make each one different and changeable?
please explain alot ima noob heres what i got so far
all help is appreciated thanks
please explain alot ima noob heres what i got so far
Quote:
new Text3D:vTexts[MAX_VEHICLES];//all my OnGameModeInt stuff 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; } // after all that stuff |