View Single Post
  #3  
Old 07-12-2010, 01:06 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
You can't remove from the allplayers array (which I wonder if it is trying to do instead of copying the array) so instead use it read-only, it's also more efficient this way:
PHP Code:
function onActionGrab()
{
  while (
true)
  {
    
temp.pl allplayers[int(random(0allplayers.size()))];
    
    if (
temp.pl.computerfirstlogin == player.computerfirstlogin)
    {
      continue;
    }

    break;
  }
  
  echo(
"found" SPC temp.pl);    

__________________
Skyld
Reply With Quote