26.08.2012, 01:43
How would I go about doing them without getting an error? Currently, I have..
And I'm getting an error that inputtext needs to be assigned to an array. How would I go about doing this?
pawn Код:
case DIALOG_HOUSEEDIT + 4: // Editing the house interior X position
{
if( response )
{
new
hStr [ 128 ];
houStats [ plEditingHouse [ playerid ] ] [ EnterInteriorPosition ] [ 0 ] = inputtext;
format( hStr, 128, "» House Interior X Position for House ID %d has been set to %f.", plEditingHouse [ playerid ], inputtext );
SendClientMessage( playerid, -1, hStr );
SaveHouse( plEditingHouse [ playerid ] );
plEditingHouse [ playerid ] = -1;
}
}