- Joined
- Apr 12, 2004
- Messages
- 1,101
- Reaction score
- 0
I am having trouble enabling Quest on my server. This following describes what I did to my SQL database, matchserver, and Gunz client in order to enable quest.
Server:
- I added <GAMETYPE id="7" /> to every channel rule in channelrule.xml
- I changed ;mode="test" to mode="test" in server.ini
Database:
- I added a column to dbo.character called QuestItemInfo, the data type is varchar(MAX) and nulls are allowed.
- I executed the following query successfully:
Client:
- I coped channelrule.xml from my matchserver folder and pasted it over the one in my sysmte.mrs.
Result:
Quest appears ingame as a game type, but when I select it, it changes to deathmatch.
I am using DaVD Gunz.exe, and I think this might be my problem. Can somebody link me to a Gunz.exe that is compatible with Quests?
Server:
- I added <GAMETYPE id="7" /> to every channel rule in channelrule.xml
- I changed ;mode="test" to mode="test" in server.ini
Database:
- I added a column to dbo.character called QuestItemInfo, the data type is varchar(MAX) and nulls are allowed.
- I executed the following query successfully:
Code:
CREATE PROCEDURE [dbo].[spSelectCharQuestItemInfoByCID]
@nCID INT
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
SELECT QuestItemInfo FROM Character Where CID = @nCID
END
Client:
- I coped channelrule.xml from my matchserver folder and pasted it over the one in my sysmte.mrs.
Result:
Quest appears ingame as a game type, but when I select it, it changes to deathmatch.
I am using DaVD Gunz.exe, and I think this might be my problem. Can somebody link me to a Gunz.exe that is compatible with Quests?