re: [Release] zTeam Season 6 EP3 + Source
Fix to GensQuest (it disables Wandering Merchant Zyro quests but I will tell you how to fix it at the end).
1. Open GameServer.sln (solution of visual studio).
2. Find the file GameMain.cpp search for this:
Quote:
gEventOff = GetPrivateProfileInt("GameServerInfo","EventOff",0, SERVER_INFO_PATH);
if(gEventOff != 0)
{
LogAdd("EventOff");
}
3. Add this below that:
Quote:
gFreeServer = GetPrivateProfileIntA("GameServerInfo", "FreeServer", 0, SERVER_INFO_PATH);
if (gFreeServer)
LogAdd("Free Server");
4. Go to the file QuestExpLuaBlind.h and add this in the end of the file:
Quote:
extern int gFreeServer;
Example: http://i.imgur.com/7WDm865.png
5. Now go to the folder GameServer/Data and open the file ServerInfo.dat and add "FreeServer = 1" to enable GensQuests like this:
http://i.imgur.com/KikUNoC.png
6. To enable Wandering Merchan Zyro quests with this FreeServer = 1, go to the file Quest_Main_NPC_TalkList.lua in the folder Data/Lua from the server files, open it with notepad and search for the this: function Ep7_NPCTalkList(iObjIndex). Inside of it, search for it:
Quote:
if FreeServer == 0 and NotGlobalQuest == 0 then
You can do two things here, it's the same:
a. Replace with this:
Quote:
if FreeServer == 1 and NotGlobalQuest == 0 then
OR
b. Replace with this:
Quote:
if NotGlobalQuest == 0 then
That's all.
re: [Release] zTeam Season 6 EP3 + Source
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
crancenul
It's just simply information code. You can simply delete it in source code by deleting a few lines of text in probably QuestLua or something like that.
It doesn't bother with something. It's just debug information. Doesn't mean that this is error, doesn't mean that this is warning or somethnig.
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
LightRaven
Fix to GensQuest (it disables Wandering Merchant Zyro quests but I will tell you how to fix it at the end).
1. Open GameServer.sln (solution of visual studio).
2. Find the file GameMain.cpp search for this:
3. Add this below that:
4. Go to the file QuestExpLuaBlind.h and add this in the end of the file:
Example:
http://i.imgur.com/7WDm865.png
5. Now go to the folder GameServer/Data and open the file ServerInfo.dat and add "FreeServer = 1" to enable GensQuests like this:
http://i.imgur.com/KikUNoC.png
6. To enable Wandering Merchan Zyro quests with this FreeServer = 1, go to the file Quest_Main_NPC_TalkList.lua in the folder Data/Lua from the server files, open it with notepad and search for the this:
function Ep7_NPCTalkList(iObjIndex). Inside of it, search for it:
You can do two things here, it's the same:
a. Replace with this:
OR
b. Replace with this:
That's all.
In GameMain.cpp
Code:
gEventOff = GetPrivateProfileInt("GameServerInfo","EventOff",0, SERVER_INFO_PATH);
if(gEventOff != 0)
{
LogAdd("EventOff");
}
there is 6 times.
Where should we paste it?
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
or30n
In GameMain.cpp
Code:
gEventOff = GetPrivateProfileInt("GameServerInfo","EventOff",0, SERVER_INFO_PATH);
if(gEventOff != 0)
{
LogAdd("EventOff");
}
there is 6 times.
Where should we paste it?
in all? or maybe in the ENG.
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
LightRaven
Fix to GensQuest (it disables Wandering Merchant Zyro quests but I will tell you how to fix it at the end).
1. Open GameServer.sln (solution of visual studio).
2. Find the file GameMain.cpp search for this:
3. Add this below that:
4. Go to the file QuestExpLuaBlind.h and add this in the end of the file:
Example:
http://i.imgur.com/7WDm865.png
5. Now go to the folder GameServer/Data and open the file ServerInfo.dat and add "FreeServer = 1" to enable GensQuests like this:
http://i.imgur.com/KikUNoC.png
6. To enable Wandering Merchan Zyro quests with this FreeServer = 1, go to the file Quest_Main_NPC_TalkList.lua in the folder Data/Lua from the server files, open it with notepad and search for the this:
function Ep7_NPCTalkList(iObjIndex). Inside of it, search for it:
You can do two things here, it's the same:
a. Replace with this:
OR
b. Replace with this:
That's all.
out of topic::
what version of ur Visual studio btw?
well im not coder, but i want to know how it works
bcoz ive try to use Visual studio 2010 profesional and after compilng it give me an error
M:\
or maybe u can give the link how to compile it
thanks
re: [Release] zTeam Season 6 EP3 + Source
Guys, how can I use auto reset ingame system? Command /reset doesnt work!
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
tehnique
Guys, how can I use auto reset ingame system? Command /reset doesnt work!
NPC in Loren Market? -.-
re: [Release] zTeam Season 6 EP3 + Source
please uploud a gameserver, on this.. Golden Dragon Invasion don`t appear ,socket item can`t be sold ,trade or drop...
re: [Release] zTeam Season 6 EP3 + Source
re: [Release] zTeam Season 6 EP3 + Source
lolz,
your resetsystem is fkd up
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
bendol
out of topic::
what version of ur Visual studio btw?
well im not coder, but i want to know how it works
bcoz ive try to use Visual studio 2010 profesional and after compilng it give me an error
M:\
or maybe u can give the link how to compile it
thanks
Install the vc 2010,12,13 if will you will work on more project it will be usefull.
Btw, I am using vc2013 for build this files.
M:\ you dont need to debug the files, you get the M:\ if you try to debug, and the gs doesnt find the patch..
If you want to debug with vc etc... you need to change the gs debug / release patch in the config. if you just want to build a new GS and after that take into your Gameserver folder, right click on the project and rebuild.
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
LightRaven
Fix to GensQuest (it disables Wandering Merchant Zyro quests but I will tell you how to fix it at the end).
1. Open GameServer.sln (solution of visual studio).
2. Find the file GameMain.cpp search for this:
3. Add this below that:
4. Go to the file QuestExpLuaBlind.h and add this in the end of the file:
Example:
http://i.imgur.com/7WDm865.png
5. Now go to the folder GameServer/Data and open the file ServerInfo.dat and add "FreeServer = 1" to enable GensQuests like this:
http://i.imgur.com/KikUNoC.png
6. To enable Wandering Merchan Zyro quests with this FreeServer = 1, go to the file Quest_Main_NPC_TalkList.lua in the folder Data/Lua from the server files, open it with notepad and search for the this:
function Ep7_NPCTalkList(iObjIndex). Inside of it, search for it:
You can do two things here, it's the same:
a. Replace with this:
OR
b. Replace with this:
That's all.
After 3 and 4:
Error 2 error C2065: 'gFreeServer' : undeclared identifier C:\MuServer\Source\zGameServer-master\GameServer\GameMain.cpp 1764 1 GameServer
re: [Release] zTeam Season 6 EP3 + Source
nobody can`t share a GAMESERVER GOOD ? with Golden Dragon Invasion and socket items can be trade or sold?
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
djsad94
Install the vc 2010,12,13 if will you will work on more project it will be usefull.
Btw, I am using vc2013 for build this files.
M:\ you dont need to debug the files, you get the M:\ if you try to debug, and the gs doesnt find the patch..
If you want to debug with vc etc... you need to change the gs debug / release patch in the config. if you just want to build a new GS and after that take into your Gameserver folder, right click on the project and rebuild.
after compile it i got an error for gameserver its say "cannot find M:\ drive" when i try to open it
btw i am using VS2008, 2010 and 2012
thanks