

jeddawee
Member-
Content Count
69 -
Joined
-
Last visited
Community Reputation
24 NeutralAbout jeddawee

-
Rank
Friendly
Informations
-
Gender
Not Telling
-
Location
Netherlands
Recent Profile Visitors
961 profile views
-
Thanks , you are on fire man mysql is a way better and organized
-
jeddawee started following How To Improve Screenshot Quality, LeftRightReverse, Paid service - Vegas Projects and 6 others
-
You have them since years ago and you kept them in you pc?!! , do you know how Arabs suffer with adding any windows ?!!!! thx for releasing it anyways
-
Best dev ever!! this man knows what he is doing, Bought his systems, they are full, clean and he always helps me in anything... Highly Recommended
-
Thx man
-
Hi guys, Does anyone have any idea of how to translate lines like this or using this system... I created a function that send a packet to get the proper string from client, but it didn't work as I expected any tips could be useful .. thx in advance..
-
Thanks, very useful system
-
uitarget.py search: if not player.IsSameEmpire(self.vid): self.__HideButton(localeInfo.TARGET_BUTTON_INVITE_PARTY) self.__HideButton(localeInfo.TARGET_BUTTON_FRIEND) self.__HideButton(localeInfo.TARGET_BUTTON_FIGHT) comment this line: ##self.__HideButton(localeInfo.TARGET_BUTTON_FIGHT)
-
There is a game called Lineage 2 , it is a way bigger than Metin2 and there are many private servers using java emu , but yeah you will be limited ,
-
Thank you for the release it works perfectly hmm is there any way to make it through MySQL ( something like shop_ex and shop_item_ex ) ?? i think it would be better than .txt
-
1- 2- 3- I saved Australia :$ , next i will save the world from Global Warming
-
it is big difference to me , thank you
-
in char_skill.cpp //in: int CHARACTER::ComputeSkill(DWORD dwVnum, LPCHARACTER pkVictim, BYTE bSkillLevel) //bellow: if (IS_SET(pkSk->dwFlag, SKILL_FLAG_SELFONLY)) pkVictim = this; // #ifdef ENABLE_WOLFMAN_CHARACTER // else if (IS_SET(pkSk->dwFlag, SKILL_FLAG_PARTY)) // pkVictim = this; // #endif //1-add: if (IS_SET(pkSk->dwFlag, SKILL_FLAG_PARTY2) && !GetParty() && !pkVictim) pkVictim = this; //in bool CHARACTER::UseSkill(DWORD dwVnum, LPCHARACTER pkVictim, bool bUseGrandMaster) //below if (IS_SET(pkSk->d
-
Input K Format in Pick Money Dialog
jeddawee replied to Owsap's topic in Programming & Scripts / Systems
sorry but i meant this one , the black box -
Input K Format in Pick Money Dialog
jeddawee replied to Owsap's topic in Programming & Scripts / Systems
nice release hmm is it possible to make "pick money dialog" separated by dots ? ex: 850.000.000 i think it would be good -
Hi there well i'm trying to clean any event flag with 0 value , i did like this void CClientManager::SetEventFlag(TPacketSetEventFlag* p) { ForwardPacket(HEADER_DG_SET_EVENT_FLAG, p, sizeof(TPacketSetEventFlag)); // clear event flag if (p->lValue == 0) { typeof(m_map_lEventFlag.begin()) it = m_map_lEventFlag.find(p->szFlagName); if (it != m_map_lEventFlag.end()) { m_map_lEventFlag.erase(it); char szQuery[1024]; snprintf(szQuery, sizeof(szQuery), "DELETE FROM quest%s WHERE dwPID=0 AND szName='%s'", GetTablePostfix(), p->szFl