re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
crancenul
Use this, hope it works fine!
http://www.filedropper.com/zclient
re: [Release] zTeam Season 6 EP3 + Source
who can share server with fixes? many peoples waiting for this
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
DomiTori
who can share server with fixes? many peoples waiting for this
make by self:thumbup::D:
its very easy:junglejane:
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
15351535
make by self:thumbup::D:
its very easy:junglejane:
i am newbie. don't know c++. learn php and dle api
- - - Updated - - -
i wonna translate all client in russian. so i need normal server
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
crancenul
bro you use sql 2008 or 2000 ? answer me please
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
Sklex
bro you use sql 2008 or 2000 ? answer me please
use sql 2008r2 Dude!
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
crancenul
who can help me with a zclient.dll good ?
-skip image-
You can remove it simple through the source.
Just search for the button at Interface.cpp, below to:
Code:
void Interface::Load()
{
this->BindObject(eSAMPLEBUTTON, 0x7AA4, 16, 15, 175, 1);
Comment the button with "//".
And this just because it's good remove image from load, search for the respect button image, at Interface.cpp, below to:
Code:
void Interface::LoadImages()
{
And comment the respective line too.
Compile and done.
re: [Release] zTeam Season 6 EP3 + Source
i don`t have source, please upload a zclient.dll perfect :D
re: [Release] zTeam Season 6 EP3 + Source
Someone know if in zClient.dll source already have unlocked now items to be added like new weapons and sets?
If yes or no, what is the process for those files.
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
Sklex
bro you use sql 2008 or 2000 ? answer me please
i use sql 2008
i have a bug,someone can help with solution?
http://s9.postimg.org/kvqzcmr7z/Scre...17_53_0000.jpg
re: [Release] zTeam Season 6 EP3 + Source
how activate Gens Quest?????
thanks
re: [Release] zTeam Season 6 EP3 + Source
After 400 Level, master level character zen drop get f*cked (if my level is < 400, then zen drop is normal):
http://i.imgur.com/FzWnSN0.jpg
any solution? thanks.
re: [Release] zTeam Season 6 EP3 + Source
lvl 400 no zen drop this is normal no bug/error
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
XShion
lvl 400 no zen drop this is normal no bug/error
it is not normal. need find any solution for this. because characters w/o master evolution have normal zen drop after 400lvl
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
psychedelic
After 400 Level, master level character zen drop get f*cked (if my level is < 400, then zen drop is normal):
http://i.imgur.com/FzWnSN0.jpg
any solution? thanks.
try to set:
master money= 10000
re: [Release] zTeam Season 6 EP3 + Source
anyone tryed doing a dropevent ? only the person who dropped the BOK or any other eventbag can pick it up normally afther some time passes anyone can pick up the item. anyone know a fix ?
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
L1mer41n
anyone tryed doing a dropevent ? only the person who dropped the BOK or any other eventbag can pick it up normally afther some time passes anyone can pick up the item. anyone know a fix ?
Check Looting Time, sorry bad english
re: [Release] zTeam Season 6 EP3 + Source
Yea we adjusted it to a much longer time and still afther that the items just dissapeared and couldnt be picked up by others
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
michi28
you have the client files?
Someone?
re: [Release] zTeam Season 6 EP3 + Source
Quote:
Originally Posted by
fenixpe
you have the client files?
Someone?
its very simple,use season 8 client:D:
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.