30.07.2013, 20:53
Eu preciso saber como crio um textdrawn na gangzone por exemplo o player entra na gangzone e aparece um texto quando ele sai o texto й destroido alguem pode me ajudar ?
new Text:Gang;
//Ongamemodinit
SetTimer("Local", 100, 1);
Gang = TextDrawCreate(209.000000, 428.000000, "Bem vindo ao Gang Zone");
TextDrawBackgroundColor(Gang, 255);
TextDrawBackgroundColor(Gang,0x000000FF);
TextDrawFont(Gang, 3);
TextDrawLetterSize(Gang, 0.500000, 2.000000);
TextDrawColor(Gang, -1);
TextDrawSetOutline(BemVindo2, 1);
TextDrawSetProportional(Gang, 1);
TextDrawSetSelectable(Gang, 1);
forward Local();
public Local()
for (new i=0;i<MAX_PLAYERS;i++){
if(IsPlayerConnected(i)){
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GangZone
if(IsPlayerInRangeOfPoint(i, 80.0, -513.0049,-97.3194,62.7445))
{
TextDrawShowForPlayer(i, Gang);// FAz mostrar
} else {
TextDrawHideForPlayer(i, Gang); // Faz desaparecer
}
}
}