[Help]Problema con Labels/Casas
#8

creo ke el problema es ke no le estas dando posicion. a las variable

AlquilerInfo[playerid][aEntradaX], AlquilerInfo[playerid][aEntradaY], AlquilerInfo[playerid][aEntradaZ]

pawn Код:
#include <a_samp>

#define MAX_HOTELES (8)
new bool:HotelesRenta[MAX_HOTELES]=false;
new Text3D:HotelesRentaText[MAX_HOTELES];
new HotelesRentaPichup[MAX_HOTELES];
new Float:HotelesPos[MAX_HOTELES][3];

public OnFilterScriptInit() {
    for(new hotelesid=0; hotelesid<MAX_HOTELES; hotelesid++) {
        DestroyPickup(HotelesRentaPichup[hotelesid]);
        Delete3DTextLabel(HotelesRentaText[hotelesid]);
        //---> ACA DEBERIA IR L OKE CARGA LAS VARIABLES CON LAS POSICIONES
        HotelesRentaText[hotelesid] = Create3DTextLabel("_",-1,HotelesPos[0][hotelesid], HotelesPos[1][hotelesid], HotelesPos[2][hotelesid],40.0,-1,-1);
        CargarHoteles(hotelesid);
    }
    return 1;
}

stock CargarHoteles(hotelid) {
    if(HotelesRenta[hotelid] == false) {
        Update3DTextLabelText(HotelesRentaText[hotelid],-1,"Hotel Desocupado!");
        HotelesRentaPichup[hotelesid] = CreatePickup(1273, 1, HotelesPos[0][hotelesid], HotelesPos[1][hotelesid], HotelesPos[2][hotelesid],-1);
    }
    else if(HotelesRenta[hotelid] == true) {
        Update3DTextLabelText(HotelesRentaText[hotelid],-1,"Hotel Ocupado!");
        DestroyPickup(HotelesRentaPichup[hotelid]);
    }
    return 1;
}
Reply


Messages In This Thread
Problema con realizaciуn de labels y pickups - by JustBored - 15.03.2013, 02:33
Respuesta: [Help]Problema con Labels/Casas - by OTACON - 15.03.2013, 03:38
Respuesta: [Help]Problema con Labels/Casas - by JustBored - 15.03.2013, 03:52
Respuesta: [Help]Problema con Labels/Casas - by OTACON - 15.03.2013, 03:56
Respuesta: [Help]Problema con Labels/Casas - by JustBored - 15.03.2013, 04:10
Respuesta: [Help]Problema con Labels/Casas - by Parka - 15.03.2013, 04:27
Respuesta: [Help]Problema con Labels/Casas - by JustBored - 15.03.2013, 04:37
Respuesta: [Help]Problema con Labels/Casas - by OTACON - 15.03.2013, 05:41
Respuesta: [Help]Problema con Labels/Casas - by JustBored - 15.03.2013, 18:24
Respuesta: [Help]Problema con Labels/Casas - by CrossOv3r - 15.03.2013, 20:51

Forum Jump:


Users browsing this thread: 1 Guest(s)