13.08.2015, 07:52
(
Последний раз редактировалось Battlezone; 13.08.2015 в 08:56.
)
Under OnGameModeInit I got this:
And this is the CreateIntPickup function:
Now those two 3d text labels are working fine :
But this one shows "(/enter or F)" instead of "Public Bikes Parking"
I'm not sure, but could this be a samp bug?
Код:
CreateIntPickup(1318, UNDERGROUND_X,UNDERGROUND_Y,UNDERGROUND_Z, "Underground Metro");
Create3DTextLabel("Public Bikes Parking", 0x87FFFF, 1489.66, -2215.08, 13.92, 60, 0, 1);
Create3DTextLabel("Public Bikes Parking", 0x87FFFF, 1524.03, -2214.83, 13.93, 60, 0, 1);
Код:
stock CreateIntPickup(pickupid, Float:x, Float:y, Float:z, description[20])
{
CreatePickup(pickupid, 1, x, y, z, -1);
strcat(description, "(/enter or F)", sizeof description+14);
Create3DTextLabel(description, 0xFFF00FF, x, y, z,35,0,1);
return 1;
}
Код:
CreateIntPickup(1318, UNDERGROUND_X,UNDERGROUND_Y,UNDERGROUND_Z, "Underground Metro");
Create3DTextLabel("Public Bikes Parking", 0x87FFFF, 1489.66, -2215.08, 13.92, 60, 0, 1);
Код:
Create3DTextLabel("Public Bikes Parking", 0x87FFFF, 1524.03, -2214.83, 13.93, 60, 0, 1);

