Try this:
PHP Code:
new iEntity = create_entity("func_button")
if( !iEntity )
set_fail_state( "Error creating entity" );
entity_set_int(iEntity, EV_INT_movetype, MOVETYPE_NONE);
entity_set_model(iEntity, g_szTimerSprites[iType]);
entity_set_size(iEntity, Float:{-16.0, -128.0, 0.0}, Float:{16.0, 128.0, 128.0});
dllfunc( DLLFunc_Spawn , iEntity );
entity_set_int(iEntity, EV_INT_solid, SOLID_TRIGGER);
__________________