Bug Vote

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 54
  1. #16
    IBanMySelfOnRZ ammandes is offline
    MemberRank
    Dec 2012 Join Date
    @VesselLocation
    1,760Posts

    Re: Bug Vote

    Quote Originally Posted by dodojimbun View Post
    ooh bug vote packet? im try use it then my client closes but zone doesnt crash
    Yes its effect when fail

    Send From My Xperia Using Tapatalk 2

  2. #17
    Hezarial Developer mrians21 is offline
    MemberRank
    Jun 2012 Join Date
    Java, IndonesiaLocation
    619Posts

    Re: Bug Vote

    Quote Originally Posted by dodojimbun View Post
    ooh bug vote packet? im try use it then my client closes but zone doesnt crash
    The full packet of bug vote is 1C 00 16 00 38 04 09 *nickchar*
    But just input into the packet filter 0x1C 0x00 0x16 0x00 0x38 0x04 0x09
    If in your rf many players who wear this packet, block it

  3. #18
    IBanMySelfOnRZ ammandes is offline
    MemberRank
    Dec 2012 Join Date
    @VesselLocation
    1,760Posts

    Re: Bug Vote

    Yeah its true brother.
    Brantas bisnis.kotor untuk bug vote haha

    Send From My Xperia Using Tapatalk 2

  4. #19
    Apprentice setansange is offline
    MemberRank
    Jul 2012 Join Date
    Kota Depok, IndLocation
    8Posts

    Re: Bug Vote

    don't get me wrong block carefully packed ^_^ later there must be some things that are not in want wkwkwk

  5. #20
    Hezarial Developer mrians21 is offline
    MemberRank
    Jun 2012 Join Date
    Java, IndonesiaLocation
    619Posts

    Re: Bug Vote

    Quote Originally Posted by setansange View Post
    don't get me wrong block carefully packed ^_^ later there must be some things that are not in want wkwkwk
    Cause make player always DC?
    But
    hahaha, repair you english:p

  6. #21
    Apprentice setansange is offline
    MemberRank
    Jul 2012 Join Date
    Kota Depok, IndLocation
    8Posts

    Re: Bug Vote

    Quote Originally Posted by mrians21 View Post
    Cause make player always DC?
    But
    hahaha, repair you english:p
    haha lol saya orang kampung wkwkwk
    instead of always DC but an example block packed Crash which affects members of the guild in the guild could not kick

  7. #22
    no failure, no greget! dodojimbun is offline
    MemberRank
    Jun 2012 Join Date
    IndonesiaLocation
    511Posts

    Re: Bug Vote

    ooh, but i think it was fixed if you use trigger can vote if lvl below 1 + adding requirement of CPT /PVP

  8. #23
    Hezarial Developer mrians21 is offline
    MemberRank
    Jun 2012 Join Date
    Java, IndonesiaLocation
    619Posts

    Re: Bug Vote

    oh, i know the triger, but my zone always crash with the triger -_-

    - - - Updated - - -

    Quote Originally Posted by setansange View Post
    haha lol saya orang kampung wkwkwk
    instead of always DC but an example block packed Crash which affects members of the guild in the guild could not kick
    kampung mana?
    duh, i dnt understand -_-

  9. #24
    iam still Noob novanakal is offline
    MemberRank
    Nov 2009 Join Date
    Jaka, IndonesiaLocation
    1,164Posts

    Re: Bug Vote

    this bug vote not with trigger, like other module from fedor..

    but he put the new line for restrict min level and min CPT


    Here the codes
    Spoiler:

    Code:
    int Lvl;
    long double PvpPoint;
    long double PvpCash;
    int TotalPlayMin;
    
    void CVoteSystem::Initialize()
    {
    	Lvl=GetPrivateProfileIntA("Vote", "Lvl", 1,".\\DLL\\Config.ini");
    	PvpPoint=(long double)GetPrivateProfileIntA("Vote", "PvpPoint", 0,".\\DLL\\Config.ini");
    	PvpCash=(long double)GetPrivateProfileIntA("Vote", "PvpCash", 0,".\\DLL\\Config.ini");
    	TotalPlayMin=GetPrivateProfileIntA("Vote", "TotalPlayMin", 0,".\\DLL\\Config.ini");
    	WriteInstruction(0x14000D73D,(INT64)Voter__Doit,0,0xE9);
    }
    
    
    int __cdecl Voter___Vote(Voter *_this, CPlayer *pOne, char *pdata){
    	
    	CPlayer *pPlayer=(CPlayer *)pOne;
    	CPvpOrderView * Pvp=GetPvpOrderViewV(pPlayer);
    	char tmp1[255];
    	char tmp2[255];
    	char tmp3[255];
    	char tmp4[255];
    	itoa(pPlayer->m_Param.m_dbChar.m_byLevel,tmp1,10);
    	sprintf(tmp2, "%Lf", Pvp->m_dPvpPoint>=PvpPoint);
    	sprintf(tmp3, "%Lf", Pvp->m_dPvpPoint>=PvpCash);
    	itoa(pOne->m_pUserDB->m_AvatorData.dbAvator.m_dwTotalPlayMin>=TotalPlayMin,tmp4,10);
    	MessageBoxA(NULL,tmp2 ,tmp3,MB_OK); 
    	if(pPlayer->m_Param.m_dbChar.m_byLevel>=Lvl&&Pvp->m_dPvpPoint>=PvpPoint&&Pvp->m_dPvpCash>=PvpCash&&
    		pOne->m_pUserDB->m_AvatorData.dbAvator.m_dwTotalPlayMin>=TotalPlayMin)
    	{return 	p_Vote(_this,pOne,pdata);}
    	return 10;
    }

  10. #25
    Hezarial Developer mrians21 is offline
    MemberRank
    Jun 2012 Join Date
    Java, IndonesiaLocation
    619Posts

    Re: Bug Vote

    Quote Originally Posted by novanakal View Post
    this bug vote not with trigger, like other module from fedor..

    but he put the new line for restrict min level and min CPT


    Here the codes
    Spoiler:

    Code:
    int Lvl;
    long double PvpPoint;
    long double PvpCash;
    int TotalPlayMin;
    
    void CVoteSystem::Initialize()
    {
    	Lvl=GetPrivateProfileIntA("Vote", "Lvl", 1,".\\DLL\\Config.ini");
    	PvpPoint=(long double)GetPrivateProfileIntA("Vote", "PvpPoint", 0,".\\DLL\\Config.ini");
    	PvpCash=(long double)GetPrivateProfileIntA("Vote", "PvpCash", 0,".\\DLL\\Config.ini");
    	TotalPlayMin=GetPrivateProfileIntA("Vote", "TotalPlayMin", 0,".\\DLL\\Config.ini");
    	WriteInstruction(0x14000D73D,(INT64)Voter__Doit,0,0xE9);
    }
    
    
    int __cdecl Voter___Vote(Voter *_this, CPlayer *pOne, char *pdata){
    	
    	CPlayer *pPlayer=(CPlayer *)pOne;
    	CPvpOrderView * Pvp=GetPvpOrderViewV(pPlayer);
    	char tmp1[255];
    	char tmp2[255];
    	char tmp3[255];
    	char tmp4[255];
    	itoa(pPlayer->m_Param.m_dbChar.m_byLevel,tmp1,10);
    	sprintf(tmp2, "%Lf", Pvp->m_dPvpPoint>=PvpPoint);
    	sprintf(tmp3, "%Lf", Pvp->m_dPvpPoint>=PvpCash);
    	itoa(pOne->m_pUserDB->m_AvatorData.dbAvator.m_dwTotalPlayMin>=TotalPlayMin,tmp4,10);
    	MessageBoxA(NULL,tmp2 ,tmp3,MB_OK); 
    	if(pPlayer->m_Param.m_dbChar.m_byLevel>=Lvl&&Pvp->m_dPvpPoint>=PvpPoint&&Pvp->m_dPvpCash>=PvpCash&&
    		pOne->m_pUserDB->m_AvatorData.dbAvator.m_dwTotalPlayMin>=TotalPlayMin)
    	{return 	p_Vote(_this,pOne,pdata);}
    	return 10;
    }
    for 2232 nova?

  11. #26
    iam still Noob novanakal is offline
    MemberRank
    Nov 2009 Join Date
    Jaka, IndonesiaLocation
    1,164Posts

    Re: Bug Vote

    yes, thats the module DLL for GU Zoneserver

  12. #27
    Hezarial Developer mrians21 is offline
    MemberRank
    Jun 2012 Join Date
    Java, IndonesiaLocation
    619Posts

    Re: Bug Vote

    oh, need hook to GU zone?

  13. #28
    iam still Noob novanakal is offline
    MemberRank
    Nov 2009 Join Date
    Jaka, IndonesiaLocation
    1,164Posts

    Re: Bug Vote

    yes, but you must know,..

    that script, not a complete yet

  14. #29
    IBanMySelfOnRZ ammandes is offline
    MemberRank
    Dec 2012 Join Date
    @VesselLocation
    1,760Posts

    Re: Bug Vote

    if iam not wrong
    hook on 32bit and 64bit is different ( gtw dmn beda nya) and my friend antonyz say "wah ane kurang yakin klo hook d 64bit soalnya presentasi gagal hook nya besar" he say like that when I suces build source module from release section -_-

    when I build with name ProtectDev.dll and replace original ProtectDev.dll ( from mini extender freedev)
    succes to run zone,login in launcher but problem when enter fireguard have two error ( eror yg gw dpt)
    1.client is not latest >>> iam disable it.
    2.but when iam disable it I get error "waiting server respond"

    make me crazy.and now Iam stop that project hohoho
    need someone to teach me how to hook on 64bit :p

  15. #30
    Hezarial Developer mrians21 is offline
    MemberRank
    Jun 2012 Join Date
    Java, IndonesiaLocation
    619Posts

    Re: Bug Vote

    Quote Originally Posted by novanakal View Post
    yes, but you must know,..

    that script, not a complete yet
    oh need modified?

    - - - Updated - - -

    Quote Originally Posted by ammandes View Post
    if iam not wrong
    hook on 32bit and 64bit is different ( gtw dmn beda nya) and my friend antonyz say "wah ane kurang yakin klo hook d 64bit soalnya presentasi gagal hook nya besar" he say like that when I suces build source module from release section -_-

    when I build with name ProtectDev.dll and replace original ProtectDev.dll ( from mini extender freedev)
    succes to run zone,login in launcher but problem when enter fireguard have two error ( eror yg gw dpt)
    1.client is not latest >>> iam disable it.
    2.but when iam disable it I get error "waiting server respond"

    make me crazy.and now Iam stop that project hohoho
    need someone to teach me how to hook on 64bit :p
    yes, i dont understand hook dll in my zone (2232)
    im using StudPe
    when i open it...... error -_-



Page 2 of 4 FirstFirst 1234 LastLast

Advertisement