All mobiles servers have (or should have) a -Movement/VirtualKeys weapon that's added to everyone. This should detect them all:
PHP Code:
//#CLIENTSIDE
function onCreated() {
if (findweapon("-Movement/VirtualKeys") in player.weapons) {
kill_them();
}
}
Also you should just disconnect them (sendtorc("/disconnect account")) or serverwarp them to Login. Also this should probably be implemented in at least one script on each mobile server to prevent abusive mobile staff:
PHP Code:
//#CLIENTSIDE
function onServerLogin() {
if (getservername().pos("iPhone") == -1 && getservername().pos("Login") == -1) {
serverwarp("Login");
}
}