- 0
-
Activity
-
14
Offline Message System
Thnx for release, btw they still steal xd. -
-
1
Multiple point updates on do_stat command
oryginal code looks like fast fix for recalculate hp, when chnge ht/iq point -
7
Offline Shop - dynamic packet size
the packets are completely identical client and server side.. i dont understand -
217
WorldEditor ReMIX
Maybe a config option for this messagebox could be interesting. Other than that, a small message can be displayed right next to "Idle" on the bottom left of your screenshot.- 1
-
-
6
Public Consultation - Trusted Third Party / Middleman
It remains free. When I say win-win, I'm not talking about myself. I want to prevent a member from using metin2dev to make money without sharing things for the community.- 1
-
-
6
Public Consultation - Trusted Third Party / Middleman
OFF: This explain everything "There are no new sellers because in general they are on the forum only to sell and I'm not interested. It has to be win-win." That forum had to be FREE only if they want to buy VIP or ADS u don't have the right to charge them for their sells content. Seems no one of u read carefully what i say. didn't say anything ab a "middleman " i'm not agree with that...basically the "middleman " will have everything for FREE. What i means is a transaction between seller-buyers through a app forums where only the seller and buyer have access bcoz of "Trade r- 1
-
-
0
Party role icon position
Heya, when a party member is assigned a role, it's tiny icon will be displayed in the beginning instead of predefined position. Inside party.py replace SetAffect function with the following: def SetAffect(self, affectSlotIndex, affectValue): if affectSlotIndex >= len(self.partyAffectImageList): return if affectValue > 0: self.partyAffectImageList[affectSlotIndex].Show() else: self.partyAffectImageList[affectSlotIndex].Hide() self.affectValueDict[affectSlotIndex] = affectValue self.__ArrangeAffectPosition() Add this function to the- 2
-
-
1
Multiple point updates on do_stat command
Heya, sometimes when updating status points, a tiny delay appears and that is due updating certain points multiple times. Inside cmg_general.cpp replace the following part: ch->SetRealPoint(idx, ch->GetRealPoint(idx) + 1); ch->SetPoint(idx, ch->GetPoint(idx) + 1); ch->ComputePoints(); ch->PointChange(idx, 0); if (idx == POINT_IQ) { ch->PointChange(POINT_MAX_HP, 0); } else if (idx == POINT_HT) { ch->PointChange(POINT_MAX_SP, 0); } ch->PointChange(POINT_STAT, -1); ch->ComputePoints(); With this: ch->SetRealPoi- 3
-
-
-
-
Recently Browsing
No registered users viewing this page.
Question
skizzalb 0
Hello guys, i have 2 erros when i m compiling source
after i tried installing Target Information System, i did everything like everyone
and i get these errors, i m tired of looking how to solve them but no fix..
The errors are the next i m going to show u:
use of undeclared identifier 'typeof'; did you mean 'typeid'?
use of undeclared identifier 'v'
The file that has the error is item manager.cpp
The line is 862
// Drop Item Group
{
itertype(m_map_pkDropItemGroup) it;
it = m_map_pkDropItemGroup.find(pkChr->GetRaceNum());
if (it != m_map_pkDropItemGroup.end())
{
typeof(it->second->GetVector()) v = it->second->GetVector();
for (DWORD i = 0; i < v.size(); ++i)
{
item = CreateItem(v[i].dwVnum, v[i].iCount, 0, true);
if (item)
{
if (item->GetType() == ITEM_POLYMORPH)
{
if (item->GetVnum() == pkChr->GetPolymorphItemVnum())
{
item->SetSocket(0, pkChr->GetRaceNum());
}
}
vec_item.push_back(item);
}
}
}
}
Link to post
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.