View Single Post
  #879  
Old 02-04-2011, 12:58 AM
MrOmega MrOmega is offline
One More Time
MrOmega's Avatar
Join Date: Aug 2010
Location: TN, USA
Posts: 631
MrOmega is an unknown quantity at this point
Send a message via AIM to MrOmega Send a message via MSN to MrOmega Send a message via Yahoo to MrOmega
Quote:
Originally Posted by fowlplay4 View Post
Could probably be fixed with a script like this. My function names are off though but the main idea is there.

PHP Code:
function onLevelFileUpdated() {
  
temp.filename extractfilename(params[0]);
  for (
aallplayersa.triggerclient(this.nametemp.filename);
}

//#CLIENTSIDE
function onLogMessage() {
  if (
logmessage.starts("File download: ")) {
    
this.failed.add(filename);
  }
}

function 
onActionClientSide() {
  if (
params[0] == "fileuploaded") {
    if (
params[1in this.failed) {
      
downloadfile(params[1]);
      
this.failed.remove(params[1]);
    }
  }

or something similar if it's really that big of issue.
That is basically the worked around I'm using, just would like to see the game not give up and never try again. xP
__________________
Time is the fire in which we burn...
Up, Up, Down, Down, Left, Right, Left, Right, B, A, Select, Start! Now I got 99 LIVES!!!
Reply With Quote