This should work...
PHP Code:
// Make a counter-terrorist spawn
new ent = create_entity("info_player_start");
entity_set_string(ent, EV_SZ_classname, "info_player_start");
entity_set_origin(ent, Float{1.0, 1.0, 1.0}); // Set the origin you want the spawn to be
entity_set_int(ent, EV_INT_solid, SOLID_NOT);
entity_set_int(ent, EV_INT_movetype, MOVETYPE_FLY);
entity_set_size(ent, Float{1.0, 1.0, 1.0}, Float{1.0, 1.0, 1.0});
// Make a terrorist spawn
new ent = create_entity("info_player_deathmatch");
entity_set_string(ent, EV_SZ_classname, "info_player_deathmatch");
entity_set_origin(ent, Float{1.0, 1.0, 1.0}); // Set the origin you want the spawn to be
entity_set_int(ent, EV_INT_solid, SOLID_NOT);
entity_set_int(ent, EV_INT_movetype, MOVETYPE_FLY);
entity_set_size(ent, Float{1.0, 1.0, 1.0}, Float{1.0, 1.0, 1.0});