Show hide pgrade jjang command

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    Valued Member kryst4l is offline
    MemberRank
    Sep 2016 Join Date
    149Posts

    big grin Show hide pgrade jjang command

    I see MTG Gunz have this code, i very need this code from my Gunz, some one can help me ? ( thanks, sorry my eng bad ).
    https://streamable.com/yq6y92


  2. #2
    The forgotten memory NesuxGxx is offline
    MemberRank
    May 2014 Join Date
    ZERONISLocation
    262Posts

    Re: Show hide pgrade jjang command

    What, you don't know how to do an if with a bool?

  3. #3
    Valued Member kryst4l is offline
    MemberRank
    Sep 2016 Join Date
    149Posts

    Re: Show hide pgrade jjang command

    Sorry, i real idk

  4. #4
    Valued Member Zer0nix is online now
    MemberRank
    Aug 2020 Join Date
    109Posts

    Re: Show hide pgrade jjang command

    Hey :)
    Last edited by Zer0nix; 23-01-21 at 01:00 PM.

  5. #5
    Valued Member kryst4l is offline
    MemberRank
    Sep 2016 Join Date
    149Posts

    Re: Show hide pgrade jjang command

    What source you bought me? What scam?

  6. #6
    Valued Member Zer0nix is online now
    MemberRank
    Aug 2020 Join Date
    109Posts

    Re: Show hide pgrade jjang command


  7. #7
    Valued Member kryst4l is offline
    MemberRank
    Sep 2016 Join Date
    149Posts

    Re: Show hide pgrade jjang command

    What name your source bought from me? R u kidding me?

  8. #8
    Valued Member Zer0nix is online now
    MemberRank
    Aug 2020 Join Date
    109Posts

    Re: Show hide pgrade jjang command

    Sorry, you're not what i mention. Im talking to NesuxGxx.

  9. #9
    Victus Mortuus Kreeate is offline
    LegendRank
    Aug 2010 Join Date
    2,364Posts

    Re: Show hide pgrade jjang command

    Goto command prompt on your server, then type:

    FORMAT C: /U

    Substitute "C" with your server drive letter.

    Press Enter.

    That will solve all your problems.

  10. #10
    Orby? Orby ? @-@ Orby is offline
    MemberRank
    Oct 2015 Join Date
    AstraLocation
    277Posts

    Re: Show hide pgrade jjang command

    Quote Originally Posted by kryst4l View Post
    I see MTG Gunz have this code, i very need this code from my Gunz, some one can help me ? ( thanks, sorry my eng bad ).
    https://streamable.com/yq6y92
    You can hide it in this function.
    Code:
    class ZEffectIconLoopStar : public ZEffectIconLoop

  11. #11
    Valued Member kryst4l is offline
    MemberRank
    Sep 2016 Join Date
    149Posts

    Re: Show hide pgrade jjang command

    You can hide it in this function.
    Code:

    class ZEffectIconLoopStar : public ZEffectIconLoop
    Can you help me more line

  12. #12
    Infraction Banned jorklenis2 is offline
    MemberRank
    Oct 2011 Join Date
    PanamáLocation
    878Posts

    Re: Show hide pgrade jjang command

    Hide JJang?
    Easy.

    Code:
    void ChatCmd_HideJjang(const char* line, const int argc, char** const argv)
    {
    	char szMsg[256];
    	if (!ZGetMyInfo()->IsEventGrade())
    	{
    		//return;
    	}
    	if (ZGetGame()->m_pMyCharacter->GetStatus().Ref().isJjang == 0)
    	{
    		ZGetGame()->m_pMyCharacter->GetStatus().CheckCrc();
    		ZGetGame()->m_pMyCharacter->GetStatus().Ref().isJjang = 1;
    		ZGetGame()->m_pMyCharacter->GetStatus().MakeCrc();
    		ZGetEffectManager()->Clear();
    		ZGetSoundEngine()->PlaySound("fx_whoosh02");
    		sprintf(szMsg, "^2Hide Jjang: Off");
    	}
    	else if (ZGetGame()->m_pMyCharacter->GetStatus().Ref().isJjang == 1)
    	{
    		ZGetGame()->m_pMyCharacter->GetStatus().CheckCrc();
    		ZGetGame()->m_pMyCharacter->GetStatus().Ref().isJjang = 0;
    		ZGetGame()->m_pMyCharacter->GetStatus().MakeCrc();
    		if (ZGetGame())
    			ZGetGame()->GetJjang();
    		ZGetSoundEngine()->PlaySound("fx_whoosh02");
    		sprintf(szMsg, "^1Hide Jjang: On");
    	}
    	ZChatOutput(szMsg);
    }

  13. #13
    Orby? Orby ? @-@ Orby is offline
    MemberRank
    Oct 2015 Join Date
    AstraLocation
    277Posts

    Re: Show hide pgrade jjang command

    Quote Originally Posted by jorklenis2 View Post
    Hide JJang?
    Easy.

    Code:
    void ChatCmd_HideJjang(const char* line, const int argc, char** const argv)
    {
        char szMsg[256];
        if (!ZGetMyInfo()->IsEventGrade())
        {
            //return;
        }
        if (ZGetGame()->m_pMyCharacter->GetStatus().Ref().isJjang == 0)
        {
            ZGetGame()->m_pMyCharacter->GetStatus().CheckCrc();
            ZGetGame()->m_pMyCharacter->GetStatus().Ref().isJjang = 1;
            ZGetGame()->m_pMyCharacter->GetStatus().MakeCrc();
            ZGetEffectManager()->Clear();
            ZGetSoundEngine()->PlaySound("fx_whoosh02");
            sprintf(szMsg, "^2Hide Jjang: Off");
        }
        else if (ZGetGame()->m_pMyCharacter->GetStatus().Ref().isJjang == 1)
        {
            ZGetGame()->m_pMyCharacter->GetStatus().CheckCrc();
            ZGetGame()->m_pMyCharacter->GetStatus().Ref().isJjang = 0;
            ZGetGame()->m_pMyCharacter->GetStatus().MakeCrc();
            if (ZGetGame())
                ZGetGame()->GetJjang();
            ZGetSoundEngine()->PlaySound("fx_whoosh02");
            sprintf(szMsg, "^1Hide Jjang: On");
        }
        ZChatOutput(szMsg);
    }
    You need to save the jjang function, if not every time you enter the game you will have to keep typing the command.
    Code:
     Z_EXTRA_HIDEJJANG = ((Z_EXTRA_HIDEJJANG == false) ? true : false);
        if (Z_EXTRA_HIDEJJANG)
      ZChatOutput("JJang disabled.", ZChat::CMT_SYSTEM);
        else
      ZChatOutput("JJang activated.", ZChat::CMT_SYSTEM);
    
        //save the function.
        ZGetOptionInterface()->SaveInterfaceOption();

  14. #14
    Valued Member kryst4l is offline
    MemberRank
    Sep 2016 Join Date
    149Posts

    Re: Show hide pgrade jjang command

    @jorklenis2 @Orby
    First! very thanks your help. i need command more!
    But when i'm build i got an error.

  15. #15
    Orby? Orby ? @-@ Orby is offline
    MemberRank
    Oct 2015 Join Date
    AstraLocation
    277Posts

    Re: Show hide pgrade jjang command

    Quote Originally Posted by kryst4l View Post
    @jorklenis2 @Orby
    First! very thanks your help. i need command more!
    But when i'm build i got an error.
    do you have Discord?



Page 1 of 2 12 LastLast

Advertisement