rem Config-ID.bas by gehtnix 16.07.2011 @title Config-ID @param a Config-ID *100 @default a 0 @param b Config-ID *10 @default b 0 @param c Config-ID *1 @default c 0 @param e Wert *1 @default e 0 a=a*100 b=b*10 d=a+b+c v=get_config_value d (-1) print "Config-ID = "d print "Alter Wert = "v print "Neuer Wert = "e set_config_value d e print "Neu augelesen = "get_config_value d (-1) sleep 3000 if e<>get_config_value d (-1) then print "Wert kann nicht" print "eingestellt werden!" endif set_config_value d v end