AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   News (https://forums.alliedmods.net/forumdisplay.php?f=59)
-   -   SourceMod 1.3.1 Released! Also, Six Years. (https://forums.alliedmods.net/showthread.php?t=118332)

BAILOPAN 02-10-2010 01:11

SourceMod 1.3.1 Released! Also, Six Years.
 
I'm pleased to announce that SourceMod 1.3.1 has been released. This is a minor update with a few bug fixes and new game mod support.

Of note, this release includes extended support for "CS Pro Mod", meaning more admin commands are available and developers can do more wonderful hacking. Huge thanks to psychonic for doing so much game support!

On another note, on January 30th AlliedModders passed our 6 year anniversary. Huzzah! Anyone remember those days? If so, you get a sticker. (devicenull gets the biggest sticker, for reminding me.)

Twelve-60 02-10-2010 01:17

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
Nice :D

- Twelve-60

Arg! 02-10-2010 04:02

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
Good work to the whole team. psychonic is super pro.

Bacardi 02-10-2010 04:28

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
Quote:

On another note, on January 30th AlliedModders passed our 6 year anniversary. Huzzah! Anyone remember those days?
Already hard to remember the previous year, when properly "celebrated" from morning to evening.
http://images.commentfarm.com/previe...2d7ed45d78.gif

berni 02-10-2010 06:12

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
It's nice to see that sourcemod became such a stable platform with support for so many different source-mods.

Keep up the great work :crab:

Greetings ~Berni

nonick 02-10-2010 09:47

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
I have problem with compiling:
Code:

...\sourcemod-1.3.1\addons\sourcemod\scripting\include\sd
ktools_sound.inc(406) : error 017: undefined symbol "maxClients"


nonick 02-10-2010 10:09

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
Is:
Code:

    new clients[maxClients];
    new total = 0;
   
    for (new i=1; i<=MaxClients; i++)

Need change to
Code:

    new clients[MaxClients];
    new total = 0;
   
    for (new i=1; i<=MaxClients; i++)


KawMAN 02-10-2010 10:11

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
Or add
new maxClients = GetMaxClients();
before
new clients[maxClients];
like in 1.3.0

psychonic 02-10-2010 10:22

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
Quote:

Originally Posted by nonick (Post 1084505)
Is:
Code:

    new clients[maxClients];
    new total = 0;
   
    for (new i=1; i<=MaxClients; i++)

Need change to
Code:

    new clients[MaxClients];
    new total = 0;
   
    for (new i=1; i<=MaxClients; i++)


This is correct. I missed that line when updating the base plugins/incs and failed to include <sdktools> when testing the new files D:

nonick 02-10-2010 10:44

Re: SourceMod 1.3.1 Released! Also, Six Years.
 
Idont remember but then i use "AskPluginLoad2" i think i was got more errors. Maybe check this file ;]


All times are GMT -4. The time now is 02:21.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.