_Fps Server Crash fix

Started by Elgan {sfx}, July 30, 2005, 12:26:29 PM

Previous topic - Next topic

Elgan {sfx}

I know of the other fixe's. However i didnt like it when they were first made because of the errors they cause the server when loading files.

   

   So i decided to try something else.

   

   I made a new fix that uses states and script to check the player on spawn. It will catch any player with a bad tik file and let everyone know who it is and then kick them instead of just letting them play.

   

   here is the file.

   

   http://www.mods-r-us.net/datas/users/75-fps_fix.zip">download

Guest

Good work m8y,

   

   A well coded fix. Yummy!


Cobra {sfx}

It all helps, well done on another fix Elg
Sleep? What is that?

Guest

i presume the states dont conflict with admin pro - cos I'm screwed if it does cos AP integrated into all my current work as u know

Elgan {sfx}

delete the state file in this

   

   use the spawn detection from this.

   

   sud work fine:0

   

   ill be adding it with admin-pro dont worry:). Admin-pro will then have a home made fix for ever "glitch" that is fixable via script. ie no programs.

sorridstroker

you can incorperate my bt weapon/skin glitch fix if ya like

   

   (glitch is only on BT as far as I know)

Elgan {sfx}

ohh i dont know BT. Id love to add it:D

   

   I never knew of any glitch before but i rememebr that post about it. Still nto sure whats it is but id love the fix.

   

   Admin-pro update is going to be great and im not even near release.hehe i feel so excited:$

sorridstroker

yhea basicly you can choose from enemys weapons if you want to./know how

   

   heres the code:

   

   I just execed it on weapon raise but I am sure you have a more "sexy" way of doing it

   

   

   main:
   
   switch(self.dmteam)
    {
    case "axis" :
    {
    switch(self.nationalityprefix)
     {
     case "dfr" :
     case "dfrru" :
     case "dfruk" :
     {
     self stufftext "dm_playergermanmodel german_wehrmacht_soldier"
     self stufftext "cmd spectator"
     self iprint "Please select German or Italian skin."
     }
     break
     default:
     {
     end
     }
     break
     }
    }
    break
    case "allies" :
    {
    switch(self.nationalityprefix)
     {
     case "den" :
     case "denit" :
     {
     self stufftext "dm_playermodel american_army"
     self stufftext " cmd spectator"
     self iprint "Please select an American,British or Russian skin."
     }
     break
     default:
     {
     end
     }
     break
     }
     break
    }
    break
    }
   end

Elgan {sfx}

ahar thanx man. that will go nicly along side this:)

   

   btw u can do self spectator. hehe

   

   Nice fix. Ill be using it in next admin-pro:D.

   

   the only other thing i know of is telefrag but to fix that i wud have to script the grenade and that wouldnt be worth it.

gfunk


LeBabouin {sfx}

I can't seem to be able to DL it from the link in the first post.


Elgan {sfx}


LeBabouin {sfx}

Thanks guys!

   Now get a big problem: i can't get to understand what is done once the player has been disconnected, in the spanw_detect.txt. How can we exec a script on a player that's disconnected ?