

Raeghel
Member-
Content Count
11 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout Raeghel

-
Rank
Neutral
Informations
-
Gender
Male
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Can you please answer on skype? I sent you a message 15 days ago! I just want to buy your source.
- 467 replies
-
- martysama0134
- 2nd anniversary
-
(and 3 more)
Tagged with:
-
Sorry guys i have this problem. Can you help me? In file included from NetBase.cpp:4: ClientManager.h:337: error: expected ',' or '...' before '*' token ClientManager.h:337: error: ISO C++ forbids declaration of 'TPacketGDCombatZoneResetRanking' with no type ClientManager.h:338: error: expected ',' or '...' before '*' token ClientManager.h:338: error: ISO C++ forbids declaration of 'TPacketGDCombatZoneSkillsCache' with no type This is my header file: void CCombatZoneManager::OnResetRanking() { TPacketGDCombatZoneResetRanking p; p.bType = COMBAT_ZONE_SUB_HEADER_NONE; db_clientdesc
-
Problem still remain. Someone else can give me some hints?
-
Can i use this function in char_item.cpp?
-
Hi guys, i need your help. I have create a new effect on item but when i "unequip" this item, effect remain and i want to clear this effect. I put this on my char_item.ccp else if (true == CItemVnumHelper::IsZodiacRune(dwVnum)) { this->EffectPacket(SE_EFFECT_RUNE); } and i try to do like this bool CHARACTER::UnequipItem(LPITEM item) { .... if (item->GetVnum() == 49000) { this->EffectPacket(SE_NONE); } what i need to put in this function to clear effect? Sorry for bad english and thanks for help.