Sign in to follow this  
Followers 0
WFYU

some plugins..

22 posts in this topic

Here are some plugins:

 

FOV:

 

init( version )
{
thread playerSpawned();
}
 
playerSpawned() {
for(;;) {
level waittill("connected", player);
player setClientDvar("cg_fovscale", "1.225");
player thread fovScale();
}
}
 
fovScale() {
self endon("disconnect");
 
for(;;) {
self waittill("menuresponse", menu, response);
tokens = strTok( response, ":" );
 
if( tokens.size && tokens[0] == "fov" ) {
self setClientDvar ( "cg_fovscale", tokens[1]);
self iPrintln( "^3[client]:^7 FoV Scale: ^2" + tokens[1] );
}
}
}

 

Team Colours:

 

init( modVersion )
{

thread onPlayerConnected();

}

 

onPlayerConnected() 

{

for(;;)

{

    level waittill("connected",player);

    player thread TeamColours();

    }

}

 

 

TeamColours() {

    setDvar( "g_TeamColor_Axis", "0.5 0.0 0.75" ); //Activator

        setDvar( "g_TeamColor_Allies", "1 0.5 0" ); //Jumpers

        self setClientDvar( "g_TeamColor_Axis", "0.5 0.0 0.75" ); //Activator

        self setClientDvar( "g_TeamColor_Allies", "1 0.5 0" ); //Jumpers

    

}

 

    //0.5, 0.0, 0.8 - Sexxy purple

    //1.0, 0.0, 0.0 - Epic Red

    //1.0, 0.0, 0.4 - Preppy Pink

    //0.0, 0.8, 0.0 - Epic Green

    //0.9, 1.0, 0.0 - Banana Yellow

    //1.0, 0.5, 0.0 - Burnt Orange

    //0.0, 0.5, 1.0 - Turquoise

    //0.0, 0.0, 1.0 - Deep Blue

    //0.3, 0.0, 0.3 - Deep Purple

    //0.0, 1.0, 0.0 - Light Green

    //0.5, 0.0, 0.2 - Maroon

    //0.0, 0.0, 0.0 - Black

    //1.0, 1.0, 1.0 - White

    //0.0, 1.0, 1.0 - Cyan

 

//Note: Remove , when applying the codes. For Example: 1.0, 1.0, 1.0 would be 1.0 1.0 1.0

 

 

0

Share this post


Link to post
Share on other sites

Can you not make a new post for every plugin you're showing us?

 

sorry, i tried to put all in one, but it didn't save so i just made another post.

0

Share this post


Link to post
Share on other sites

Not like I haven't seen these plugins before, about a year ago... 

0

Share this post


Link to post
Share on other sites

Not like I haven't seen these plugins before, about a year ago... 

 

Where? links ? never seen these before lol. otherwise i wouldn't have hadda make them myself.

0

Share this post


Link to post
Share on other sites

All lost on Braxi.org :foreveralone: Anyway, Pretty much every old server used to have the FOV plugin, and Team colour :Dave:

0

Share this post


Link to post
Share on other sites

Do some digging and you might find Braxi forums, Ahh the memories http://web.archive.org/web/20130116003513/http://www.braxi.org/forum/forumdisplay.php?fid=12 (Kinda pointless but meh, The feels man)

I+got+dumped+yesterday+half+an+hour+befo

Or check out this page thomas made :3 http://raid-gaming.net/forums/topic/18-plugins/

It's not that pointless, some plugins are posted in spoilers and that's it. (So no DL link etc) These ones work, but the ones with download link are hidden for guests, and cache files are logged in as guest.

(Unless Braxi still has a database copy, but I don't think so.. :'( )

Good ol' times.

0

Share this post


Link to post
Share on other sites

Well, they're here now so people don't have to scroundge the internet to find such.

 

Second, I wouldn't have posted these if they were already out there. I personally couldn't find the FOV plugin so i decided to re-write it.

 

 

Also, take note here

71ca4a549a.png

 

No FOV anywhere to be found.

0

Share this post


Link to post
Share on other sites

don't give yourself too much credit for the fog plugin though as it is a simple plugin that has already been made before so it wasn't exactly your idea.

0

Share this post


Link to post
Share on other sites

don't give yourself too much credit for the fog plugin though as it is a simple plugin that has already been made before so it wasn't exactly your idea.

 

Sir, please tell me where I said it was my idea. Not once was that mentioned, so don't get jiggy with it.

0

Share this post


Link to post
Share on other sites

When i clicked the youtube link, the guy scared the hell out of me

0

Share this post


Link to post
Share on other sites

Back on topic... does anyone want to see any changes that can be made by a plugin?  In my free time i can make one?

0

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  
Followers 0