30.11.2009, 06:01
1) My textdraw doesn't show up.
At the top of my script:
In OnGameModeInit:
2)
Adding mods to non mod-able cars.
I want to add the front bumper from an Alien Sultan to a Turismo. Possible?
3)
This is my tutorial, step 7:
Compiles fine, but doesn't work.
It's supposed to change the camera to point at a parking lot.
At the top of my script:
Code:
new Text:ReelWurld; new Text:Roleplay;
Code:
ReelWurld = TextDrawCreate(562, 0, "ReelWurld"); TextDrawAlignment(ReelWurld, 1); TextDrawFont(ReelWurld, 3); TextDrawLetterSize(ReelWurld, 0.1, 0.1); TextDrawColor(ReelWurld, 0xFF0000FF); Roleplay = TextDrawCreate(562, 16, "Roleplay"); TextDrawAlignment(Roleplay, 1); TextDrawFont(Roleplay, 3); TextDrawLetterSize(Roleplay, 0.1, 0.1); TextDrawColor(Roleplay, 0xFF0000FF);
Adding mods to non mod-able cars.
I want to add the front bumper from an Alien Sultan to a Turismo. Possible?
3)
This is my tutorial, step 7:
Code:
else if(TutorialStage[playerid] == 7) { ClearScreen(playerid); SendClientMessage(playerid, COLOR_LIGHTGREEN, "|____________________Getting Started____________________|"); SendClientMessage(playerid, COLOR_WHITE, "Nearly everyone has been a criminal at one time. You won't get anywhere without a car."); halt(10); SetPlayerCameraPos(playerid, 1625.370727, -1721.799438, 28.619550); SendClientMessage(playerid, COLOR_WHITE, "Go here, and try the locks on the cars. Maybe there's some for sale. If not, ask someone for a lift."); TutorialStage[playerid] = 8; }
It's supposed to change the camera to point at a parking lot.