-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
ahmetoz27
How what do you mean shop files manuel settings ? as you see in pic ther is shop button but its off you know at old servers you can use any kind of editor ther is no any editor for this s8 ?
manually, or complete the code :)
Quote:
Originally Posted by
FrodoTeabaggins
Geez so many lazy people in this topic asking things without at least take a look at the files.
There's no shop editor atm, because of the .xml format.
Btw. Shop editor... Pfft. What about the old method of editing shops manually? I'm the one still using it? (Editors won't teach you anything!)
---------
Have anyone tried to edit item names? I've edited a wing name (Server/Client) but in-game the name wasn't changed (Yup, i've edited all the items.bmd in client side. (_eng, _por, _spa) and used zFileManager compiled)
did you edit the itemtooltip.bmd?
- - - Updated - - -
to add the item code option in the zfilemanager
add a button and a text box with readonly property in ItemEditor.cs[Design]
and add this code in the button section in itemeditor.cs
PHP Code:
string category = listBoxCategory.GetItemText(listBoxCategory.SelectedItem); int value = (int)numericUpDownIndex.Value;
int cat=0;
if (category == "Sword")
{
cat = 0;
}
if (category == "Axes")
{
cat = 1;
}
else if (category == "Maces & Scepters")
{
cat = 2;
}
else if (category == "Spears")
{
cat = 3;
}
else if (category == "Bows & Crossbows")
{
cat = 4;
}
else if (category == "Staffs & Books")
{
cat = 5;
}
else if (category == "Shields")
{
cat = 6;
}
else if (category == "Helms")
{
cat = 7;
}
else if (category == "Armors")
{
cat = 8;
}
else if (category == "Pants")
{
cat = 9;
}
else if (category == "Gloves")
{
cat = 10;
}
else if (category == "Boots")
{
cat = 11;
}
else if (category == "Wings & Misc")
{
cat = 12;
}
else if (category == "Pets & Misc")
{
cat = 13;
}
else if (category == "Jewels & Misc")
{
cat = 14;
}
else if (category == "Magic books")
{
cat = 15;
}
int icode = value + (cat * 512);
string s = icode.ToString();
// replace itemcode.text for your textboxname.text
Itemcode.Text = s;
https://forum.ragezone.com/cache.php...%2FXZ9c4Ks.png
-
re: [Release] zTeam Season 8 Episode 2 (Source)
any one want to help to fix main 8.3(guardIt)?
http://i.imgur.com/bHLnJ4L.jpg
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
ashlay
Skype?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
did you edit the itemtooltip.bmd?
Bro I'm trying to change item names, itemtooltip = item option names, as you can see (check SS's) the item name, for example, Storm Wings (Changed in item_eng.bmd, _por.bmd, _spn.bmd || Server side: item.txt) but when i open my game the name is 'Wing of Storm' (Default Name)
https://forum.ragezone.com/cache.php...m%2Fip7aqw.png
https://forum.ragezone.com/cache.php...m%2Fmrcoaq.png
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
FrodoTeabaggins
item.bmd = name when the item is on the floor
itemtooltip.bmd = name of the item displayed when you hover the mouse over it
https://forum.ragezone.com/cache.php...%2FhAfC2Or.png
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
ashlay
ashlay. use client s8.2 zteam + main s8.3 zteam ??? for icon Event. thanks
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Seize the server lag after several hours online - someone has the solution 70 online
-
re: [Release] zTeam Season 8 Episode 2 (Source)
how to add muun system in this files zteam?
- - - Updated - - -
By the way where i can found TServerInfoDisplayer.cpp:
-
re: [Release] zTeam Season 8 Episode 2 (Source)
-
re: [Release] zTeam Season 8 Episode 2 (Source)
I found the grand reset system thing its the same as the normal reset and also there is an item requirement option at the reset npc. I'll post this tomorrow after i finish the item requirement thing, btw the grand reset system doesnt add anything in special, just restarts the reset count to 0
- - - Updated - - -
Quote:
Originally Posted by
michi28
Can you share it?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
manually, or complete the code :)
did you edit the itemtooltip.bmd?
- - - Updated - - -
to add the item code option in the zfilemanager
add a button and a text box with readonly property in ItemEditor.cs[Design]
and add this code in the button section in itemeditor.cs
PHP Code:
string category = listBoxCategory.GetItemText(listBoxCategory.SelectedItem); int value = (int)numericUpDownIndex.Value;
int cat=0;
if (category == "Sword")
{
cat = 0;
}
if (category == "Axes")
{
cat = 1;
}
else if (category == "Maces & Scepters")
{
cat = 2;
}
else if (category == "Spears")
{
cat = 3;
}
else if (category == "Bows & Crossbows")
{
cat = 4;
}
else if (category == "Staffs & Books")
{
cat = 5;
}
else if (category == "Shields")
{
cat = 6;
}
else if (category == "Helms")
{
cat = 7;
}
else if (category == "Armors")
{
cat = 8;
}
else if (category == "Pants")
{
cat = 9;
}
else if (category == "Gloves")
{
cat = 10;
}
else if (category == "Boots")
{
cat = 11;
}
else if (category == "Wings & Misc")
{
cat = 12;
}
else if (category == "Pets & Misc")
{
cat = 13;
}
else if (category == "Jewels & Misc")
{
cat = 14;
}
else if (category == "Magic books")
{
cat = 15;
}
int icode = value + (cat * 512);
string s = icode.ToString();
// replace itemcode.txt for your textboxname.cs
Itemcode.Text = s;
I don't really get it.. can you be more specific? where to add this? I add it at the bottom but the build is error.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
PiECLOUD
I don't really get it.. can you be more specific? where to add this? I add it at the bottom but the build is error.
Add the button in the itemeditor.cs[design] as i said then double click the button and it will take you to the button code section then just paste that, also remember to add the textbox and replace the name like the commented part says
- - - Updated - - -
Quote:
Originally Posted by
natzugen
Add the button in the itemeditor.cs[design] as i said then double click the button and it will take you to the button code section then just paste that, also remember to add the textbox and replace the name like the commented part says
I'll upload the compiled version and the source later when i have acces to my pc if you still have problems
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
Add the button in the itemeditor.cs[design] as i said then double click the button and it will take you to the button code section then just paste that, also remember to add the textbox and replace the name like the commented part says
how do you connect the code with these boxes???
https://forum.ragezone.com/cache.php...%2FN0V23ys.png
and what should be the textboxname.cs in here?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
jackbot
!!
@jackbot Please share move full map! Thanks you!!!
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Even putting the npc 249 x happens absolutely nothing anyone knows anything let me know if you can be my MuServer? someone could post the files running this to me please.
MuServer: https://forum.ragezone.com/f197/ztea...video-1055676/
https://forum.ragezone.com/cache.php...%2FBPr4wDi.jpg
https://forum.ragezone.com/cache.php...%2FNFdTfGx.jpg
-
re: [Release] zTeam Season 8 Episode 2 (Source)
i have a problem and don't know how to solve it, after i open the client and press the server valhalla it disconnects me how to solve it?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
PiECLOUD
so you didnt create the button nor the textbox
just do as it says add them in the itemeditor.cs(design)
doudble click the button and it will take you where that code goes
then just replace the itemcode.text for the name of your textbox followed of ".text"
example your textbox is called "whatever" then instead of itemcode.text you write whatever.text
i dont know how else to put it, i'll just upload the compiled version later if you stil have problems saerch on MSDN forums or goole windows froms in c#
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
there's no reset system on severithe release..
we got brain.
try to understand things to. don't spam.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
try replacing the npc id with this one -> 226
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
so you didnt create the button nor the textbox
just do as it says add them in the itemeditor.cs(design)
doudble click the button and it will take you where that code goes
then just replace the itemcode.text for the name of your textbox followed of ".text"
example your textbox is called "whatever" then instead of itemcode.text you write whatever.text
i dont know how else to put it, i'll just upload the compiled version later if you stil have problems saerch on MSDN forums or goole windows froms in c#
im telling you which one is the textbox???
Itemcode: is Label
the middle box is a textbox but it must be blank.
and last one is Get Item code button..
so ??? do I have to replace Itemcode.text with Itemcode: ????
I can't replace it with the blank one.. because there will be a numbers going to show up there once you hit the button.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
PiECLOUD
im telling you which one is the textbox???
Itemcode: is Label
the middle box is a textbox but it must be blank.
and last one is Get Item code button..
so ??? do I have to replace Itemcode.text with Itemcode: ????
I can't replace it with the blank one.. because there will be a numbers going to show up there once you hit the button.
here is compiled https://mega.co.nz/#!EN9w3QbJ!7Qyerk...6OiQ2086nTE0Fg
1 thing is shown text and a different thing is object name, check the object properties.
https://forum.ragezone.com/cache.php...%2FfNZlN7s.png
again, read a little about windows forms first if you dont know what you are doing or else you will only get errors.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
Simple & best explanation :
Double click on ItemEditor.cs
1 click the Toolbox , you see it on the right side.
2 create a Label name it "temcode:"
3 create a textbox , leave it blank. now scroll down you will a "Design" Tab
and you will see "TextBox1" (which is the default name)
4 go back to the toolbox and create a button, name it Get item code or whatever you want to name it
5 Hold Cntrl and click the Blank textbox and the button you just created, double click again there will be a pop-up showing codes.
copy this code
Code:
string category = listBoxCategory.GetItemText(listBoxCategory.SelectedItem); int value = (int)numericUpDownIndex.Value;
int cat=0;
if (category == "Sword")
{
cat = 0;
}
if (category == "Axes")
{
cat = 1;
}
else if (category == "Maces & Scepters")
{
cat = 2;
}
else if (category == "Spears")
{
cat = 3;
}
else if (category == "Bows & Crossbows")
{
cat = 4;
}
else if (category == "Staffs & Books")
{
cat = 5;
}
else if (category == "Shields")
{
cat = 6;
}
else if (category == "Helms")
{
cat = 7;
}
else if (category == "Armors")
{
cat = 8;
}
else if (category == "Pants")
{
cat = 9;
}
else if (category == "Gloves")
{
cat = 10;
}
else if (category == "Boots")
{
cat = 11;
}
else if (category == "Wings & Misc")
{
cat = 12;
}
else if (category == "Pets & Misc")
{
cat = 13;
}
else if (category == "Jewels & Misc")
{
cat = 14;
}
else if (category == "Magic books")
{
cat = 15;
}
int icode = value + (cat * 512);
string s = icode.ToString();
// replace itemcode.txt for your textboxname.cs
Itemcode.Text = s;
and the end of the code there's a text says "Itemcode.Text"
replace it with your Blank textbox name which is the one I told you in instruction # 3
in the Design Tab. so , it's textBox1. Now replace Itemcode.Text with textBox1.Text.
Now Compile the Source and done.
@natzugen
SIMPLE EXPLANATION RIGHT?? why can't you do that?? don't make things getting longer..
For those who don't know how to add
follow my instructions.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
PiECLOUD
Simple & best explanation :
Double click on ItemEditor.cs
1 click the Toolbox , you see it on the right side.
2 create a Label name it "temcode:"
3 create a textbox , leave it blank. now scroll down you will a "Design" Tab
and you will see "TextBox1" (which is the default name)
4 go back to the toolbox and create a button, name it Get item code or whatever you want to name it
5 Hold Cntrl and click the Blank textbox and the button you just created, double click again there will be a pop-up showing codes.
copy this code
Code:
string category = listBoxCategory.GetItemText(listBoxCategory.SelectedItem); int value = (int)numericUpDownIndex.Value;
int cat=0;
if (category == "Sword")
{
cat = 0;
}
if (category == "Axes")
{
cat = 1;
}
else if (category == "Maces & Scepters")
{
cat = 2;
}
else if (category == "Spears")
{
cat = 3;
}
else if (category == "Bows & Crossbows")
{
cat = 4;
}
else if (category == "Staffs & Books")
{
cat = 5;
}
else if (category == "Shields")
{
cat = 6;
}
else if (category == "Helms")
{
cat = 7;
}
else if (category == "Armors")
{
cat = 8;
}
else if (category == "Pants")
{
cat = 9;
}
else if (category == "Gloves")
{
cat = 10;
}
else if (category == "Boots")
{
cat = 11;
}
else if (category == "Wings & Misc")
{
cat = 12;
}
else if (category == "Pets & Misc")
{
cat = 13;
}
else if (category == "Jewels & Misc")
{
cat = 14;
}
else if (category == "Magic books")
{
cat = 15;
}
int icode = value + (cat * 512);
string s = icode.ToString();
// replace itemcode.txt for your textboxname.cs
Itemcode.Text = s;
and the end of the code there's a text says "Itemcode.Text"
replace it with your Blank textbox name which is the one I told you in instruction # 3
in the Design Tab. so , it's textBox1. Now replace Itemcode.Text with textBox1.Text.
Now Compile the Source and done.
@
natzugen
SIMPLE EXPLANATION RIGHT?? why can't you do that?? don't make things getting longer..
For those who don't know how to add
follow my instructions.
i just shared the code i dont have any responsability to teach you how to add a textbox and name it since we are in a DEVELOPMENT thread.
besides is common sense that when someone says replace the name you shouldnt be changing the text.
if you know what to do with the textbox there is the code, if not there is the compiled version aswell.
have fun
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
i just shared the code i dont have any responsability to teach you how to add a textbox and name it since we are in a DEVELOPMENT thread.
besides is common sense that when someone says replace the name you shouldnt be changing the text.
if you know what to do with the textbox there is the code, if not there is the compiled version aswell.
have fun
just wanna make things clear , and simple to understand..
thanks for the link you shared but I don't need it anymore.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Can anyone share the server already built ?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
samsunggon
Event CastleDeep not work, how to fix
//=====================================
// Event timer (24 format)
//=====================================
0
// ----------------------------------------------------------------------------------
// Hour Minute
// ----------------------------------------------------------------------------------
17 00
end
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
Angryy
Can anyone share the server already built ?
everything is in the first post, if you want fixes you will have to work with the sources and the pieces of code posted in the thread
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Hi all !
Cananyone suggesthow to fixMasterSkilthat the pointswere not burnedafter reset.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
pravednik
Hi all !
Cananyone suggesthow to fixMasterSkilthat the pointswere not burnedafter reset.
if you are using the reset npc just set masterpoints to 1 in ResetSystem.xml
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
if you are using the reset npc just set masterpoints to 1 in ResetSystem.xml
noI dothe resetthrough the website
-
re: [Release] zTeam Season 8 Episode 2 (Source)
What editor can use to add items?
http://i.imgur.com/EvozTZS.png
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
mu maker or titan editor works fine
also someone shared a mumaker adapted for this files in the release section
-
re: [Release] zTeam Season 8 Episode 2 (Source)
You could be posting the link to download an editor that is compatible with this version
-
re: [Release] zTeam Season 8 Episode 2 (Source)
by the time the inventory editor I would rather Zen character. if I can let go well it will share
https://forum.ragezone.com/cache.php...09descarga.jpg
-
re: [Release] zTeam Season 8 Episode 2 (Source)
@natzugen is this server files compatible with the Old Database zTeam cracked files?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
MaskARRA
@
natzugen is this server files compatible with the Old Database zTeam cracked files?
Idk i didnt try the recommended DB is in the main post, using a different one might give you weird bugs
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
MaskARRA
@
natzugen is this server files compatible with the Old Database zTeam cracked files?
If the reason you ask is because you have an existing database with user records, you could just export the records and port them over into the database provided with this release.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
fallenfate how to increase the drop rate of land of trial?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
it is p0sib1e t0 restrict 0ther gm c0mmands fr0m specify user 1ike recruit GM's, ?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
bhurano
it is p0sib1e t0 restrict 0ther gm c0mmands fr0m specify user 1ike recruit GM's, ?
Using perium feature
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
You could be posting the link to download an editor that is compatible with this version
I think you need an EasyLife too.
Here it is ~~> RaGEZONE
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
fallenfate
If the reason you ask is because you have an existing database with user records, you could just export the records and port them over into the database provided with this release.
Yes I have, but I want to try first on my Old Database if its possible.
Ill make a new Sub-Server using only the GameServer released on this thread, they run but when I enter on the server it shows disconnect.
I didnt try other programs like zMultiServer1- 2 ,zConnectServer and eXdB.exe...
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
MaskARRA
Yes I have, but I want to try first on my Old Database if its possible.
Ill make a new Sub-Server using only the GameServer released on this thread, they run but when I enter on the server it shows disconnect.
I didnt try other programs like zMultiServer1- 2 ,zConnectServer and eXdB.exe...
Well, technically, as long as the required tables and fields are there, the old database should work. As mentioned by others, though, there may be random issues that arise over time through testing, but that's more likely if you were to, say, use an S6 database, lol.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Hello
Guys any one can share servers files + Client sound + DB
with working CS Arca War and Archeron not bugged ?
Please Thx
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
Chalidow
Hello
Guys any one can share servers files + Client sound + DB
with working CS Arca War and Archeron not bugged ?
Please Thx
o.O other EasyLife :P guys
I do not think anyone give away what you're asking
- - - Updated - - -
Hello fellow'm trying to add a message to the GS when the shop is relogean, now get the message but not relogea the shop that month would be missing? the code
Español :
hola compañeros estoy intentando agregar un mensaje al GS cuando se relogean los shop, ahora sale el mensaje pero no relogea los shop que mes estaria faltando ? al codigo
void ShopManager::Reload()
{
for( int i = 0; i < this->m_ShopList.size(); i++ )
{
this->m_ShopList[i].Init();
this->m_ShopList[i].m_ShopNumber = i;
char FilePath[MAX_PATH] = { 0 };
sprintf(FilePath, "Shop\\Shop%d.xml", i);
MsgBox("Shop Loaded")
return;
if( _access(gDirPath.GetNewPath(FilePath), 4) != -1 )
{
if( this->m_ShopList[i].LoadShopItem(gDirPath.GetNewPath(FilePath)) )
{
this->m_ShopList[i].m_Loaded = true;
}
}
}
}
-
re: [Release] zTeam Season 8 Episode 2 (Source)
hi guys , when we do master lvl quest or any other quest it dont show the progress of what we doing is that possible get the code to fix that.
thx
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
Callejero
Hello fellow'm trying to add a message to the GS when the shop is relogean, now get the message but not relogea the shop that month would be missing? the code
void ShopManager::Reload()
{
for( int i = 0; i < this->m_ShopList.size(); i++ )
{
this->m_ShopList[i].Init();
this->m_ShopList[i].m_ShopNumber = i;
char FilePath[MAX_PATH] = { 0 };
sprintf(FilePath, "Shop\\Shop%d.xml", i);
MsgBox("Shop Loaded")
return;
if( _access(gDirPath.GetNewPath(FilePath), 4) != -1 )
{
if( this->m_ShopList[i].LoadShopItem(gDirPath.GetNewPath(FilePath)) )
{
this->m_ShopList[i].m_Loaded = true;
}
}
}
}
replace with this
PHP Code:
void ShopManager::Reload()
{
for( int i = 0; i < this->m_ShopList.size(); i++ )
{
this->m_ShopList[i].Init();
this->m_ShopList[i].m_ShopNumber = i;
char FilePath[MAX_PATH] = { 0 };
sprintf(FilePath, "Shop\\Shop%d.xml", i);
if( _access(gDirPath.GetNewPath(FilePath), 4) != -1 )
{
if( this->m_ShopList[i].LoadShopItem(gDirPath.GetNewPath(FilePath)) )
{
this->m_ShopList[i].m_Loaded = true; }
}
}
//reload message
MsgBox("Shop Loaded");
}
-
1 Attachment(s)
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
replace with this
PHP Code:
void ShopManager::Reload()
{
for( int i = 0; i < this->m_ShopList.size(); i++ )
{
this->m_ShopList[i].Init();
this->m_ShopList[i].m_ShopNumber = i;
char FilePath[MAX_PATH] = { 0 };
sprintf(FilePath, "Shop\\Shop%d.xml", i);
if( _access(gDirPath.GetNewPath(FilePath), 4) != -1 )
{
if( this->m_ShopList[i].LoadShopItem(gDirPath.GetNewPath(FilePath)) )
{
this->m_ShopList[i].m_Loaded = true; }
}
}
//reload message
MsgBox("Shop Loaded");
}
Thank You Natzugen.!
Attachment 152581
Natzugen as I can change the title of the message?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
Callejero
Thank You Natzugen.!
Attachment 152581
Natzugen as I can change the title of the message?
oops
replace
Code:
MsgBox("Shop Loaded");
with thsi
Code:
MessageBox(0,"Shop Loaded", "Shops Reload", MB_OK);
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Who have full fix? Server and client?
I can buy, send me skype (pm)
-
re: [Release] zTeam Season 8 Episode 2 (Source)
please i have full fix muserver and client please upload post link download
-
re: [Release] zTeam Season 8 Episode 2 (Source)
nobody will share a full fix
because most people will want to sell their full fixes
if I had more knowledge in problem-bugs and errors, I would publish full fix without hesitation
But I do not know :'(
-
re: [Release] zTeam Season 8 Episode 2 (Source)
I'm as PK, I can not attack any person, where we arrange this?
http://i.imgur.com/KbIL1Np.jpg
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
Check on your Serverinfo, NONPK = 1/Enabled , 0/Disabled
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Who have pk clear npc ? ;.d
- - - Updated - - -
Who have main unlock to new itens?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
I'm as PK, I can not attack any person, where we arrange this?
I think you do not understand, you kill other players, but when you get fullpk your character not kill more does not attack any character.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
80 users online the server has therefore no lag people could come , be put after locking and password
any solution ?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
degola
Who have main unlock to new itens?
As far as i know the main supports new items, you just have to know how to do it.
- - - Updated - - -
Quote:
Originally Posted by
Bloder
80 users online the server has therefore no lag people could come , be put after locking and password
any solution ?
I cant understand what you said
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Antes de ficar PK lvl 2 ele ataca normal:
Before getting PK lvl 2 he attacks Normal:
http://i.imgur.com/uHGm5JA.jpg
Depois que você esta com o PK level 2 ele para de atacar. alguem tem a correção deste bug ou onde configura?
Once you are level with the PK 2 he stops attacking. someone has a fix for this bug or where you configure?
http://i.imgur.com/21D2Frj.jpg
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
Antes de ficar PK lvl 2 ele ataca normal:
Before getting PK lvl 2 he attacks Normal:
http://i.imgur.com/uHGm5JA.jpg
Depois que você esta com o PK level 2 ele para de atacar. alguem tem a correção deste bug ou onde configura?
Once you are level with the PK 2 he stops attacking. someone has a fix for this bug or where you configure?
http://i.imgur.com/21D2Frj.jpg
Please share map loren pk ^^!
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
How about using the search option??
I posted the fix a long time ago.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
@StefanoAguiar
According to kubaa1 he already fix that long time ago.
Just check every pages..
Don't be too lazy.. You're an EasyLife type tho.
or , probably you cannot understand..
let me translate it for you
StefanoAguiar
De acordo com kubaa1 ele já consertar isso há muito tempo.
Basta verificar todas as páginas ..
Não seja preguiçoso demais .. Você é um tipo tho EasyLife .
by google translate.
you're welcome.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
For the EasyLife... xD
Quote:
Originally Posted by
kubaa1
PK Is limited yes, to fix it write PKLimitFree = 1 in serverinfo.dat under [GameServer Info]
This will also turn on PKItemdrop, so you must edit your UserDieItemDrop in Custom folder
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
Antes de ficar PK lvl 2 ele ataca normal:
Before getting PK lvl 2 he attacks Normal:
Depois que você esta com o PK level 2 ele para de atacar. alguem tem a correção deste bug ou onde configura?
Once you are level with the PK 2 he stops attacking. someone has a fix for this bug or where you configure?
Add to zGameServer/Data/ServerInfo.dat this line:
PkLimitFree = 1
- - - Updated - - -
Quote:
Originally Posted by
Bloder
80 users online the server has therefore no lag people could come , be put after locking and password
any solution ?
First you need to separate zMS1 only to DataServer1.
Then copy zMS1 and name it zMS3.
Then you need to make auto-restart of zMS3(aka DataServer1 Only) each 1 hour or so on.
Use some program like MUServerStartUp or Windows Integrated one to do auto-restarts.
This will solve your freeze at login.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
People are saying that the main supports new items , but what I do not support . The item is invisible in the inventory. Could someone please just post the main.exe ?
Or pm me pleaseeeeeee?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Does anyone know what might that be?It is one of the players, it is using Windows 8.1
http://i.imgur.com/k7uRyV0.jpg
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
degola
People are saying that the main supports new items , but what I do not support . The item is invisible in the inventory. Could someone please just post the main.exe ?
Or pm me pleaseeeeeee?
You need to add the item on itemTRSData.bmd
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
Maybe corrupted client....seems like thw whole interface is missing o.O
Quote:
Originally Posted by
MrQU3ST10N
You need to add the item on itemTRSData.bmd
No point. 3rd time i see rhis post and he's still asking around the same thing.
Whats the point on adding items here while its still under development anyways? [emoji29]
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
ianvalls90
No point. 3rd time i see his post and he's still asking around the same thing.
Whats the point on adding items here while its still under development anyways? [emoji29]
ooh. okay.. XD.
I tried adding a custom item too but I stop. I can't even use it, but it's not invisible..
I'd better make the client clean.
People add customs 'coz they want a cool stuffs in their server. That's what I guess..
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
MrQU3ST10N
ooh. okay.. XD.
I tried adding a custom item too but I stop. I can't even use it, but it's not invisible..
I'd better make the client clean.
People add customs 'coz they want a cool stuffs in their server. That's what I guess..
what is your problem with custom items?
i added them just fine O.O
btw did anyone tried to enable custom wings from zclient.dll?
the gameserver compiled without problems but seems like a part of the code for that in zclient is missing
-
re: [Release] zTeam Season 8 Episode 2 (Source)
CHANGE WHERE THE TIME BETWEEN EVENTS , THE Selupan runs every 5 minutes
Code:
//===================================================================================
// zGameServer
// ----------------------------------------------------------------------------------
// Description: Raklion Selupan battle configuration
// ----------------------------------------------------------------------------------
// Revision: 23:20 07.08.2013
//===================================================================================
//=====================================
// Intervals (close & end - sec.)
//=====================================
0
// ----------------------------------------------------------------------------------
// Appearance BossZoneClose End
// ----------------------------------------------------------------------------------
5 300 300
end
//=====================================
// Eggs
//=====================================
1
// ----------------------------------------------------------------------------------
// EggHalf EggMax
// ----------------------------------------------------------------------------------
5 15
end
//=====================================
// Boss skill use delay
//=====================================
2
1500
end
//=====================================
// Boss attack pattern rate
//=====================================
3
// ----------------------------------------------------------------------------------
// ID1 ID2 ID3 ID4 ID5 ID6
// ----------------------------------------------------------------------------------
80 60 50 40 20 10
end
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
what is your problem with custom items?
i added them just fine O.O
btw did anyone tried to enable custom wings from zclient.dll?
the gameserver compiled without problems but seems like a part of the code for that in zclient is missing
I can't wear the item. and no there's no description on it..
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Somebody could only post the main.exe and DLL ?
My main don't support new itens, It is invisible in the inventory. I looked up to page 45 and found nothing : s
- - - Updated - - -
Quote:
Originally Posted by
MrQU3ST10N
You need to add the item on itemTRSData.bmd
Hey bro, first thanks. Second, how i can open the ItemTRSData.bmd ? i was tryed to open with zfilemanager and look whats happens:
https://forum.ragezone.com/cache.php...%2FBibASOG.png
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
degola
Somebody could only post the main.exe and DLL ?
My main don't support new itens,
It is invisible in the inventory. I looked up to page 45 and found nothing : s
- - - Updated - - -
Hey bro, first thanks. Second, how i can open the ItemTRSData.bmd ? i was tryed to open with zfilemanager and look whats happens:
https://forum.ragezone.com/cache.php...%2FBibASOG.png
use the zfile manager posted in like 3 pages back and use the option itemTRSData.bmd not the item.bmd >->
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
use the zfile manager posted in like 3 pages back and use the option itemTRSData.bmd not the item.bmd >->
Thanks, but Where the option itemTRSData bro? I dont see the option in zfile as you was pasted os last 7 pages..
EDITED:
OK BRO THANKS, I FOUND XD
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
did you even search?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
natzugen
use the zfile manager posted in like 3 pages back and use the option itemTRSData.bmd not the item.bmd >->
lol I do not want to give up , but look what bizarre. If I do item +1 with him in the inventory gets gray screen . If I do +11 item the screen is shining through golden ( like an item) . Crazy .
Pics:
https://forum.ragezone.com/cache.php...%2FMjKUqSu.png
https://forum.ragezone.com/cache.php...%2FbiAYiXY.png
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
degola
I can open thread in help section, who knows your mother can answer. It is perhaps worth more than keep asking you something.
indeed it is :love:
- - - Updated - - -
to get the grand reset working at the npc add this in resetsystem.xml below </normal>
PHP Code:
<!-- Grand Reset settings --> <Grand> <!-- Switch (0: Disabled, 1: Enabled) --> <enabled>1</enabled>
<!-- NPC configuration (First need add npc in MonsterSetBase.xml --> <npc id="250" map="0" x="130" y="130" />
<!-- Group list --> <grouplist> <!-- minlevel: Min. level for reset maxlevel: Max. level for reset minreset: Min. reset for this group maxreset: Max. reset for this group money: Payment for reset (Money * <UserReset>) gensp: Contribution for reset credits: Credits for skip delay (0: without skips) delay: Delay for making reset (minutes) --> <group minlevel="400" maxlevel="400" minreset="0" maxreset="1000" money="1000000" gensp="0" credits="0" delay="0"> <!-- Cleaning configuration (0: No, 1: Yes) --> <cleaning> <stats>1</stats> <points>0</points> <skills>0</skills> <equipment>0</equipment> <inventory>0</inventory> <shop>0</shop> <masterlevel>0</masterlevel> <masterpoints>0</masterpoints> <masterskills>0</masterskills> <marlonquest>0</marlonquest> </cleaning> <!-- Checks configuration (0: Disabled, 1: Enabled) --> <checks> <equipment>0</equipment> <inventory>0</inventory> <shop>0</shop> </checks> <!-- pointmode: 0: Points * <UserReset>, 1: Points --> <reward pointmode="0"> <class id="0" point="250" gensp="0" credits="0"/> <!-- Wizard --> <class id="1" point="250" gensp="0" credits="0"/> <!-- Knight --> <class id="2" point="250" gensp="0" credits="0"/> <!-- Elf --> <class id="3" point="280" gensp="0" credits="0"/> <!-- Gladiator --> <class id="4" point="280" gensp="0" credits="0"/> <!-- Lord --> <class id="5" point="250" gensp="0" credits="0"/> <!-- Summoner --> <class id="6" point="250" gensp="0" credits="0"/> <!-- Fighter --> </reward> </group> </grouplist> </Grand>
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
muonlinegr2
please upload muserver Fix And Client :(::(::(::(::(::(::(::(:
Im working on it, Im still studying the whole source.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
-
re: [Release] zTeam Season 8 Episode 2 (Source)
hello, someone could do walk the MuunSystem? thanks
-
re: [Release] zTeam Season 8 Episode 2 (Source)
hello guys why the RF,DL, MG not muted from new create account have error name not allowed. but the true is its required 150-250 level to get a locked class to unlock.. why not muted like other files? it is a bug? also the duel every things fine except the respawning of the duelers in the same coordinate even you are not killed you respawned in same coordiantes. how to fix this ?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
When Pandora reaches 0 / durability, You can't warp , you can't pick items.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
mining.xml
-
re: [Release] zTeam Season 8 Episode 2 (Source)
anyone can share full package of this server inclune database
thanks bros
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Error NPC store
NPC: 492 Moss
NPC: 416 Rhea
Shop18.xml the same two items in the store
Excuse me
Shop13.xml
Shop14.xml
Shop23.xml
Shop24.xml
Which corresponds to the NPC
https://forum.ragezone.com/cache.php...2e2d94342e.pnghttps://forum.ragezone.com/cache.php...b4bad2157a.png
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
tangyi90
where's the error of that?
You can just simply remove the items in the shop or change it. If you want to.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
redf0x
anyone can share full package of this server inclune database
thanks bros
its in the main post of the thread
- - - Updated - - -
Quote:
Originally Posted by
bhurano
hello guys why the RF,DL, MG not muted from new create account have error name not allowed. but the true is its required 150-250 level to get a locked class to unlock.. why not muted like other files? it is a bug? also the duel every things fine except the respawning of the duelers in the same coordinate even you are not killed you respawned in same coordiantes. how to fix this ?
i didnt understand the rf,dl,mg part if you mean the level to create them you can change it in commonserver.cfg.
and about the duel thing maybe you touched something becuase im not having that issue
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Can anyone Hook main (Anti Hacker)? Pinkof
-
re: [Release] zTeam Season 8 Episode 2 (Source)
moss NPC is random weapons now and Rhea share Shop18.xm
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Is there any way to the GS not save logs?
- - - Updated - - -
Quote:
Originally Posted by
natzugen
indeed it is :love:
- - - Updated - - -
to get the grand reset working at the npc add this in resetsystem.xml below </normal>
PHP Code:
<!-- Grand Reset settings --> <Grand> <!-- Switch (0: Disabled, 1: Enabled) --> <enabled>1</enabled>
<!-- NPC configuration (First need add npc in MonsterSetBase.xml --> <npc id="250" map="0" x="130" y="130" />
<!-- Group list --> <grouplist> <!-- minlevel: Min. level for reset maxlevel: Max. level for reset minreset: Min. reset for this group maxreset: Max. reset for this group money: Payment for reset (Money * <UserReset>) gensp: Contribution for reset credits: Credits for skip delay (0: without skips) delay: Delay for making reset (minutes) --> <group minlevel="400" maxlevel="400" minreset="0" maxreset="1000" money="1000000" gensp="0" credits="0" delay="0"> <!-- Cleaning configuration (0: No, 1: Yes) --> <cleaning> <stats>1</stats> <points>0</points> <skills>0</skills> <equipment>0</equipment> <inventory>0</inventory> <shop>0</shop> <masterlevel>0</masterlevel> <masterpoints>0</masterpoints> <masterskills>0</masterskills> <marlonquest>0</marlonquest> </cleaning> <!-- Checks configuration (0: Disabled, 1: Enabled) --> <checks> <equipment>0</equipment> <inventory>0</inventory> <shop>0</shop> </checks> <!-- pointmode: 0: Points * <UserReset>, 1: Points --> <reward pointmode="0"> <class id="0" point="250" gensp="0" credits="0"/> <!-- Wizard --> <class id="1" point="250" gensp="0" credits="0"/> <!-- Knight --> <class id="2" point="250" gensp="0" credits="0"/> <!-- Elf --> <class id="3" point="280" gensp="0" credits="0"/> <!-- Gladiator --> <class id="4" point="280" gensp="0" credits="0"/> <!-- Lord --> <class id="5" point="250" gensp="0" credits="0"/> <!-- Summoner --> <class id="6" point="250" gensp="0" credits="0"/> <!-- Fighter --> </reward> </group> </grouplist> </Grand>
What is "credits" ? Wcoins?
- - - Updated - - -
Someone solved the Arka War ? Here does not work ... Someone has Npc to clean pk ? I swear when fix all i'll post everything here beautiful.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
https://forum.ragezone.com/cache.php...d29a38494c.png
Doppelganger, ImperialGuardianReward. Two copies of the monster can not move,
https://forum.ragezone.com/cache.php...ecfb5e90f5.png
Mercenary Guild Manager Tercia NPC click no response
-
re: [Release] zTeam Season 8 Episode 2 (Source)
I just recreated the code and deleted some lines right now for /pkreset command. I remove the /pkreset Username to a just /pkreset.
but after using this command you'll have to switch character to make your character be cleanse. XD
or use /warp command easiest way.
I don't know. but maybe it's lacking some codes..
but here , I'm gonna share guys.
Code:
case Command::PKReset:
{
GCMoneySend(lpUser->m_Index, lpUser->Money);
lpUser->m_PK_Count = 0;
lpUser->m_PK_Level = 3;
lpUser->m_PK_Time = 0;
// ----
if( lpUser->PartyNumber >= 0 )
{
gParty.SetPkLevel(lpUser->PartyNumber, lpUser->m_Index, lpUser->DBNumber, lpUser->m_PK_Level);
gParty.SetPkCount(lpUser->PartyNumber);
}
}
break;
change access to 1
for normal user.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
traxxx
Can anyone Hook main (Anti Hacker)? Pinkof
Boa pergunta, tentei por varios anti hacker mas todos que são adicionados o main.exe para de abrir, onde devemos dar hook para que o main.exe continue funcionando com o sistema de proteção?
Good question, I tried for several anti hacker but all that are added to the main.exe opening, where we give hook to the main.exe continues to function with the protection system?
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
StefanoAguiar
Boa pergunta, tentei por varios anti hacker mas todos que são adicionados o main.exe para de abrir, onde devemos dar hook para que o main.exe continue funcionando com o sistema de proteção?
Good question, I tried for several anti hacker but all that are added to the main.exe opening, where we give hook to the main.exe continues to function with the protection system?
To pensando em hook na Loader
-
re: [Release] zTeam Season 8 Episode 2 (Source)
you need to make antihacker dll be loaded by zClient.dll.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Someone have full fix? I can buy it.
Just pm with skype
I need this full fix or 98% ^^
- - - Updated - - -
who know put to consumes very little memory in sql 2008 ?
My vps only have 9 GB of memory. In three days the physical memory is already full use.
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
degola
Someone have full fix? I can buy it.
Just pm with skype
I need this full fix or 98% ^^
- - - Updated - - -
who know put to consumes very little memory in sql 2008 ?
My vps only have 9 GB of memory. In three days the physical memory is already full use.
But my DB only take nearly a GB.
using SQL server express 2008 r2
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
degola
Someone have full fix? I can buy it.
Just pm with skype
I need this full fix or 98% ^^
- - - Updated - - -
who know put to consumes very little memory in sql 2008 ?
My vps only have 9 GB of memory. In three days the physical memory is already full use.
create a sql job to delete the logs periodically
-
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by
ashlay
you need to make antihacker dll be loaded by zClient.dll.
Anti what else??
GS already block speed and agi/magic...