Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] zTeam Season 6 EP3 + Source

Newbie Spellweaver
Joined
Jun 8, 2014
Messages
84
Reaction score
1
Good evening. Someone tell me where to make the level of the dark horses less than 220? Any changes It does not help. Thank you all for your help!
 
Experienced Elementalist
Joined
Apr 23, 2015
Messages
237
Reaction score
20
ItemLuckDroper = 0
ItemExcDropRate = 877

But it's still drops excellent items + Luck even if the luck drop rate is set to 0..
anyone know this ?? some great coder in there. please help...

Th3AnG3L - [Release] zTeam Season 6 EP3 + Source - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Dec 3, 2015
Messages
19
Reaction score
0
Connect Server UP Not Found Usage: JoinServer.exe /p11111 /ca127.0.0.1 /cp11111 /p : Joinserver port /ca: ConnectServer IP /cp: ConnectServer Port.
 
Junior Spellweaver
Joined
Oct 8, 2014
Messages
125
Reaction score
5
1.Occasionally Private not receive information
Th3AnG3L - [Release] zTeam Season 6 EP3 + Source - RaGEZONE Forums


2.Summoner etetnal winged Gloves error
Th3AnG3L - [Release] zTeam Season 6 EP3 + Source - RaGEZONE Forums


3.class RF occasionally death using BUFF skills top does not show
 
(づ。◕‿‿◕。)
Loyal Member
Joined
Jun 23, 2014
Messages
1,853
Reaction score
424
1.Occasionally Private not receive information
Th3AnG3L - [Release] zTeam Season 6 EP3 + Source - RaGEZONE Forums


2.Summoner etetnal winged Gloves error
Th3AnG3L - [Release] zTeam Season 6 EP3 + Source - RaGEZONE Forums


3.class RF occasionally death using BUFF skills top does not show
2 bug is an error on the itemtooltip.bmd
3 you have to remake the the skills of rf if im not wrong, you can find it in the development section on the zteam s6 stable + fixes or something like that
 
Junior Spellweaver
Joined
Oct 8, 2014
Messages
125
Reaction score
5
2 bug is an error on the itemtooltip.bmd
3 you have to remake the the skills of rf if im not wrong, you can find it in the development section on the zteam s6 stable + fixes or something like that

you have repair itemtooltip.bmd Right?
 
Skilled Illusionist
Joined
Feb 20, 2012
Messages
310
Reaction score
23
Who know how to block multiple windows of Main.exe from zClient.dll source?
 
Don't be afraid to ask!
Loyal Member
Joined
Jun 2, 2012
Messages
1,454
Reaction score
252
Who know how to block multiple windows of Main.exe from zClient.dll source?

You can code in it, if main.exe running 2 times and the user start a 3rd one, you can close the latest opened main.exe

Process[] gameProcs_ = Process.GetProcessesByName(Global.GameProcessName);

if (gameProcs_[0].StartTime > gameProcs_[1].StartTime && gameProcs_[0].StartTime > gameProcs_[2].StartTime)
{
gameProcs_[0].Kill();
}

elseif... etc.. :)
 
Skilled Illusionist
Joined
Feb 20, 2012
Messages
310
Reaction score
23
You can code in it, if main.exe running 2 times and the user start a 3rd one, you can close the latest opened main.exe

Process[] gameProcs_ = Process.GetProcessesByName(Global.GameProcessName);

if (gameProcs_[0].StartTime > gameProcs_[1].StartTime && gameProcs_[0].StartTime > gameProcs_[2].StartTime)
{
gameProcs_[0].Kill();
}

elseif... etc.. :)

This is exactly what i meant. Thank you!
 
Last edited:
Skilled Illusionist
Joined
Feb 20, 2012
Messages
310
Reaction score
23
You can code in it, if main.exe running 2 times and the user start a 3rd one, you can close the latest opened main.exe

Process[] gameProcs_ = Process.GetProcessesByName(Global.GameProcessName);

if (gameProcs_[0].StartTime > gameProcs_[1].StartTime && gameProcs_[0].StartTime > gameProcs_[2].StartTime)
{
gameProcs_[0].Kill();
}

elseif... etc.. :)

How and where i need to define - Process, gameProcs_ ?

Th3AnG3L - [Release] zTeam Season 6 EP3 + Source - RaGEZONE Forums
 
Last edited:
Experienced Elementalist
Joined
Jun 17, 2014
Messages
242
Reaction score
107
You can code in it, if main.exe running 2 times and the user start a 3rd one, you can close the latest opened main.exe

Process[] gameProcs_ = Process.GetProcessesByName(Global.GameProcessName);

if (gameProcs_[0].StartTime > gameProcs_[1].StartTime && gameProcs_[0].StartTime > gameProcs_[2].StartTime)
{
gameProcs_[0].Kill();
}

elseif... etc.. :)
it can bypass very easy :)
 
Newbie Spellweaver
Joined
Jun 18, 2015
Messages
86
Reaction score
1
hi guys im use zteam season 6.3 files but i really dont know how to use and configure the vip system of this files , can anyone explain me fast where i can edit the vip duration, the vip exp... please
Thanks
 
Newbie Spellweaver
Joined
Dec 3, 2015
Messages
19
Reaction score
0
guys who tested . Is the points adds online by /add command or need to relogin?
 
Back
Top