
Originally Posted by
Wizkidje
Since there are a lot of people that have the problem, I'll post a tut. This fix solves the MatchServer crash after the clanwar finished. Feel free to flame, but be sure you don't cry after I flamed you back. Note that this is a noob-friendly tutorial with pictures.
1) Start MSSQL Studio Express. If you do not know how, please suicide now before it's too late.
2) Navigate to your GunzDB, select Programmability, then select Stored Procedures.

3) Scroll down to the stored procedure called spWinTheClanGame. Rightclick it, then select Modify.

4) Find
PHP Code:
UPDATE Clan SET Losses=Losses+1, Point= game.fnGetMax(0, Point+(@LoserPoint)) WHERE CLID=@LoserCLID
and change game.fnGetMax to dbo.fnGetmax. So after the edit it will look like
PHP Code:
UPDATE Clan SET Losses=Losses+1, Point= dbo.fnGetMax(0, Point+(@LoserPoint)) WHERE CLID=@LoserCLID
5) Hit Execute.
6) Thank me for sharing this.
is easy no ?
P.D. I edit the original quote =P and edit the problem
4) Find [/B]
PHP Code:
UPDATE Clan SET Losses=Losses+1, Point= game.fnGetMax(0, Point+(@LoserPoint)) WHERE CLID=@LoserCLID
and change game.fnGetMax to dbo.fnGetmax. So after the edit it will look like
PHP Code:
UPDATE Clan SET Losses=Losses+1, Point= dbo.fnGetMax(0, Point+(@LoserPoint)) WHERE CLID=@LoserCLID