22.02.2015, 06:20
1. That's probably happening in either OnPlayerStateChange, or OnPlayerEnterVehicle, take a look around there, otherwise post the code.
2. Look for any switches or if's in OnPlayerText, might look like this:
Or it could be a switch ofcourse, delete the functions if the windows are up, and keep the rest.
3. You're trying to format your string with new text over and over again, thereby the dialog only shows the last formatted string.
Use strcat to add more text into your string.
2. Look for any switches or if's in OnPlayerText, might look like this:
pawn Код:
if(!windows[vehicleid])
{
// Code
}
else
{
// Code
}
3. You're trying to format your string with new text over and over again, thereby the dialog only shows the last formatted string.
Use strcat to add more text into your string.