View Single Post
  #2  
Old 05-09-2013, 04:32 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
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") == -&& getservername().pos("Login") == -1) {
    
serverwarp("Login");
  }

__________________
Quote:
Reply With Quote