no massive command

Results 1 to 11 of 11
  1. #1
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    wink no massive command

    Hi , i have seen qet123's [NM] room tag and tried to convert it to a command i have followed his first command tut and didnt work for me any help ?


  2. #2
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: no massive command

    bump please help me

  3. #3
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: no massive command

    Copy paste what you have done in order to help you

  4. #4
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: no massive command

    Quote Originally Posted by qet123 View Post
    Copy paste what you have done in order to help you
    What do u mean be more specific ..

  5. #5
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: no massive command

    Quote Originally Posted by Rejain View Post
    What do u mean be more specific ..
    You said you tryed to code it, copy paste me the codes

  6. #6
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: no massive command

    Quote Originally Posted by qet123 View Post
    You said you tryed to code it, copy paste me the codes
    i didnt code it i thought i can add ur coding of the [NM] using include and changing it a little btw i already erased it cuz i needed to something meanwhile i couldnt sit and w8 ... (im not a codder im starting just now ..... dont be hard on me :/)

  7. #7
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: no massive command

    Quote Originally Posted by Rejain View Post
    i didnt code it i thought i can add ur coding of the [NM] using include and changing it a little btw i already erased it cuz i needed to something meanwhile i couldnt sit and w8 ... (im not a codder im starting just now ..... dont be hard on me :/)
    show me your "changing a little bit" omg. Don't say you tryed a shit while you didn't.

  8. #8
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: no massive command

    Quote Originally Posted by qet123 View Post
    show me your "changing a little bit" omg. Don't say you tryed a shit while you didn't.
    Code:
    #include "ZMyCharacter.cpp"
    #include "ZGameAction.cpp"
    void nomassive(const char* line, const int argc, char **const argv)
    	{
    	/*ZMyCharaterStatusBitPacking & zStatus = m_statusFlags.Ref();
    	MEMBER_SET_CHECKCRC(m_timeInfo, m_fGuardStartTime, ZGetGame()->GetTime() - GUARD_DURATION); 
    	zStatus.m_bGuardCancel = true;
    	m_bCharged->Set_CheckCrc(true);
    	m_fChargedFreeTime.Set_CheckCrc( ZGetGame()->GetTime() + COUNTER_CHARGED_TIME);
    	ZPostReaction(COUNTER_CHARGED_TIME,ZR_CHARGED);
    	ZCharacter::OnMeleeGuardSuccess();*/
    	}
    	else
    	{
    	ZMyCharaterStatusBitPacking & zStatus = m_statusFlags.Ref();
    	MEMBER_SET_CHECKCRC(m_timeInfo, m_fGuardStartTime, ZGetGame()->GetTime() - GUARD_DURATION); 
    	zStatus.m_bGuardCancel = true;
    	m_bCharged->Set_CheckCrc(true);
    	m_fChargedFreeTime.Set_CheckCrc( ZGetGame()->GetTime() + COUNTER_CHARGED_TIME);
    	ZPostReaction(COUNTER_CHARGED_TIME,ZR_CHARGED);
    	ZCharacter::OnMeleeGuardSuccess();
    	}
    i really dont know how to code not even the basics ... and btw i didnt lie -.-'

    (i thought the include might help i guess i was wrong XD )

  9. #9
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: no massive command

    Quote Originally Posted by Rejain View Post
    Code:
    #include "ZMyCharacter.cpp"
    #include "ZGameAction.cpp"
    void nomassive(const char* line, const int argc, char **const argv)
    	{
    	/*ZMyCharaterStatusBitPacking & zStatus = m_statusFlags.Ref();
    	MEMBER_SET_CHECKCRC(m_timeInfo, m_fGuardStartTime, ZGetGame()->GetTime() - GUARD_DURATION); 
    	zStatus.m_bGuardCancel = true;
    	m_bCharged->Set_CheckCrc(true);
    	m_fChargedFreeTime.Set_CheckCrc( ZGetGame()->GetTime() + COUNTER_CHARGED_TIME);
    	ZPostReaction(COUNTER_CHARGED_TIME,ZR_CHARGED);
    	ZCharacter::OnMeleeGuardSuccess();*/
    	}
    	else
    	{
    	ZMyCharaterStatusBitPacking & zStatus = m_statusFlags.Ref();
    	MEMBER_SET_CHECKCRC(m_timeInfo, m_fGuardStartTime, ZGetGame()->GetTime() - GUARD_DURATION); 
    	zStatus.m_bGuardCancel = true;
    	m_bCharged->Set_CheckCrc(true);
    	m_fChargedFreeTime.Set_CheckCrc( ZGetGame()->GetTime() + COUNTER_CHARGED_TIME);
    	ZPostReaction(COUNTER_CHARGED_TIME,ZR_CHARGED);
    	ZCharacter::OnMeleeGuardSuccess();
    	}
    i really dont know how to code not even the basics ... and btw i didnt lie -.-'

    (i thought the include might help i guess i was wrong XD )
    That's very wrong

    ZChat_Cmds.cpp:
    Code:
    Line 25:
    void firstcommand(const char* line, const int argc, char **const argv);
    
    Line 161:
    _CC_AC("firstcommand",	&firstcommand,	CCF_ALL, ARGVNoMin, 1, true, "/firstcommand", "");
    
    Above:
    void ChatCmd_Help(const char* line, const int argc, char **const argv)
    
    Paste this:
    void firstcommand(const char* line, const int argc, char **const argv)
    {	
    	ZGetConfiguration()->GetEtc()->bfirstcommand = ((ZGetConfiguration()->GetEtc()->bfirstcommand == false) ? true : false);
    	if(ZGetConfiguration()->GetEtc()->bfirstcommand)
    		ZChatOutput("^2 First Command Enabled");
    	else
    		ZChatOutput("^2 First Command Disabled");
    }
    ZConfiguration.h:
    Code:
    Line 130:
    bool        bfirstcommand;
    
    Line 448:
    #define Z_ETC_FIRSTCOMMAND (ZGetConfiguration()->GetEtc()->bfirstcommand)
    ZMyCharacter.cpp
    Code:
    void ZMyCharacter::Charged()				// ±â ¸ð¾Ò´Ù
    {
    	if(ZGetConfiguration()->GetEtc()->bfirstcommand) return;
    	m_bCharged->Set_CheckCrc(true);	//mmemory proxy
    	m_fChargedFreeTime.Set_CheckCrc( ZGetGame()->GetTime() + CHARGED_TIME);
    
    	ZPostReaction(CHARGED_TIME,ZR_CHARGED);
    }

  10. #10
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: no massive command

    Quote Originally Posted by qet123 View Post
    That's very wrong

    ZChat_Cmds.cpp:
    Code:
    Line 25:
    void firstcommand(const char* line, const int argc, char **const argv);
    
    Line 161:
    _CC_AC("firstcommand",	&firstcommand,	CCF_ALL, ARGVNoMin, 1, true, "/firstcommand", "");
    
    Above:
    void ChatCmd_Help(const char* line, const int argc, char **const argv)
    
    Paste this:
    void firstcommand(const char* line, const int argc, char **const argv)
    {	
    	ZGetConfiguration()->GetEtc()->bfirstcommand = ((ZGetConfiguration()->GetEtc()->bfirstcommand == false) ? true : false);
    	if(ZGetConfiguration()->GetEtc()->bfirstcommand)
    		ZChatOutput("^2 First Command Enabled");
    	else
    		ZChatOutput("^2 First Command Disabled");
    }
    ZConfiguration.h:
    Code:
    Line 130:
    bool        bfirstcommand;
    
    Line 448:
    #define Z_ETC_FIRSTCOMMAND (ZGetConfiguration()->GetEtc()->bfirstcommand)
    ZMyCharacter.cpp
    Code:
    void ZMyCharacter::Charged()				// ±â ¸ð¾Ò´Ù
    {
    	if(ZGetConfiguration()->GetEtc()->bfirstcommand) return;
    	m_bCharged->Set_CheckCrc(true);	//mmemory proxy
    	m_fChargedFreeTime.Set_CheckCrc( ZGetGame()->GetTime() + CHARGED_TIME);
    
    	ZPostReaction(CHARGED_TIME,ZR_CHARGED);
    }
    Dude you r AWESOME !

    you should release it and make this forum more active -.-' , it will help many ppl (btw move to commands not room tags )

  11. #11
    Account Upgraded | Title Enabled! Wish Q is offline
    MemberRank
    Jul 2012 Join Date
    LiveScoreLocation
    456Posts

    Re: no massive command

    Quote Originally Posted by Rejain View Post
    Dude you r AWESOME !

    you should release it and make this forum more active -.-' , it will help many ppl (btw move to commands not room tags )
    he did and he already released it ._.



Advertisement