05.07.2017, 03:46
Prueba asн.
**Nota: si vas a pasar el cуdigo tienes que pasarlo completo para analizarlo.
Код:
CMD:creargarage(playerid, params[]) { new idcasa = GetPosSpace; //Error 1 new tipo = GetPosSpace; //error 2 if(PlayerInfo[playerid][pAdmin] < 2015) return 0; if(sscanf(params, "ii", idcasa, tipo)) return SendClientMessage(playerid, COLOR_RED, "Uso /creargarage [CASA_ID][TIPO]"); { if ( tipo >= 0 && tipo <= MAX_GARAGE_TYPE ) { if ( CreateGarage(playerid, idcasa, tipo) ) { new MsgChangeDesing[MAX_TEXT_CHAT]; format(MsgChangeDesing, sizeof(MsgChangeDesing), "Creaste un garage tipo [%i], para la Casa ID[%i]", tipo, idcasa); } } else { SendClientMessage(playerid,-1,"El ID del tipo de garage introducido no existe!"); } } } return 1; }