Your printer is a clone of a Replicator 1 Dual with an upgraded metal frame, not an R2x.
Since S3D uses GPX to convert gcode to x3g, T1 on a line by itself will switch to the right extruder. Put that before your G1 extrusion line.
It'll need to be up to temperature first and if this is for a control button you'll want to be in relative coordinate mode or at least have the absolute coordinate defined via G92.
What comes before your snippet is important. Particularly because of two things: G92 gets expanded to all axes because x3g demands it, GPX also send absolute X Y Z coordinates whenever possible for G1 and G0.
M73 P0 ; enable build progress
G162 X Y F3000 ; home XY maximum
G161 Z F1200 ; home Z minimum
G92 Z-5 ; set Z to -5
G1 Z0 ; move Z to 0
G161 Z F100 ; home Z slowly
M132 X Y Z A B ; recall home offsets
G1 X-120 Y-70 Z30 F9000 ; move to wait position off table
G130 X20 Y20 Z20 A20 B20 ; lower stepper Vrefs while heating
M126 S[fan_speed_pwm]
M140 S[bed0_temperature] T0
M134 T0 ; stabilize bed temperature
M104 S[extruder0_temperature] T0
M133 T0 ; stabilize extruder temperature
G130 X127 Y127 Z40 A127 B127 ; default stepper Vrefs
G92 A0 ; zero extruder
G1 Z0.4 ; position nozzle
G1 E25 F300 ; purge nozzle
G1 X-115 Y-65 Z0.15 F1200 ; slow wipe
G1 X-110 Y-60 Z0.5 F1200 ; lift
G92 A0 ; zero extruder
M73 P1 ;@body (notify GPX body has started)
; **** end of start.gcode ****