-
Activity
-
3
Once upon a time...
Im also curios what you accomplished on minecraft , if you programmed some crazy-ass servers - because that game is a lot more friendly if you want to mod it. -
1183
[40250] Reference Serverfile + Client + Src [15 Available Languages]
I can t start it. every time I receive connection refused. freebsd is 13.1 x64,I installed all libs,sv,mysql instaled,but I receive connection refused.... syser db can help me please? -
3
Once upon a time...
I have to continue this story, I have to write the chapter 2021 and 2022... Because 2023, you are his story!- 1
-
-
3
Once upon a time...
Great story! Glad you ended up doing what you were so passionate about! And I think this is the most professional managed community I have ever been a part of.- 1
-
-
1
-
0
problem ability
Hello guys, i have a problem with "refine-ability" a new ability with book [Hidden Content] (this is the book) [Hidden Content] (ability) when I try to read the book nothing happens sysser client 0325 21:21:15437 :: Traceback (most recent call last): 0325 21:21:15437 :: File "game.py", line 759, in BINARY_NEW_AddAffect 0325 21:21:15438 :: File "uiAffectShower.py", line 524, in BINARY_NEW_AddAffect 0325 21:21:15438 :: File "localeInfo.py", line 137, in f 0325 21:21:15438 :: TypeError 0325 21:21:15438 :: : 0325 21:21:15438 :: not all arguments converted during string formatting 0325 21:21:15438 :: 0325 21:23:21014 :: Traceback (most recent call last): 0325 21:23:21014 :: File "ui.py", line 1487, in OnOverInItem 0325 21:23:21014 :: File "ui.py", line 87, in __call__ 0325 21:23:21015 :: File "ui.py", line 78, in __call__ 0325 21:23:21015 :: File "uiCharacter.py", line 649, in OverInItem 0325 21:23:21015 :: File "uiToolTip.py", line 1872, in SetSkillNew 0325 21:23:21015 :: File "uiToolTip.py", line 2245, in AppendPartySkillData 0325 21:23:21015 :: ValueError 0325 21:23:21015 :: : 0325 21:23:21015 :: unsupported format character ',' (0x2c) at index 32 0325 21:23:21015 :: -
0
Transmutation system error "unknow command server"
I entered the official transmutation/change look system but get a communication error with the server. I checked quest, questlua_game, quest_function, game.py but can't figure it out. [Hidden Content] SYSERR: 0325 19:42:31105 :: Unknown Server Command ShowChangeDialog 1 | ShowChangeDialog Thanks for helping -
39
official Official Transmutation / Change Look
Help please [Hidden Content] 0325 19:42:31105 :: Unknown Server Command ShowChangeDialog 1 | ShowChangeDialog -
-
-
Recently Browsing
- No registered users viewing this page.
Question
AME 0
Hi,
I have problem in transfer pet system when add any pet dont monky in box and open box again give me monky !!!!
like : when add namyer pet in tansfer box and open it again give me monky pet @@ !!!
any help ?
this part for tansfer box in char_item.cpp
if (item->GetVnum() >= 55701 && item->GetVnum() <= 55704) {
LPITEM item2;
if (item2 = GetItem(DestCell)) {
if (item2->GetVnum() == 55002)
{
if(item2->GetAttributeValue(0) > 0){
ChatPacket(CHAT_TYPE_INFO, "Cutia are deja un animalut inauntru.");
}
else
{
if (!IsValidItemPosition(DestCell) || !(item2 = GetItem(DestCell)))
return false;
if (item2->IsExchanging())
return false;
if (GetNewPetSystem()->IsActivePet()) {
ChatPacket(CHAT_TYPE_INFO, "You have to unsummon your pet first.");
return false;
}
for (int b = 0; b < 3; b++) {
item2->SetSocket(b, item->GetSocket(b));
}
item2->SetForceAttribute(0, 1, item->GetAttributeValue(0));
item2->SetForceAttribute(1, 1, item->GetAttributeValue(1));
item2->SetForceAttribute(2, 1, item->GetVnum()-55701);
DBManager::instance().DirectQuery("UPDATE new_petsystem SET id =%d WHERE id = %d", item2->GetID(), item->GetID());
ITEM_MANAGER::instance().RemoveItem(item);
return true;
}
}
}
}
if (item->GetVnum() == 55002 && item->GetAttributeValue(0) > 0) {
int pos = GetEmptyInventory(item->GetSize());
if(pos == -1)
{
ChatPacket(CHAT_TYPE_INFO, "You don't have enought space.");
return false;
}
if (item->IsExchanging())
return false;
LPITEM item2 = AutoGiveItem(55701+item->GetSocket(2), 1);
for (int b = 0; b < 3; b++) {
item2->SetForceAttribute(b, 1, item->GetAttributeValue(b));
}
item2->SetForceAttribute(3, 1, item->GetAttributeValue(3));
item2->SetForceAttribute(4, 1, item->GetAttributeValue(4));
item2->SetSocket(1,item->GetSocket(1));
DBManager::instance().DirectQuery("UPDATE new_petsystem SET id =%d WHERE id = %d", item2->GetID(), item->GetID());
ITEM_MANAGER::instance().RemoveItem(item);
return true;
}
Link to comment
Share on other sites
Top Posters For This Question
1
Popular Days
May 11
1
Top Posters For This Question
AME 1 post
Popular Days
May 11 2016
1 post
0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now