| RETURN_IF_EQUAL <wert1> <wert2> <return_wert> | |
| Beschreibung: | Beendet das aktuelle Skriptprogramm, falls <wert1> und <wert2> gleich sind. <return_wert> wird als Return-Wert gespeichert. |
| Parameter: |
|
| Ergebnis: | - |
| Fehler: | - |
| Beispiele: | GEO_NPTS enterprise GET_RESULT npts1 GEO_NPTS xwing GET_RESULT npts2 ; Abbruch, falls enterprise genausoviele Punkte ; wie xwing hat, wird eine Null zurückgegeben: RETURN_IF_EQUAL npts1 npts2 0 |