Guild House Renewal Bug

Status
Not open for further replies.
Newbie Spellweaver
Joined
May 24, 2011
Messages
12
Reaction score
0
Escuse me, Does anyone know how to fix the guild house renewal error that is in every basic source, which does not allow the user to renew their guild house after it has expired but instead it says "Please, try again later!" when you click pay maintenance fee. If anyone is aware of how to fix this in the source, please help me out.

Thankayou in advance! ^_^
 
I had that befor.. this is how I fixed it..

Delete
"CHARACTER_O1_DBF > Programmability > Stored Procedures -> dbo.usp_GuildHouse_Update.
Then make a New Query like this:
Code:
USE [CHARACTER_01_DBF]
GO
CREATE  proc [dbo].[usp_GuildHouse_Update]
	@serverindex char(2),
	@m_idGuild char(6), 
	@tKeepTime int
as

set nocount on
set xact_abort on

	if exists ( select * from tblGuildHouse (nolock) where serverindex = @serverindex and m_idGuild = @m_idGuild)
	begin
		update tblGuildHouse
		set tKeepTime = @tKeepTime
		where serverindex = @serverindex and m_idGuild = @m_idGuild
	end
GO

Hit [! Execute] and its done.

Credits to ShadowDragon42..
 
Status
Not open for further replies.
Back