KISS detection is we are on old OpenSim 0.8.x or more recent (0.9.x onward)
integer is09() {
return !~llSubStringIndex(llGetEnv("sim_version"), "OpenSim 0.8");
}
default {
state_entry() {
llOwnerSay("Is 0.9.x = "+(string)is09());
}
}