[Tutorial] Fix Marketplace Tab7

Page 2 of 2 FirstFirst 12
Results 16 to 26 of 26
  1. #16
    Apprentice kitsada is offline
    MemberRank
    Sep 2014 Join Date
    16Posts

    Re: [Tutorial] Fix Marketplace Tab7

    file Name ?
    Where is solved

    var[0].SetNumber(0);
    var[1].SetString("weapon");
    var[2].SetBoolean(false);
    var[3].SetBoolean(true);
    gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    Last edited by kitsada; 19-11-14 at 09:53 AM.

  2. #17
    Yuri-BR#1559 Yuri-BR is offline
    DeveloperRank
    Apr 2013 Join Date
    ☣️❤️Location
    1,040Posts

    Re: [Tutorial] Fix Marketplace Tab7

    Quote Originally Posted by kitsada View Post
    Filename? That must be resolved name?

    c:\WarZTHSrc2 \ ??
    sorry I do not understand you :(

  3. #18
    Member seregaa34rus is offline
    MemberRank
    Oct 2014 Join Date
    62Posts

    Re: [Tutorial] Fix Marketplace Tab7

    Quote Originally Posted by Yuri-BR View Post
    sorry I do not understand you :(
    where to find. writes

  4. #19
    Novice TheOnlyTrueMCT is offline
    MemberRank
    Dec 2013 Join Date
    SwitzerlandLocation
    2Posts

    Re: [Tutorial] Fix Marketplace Tab7

    Hello Guys.
    I have a problem close to this.
    In the Marketplace are the weapons and ammo in the same slot and the "Ammo Slot" is not listed up in the Marketplace.
    I was looking for the Slot but i found nothing.
    Sorry for my bad english but i hope you understand me :)

    Thanks for help :)

  5. #20
    Apprentice nakashimakun is offline
    MemberRank
    Nov 2013 Join Date
    23Posts

    Re: [Tutorial] Fix Marketplace Tab7

    Quote Originally Posted by TheOnlyTrueMCT View Post
    Hello Guys.
    I have a problem close to this.
    In the Marketplace are the weapons and ammo in the same slot and the "Ammo Slot" is not listed up in the Marketplace.
    I was looking for the Slot but i found nothing.
    Sorry for my bad english but i hope you understand me :)

    Thanks for help :)
    Your looking for this

    http://forum.ragezone.com/f791/tutor...-ammo-1012937/

  6. #21
    Apprentice CowZ is offline
    MemberRank
    Dec 2014 Join Date
    7Posts

    Re: [Tutorial] Fix Marketplace Tab7

    for me the code does not appear can help me?

  7. #22
    Valued Member francovegini is offline
    MemberRank
    Apr 2014 Join Date
    BrazilLocation
    135Posts

    Re: [Tutorial] Fix Marketplace Tab7

    I can't find

    Spoiler:

    gfxMovie.SetVariable("_root.api.Main.Marketplace.MarketplaceTab7.visible", true);


    My gun flap is already enabled.
    I am using education.

  8. #23
    Yuri-BR#1559 Yuri-BR is offline
    DeveloperRank
    Apr 2013 Join Date
    ☣️❤️Location
    1,040Posts

    Re: [Tutorial] Fix Marketplace Tab7

    Quote Originally Posted by francovegini View Post
    I can't find

    Spoiler:

    gfxMovie.SetVariable("_root.api.Main.Marketplace.MarketplaceTab7.visible", true);


    My gun flap is already enabled.
    I am using education.
    this is tested only in src warzth v2

  9. #24
    Valued Member francovegini is offline
    MemberRank
    Apr 2014 Join Date
    BrazilLocation
    135Posts

    Re: [Tutorial] Fix Marketplace Tab7

    Quote Originally Posted by Yuri-BR View Post
    this is tested only in src warzth v2
    How I can activate in education ?

    Portugues:

    Como eu posso ativar na education ?

  10. #25
    Member iononline is offline
    MemberRank
    Apr 2012 Join Date
    HeavenLocation
    93Posts

    Re: [Tutorial] Fix Marketplace Tab7

    Quote Originally Posted by francovegini View Post
    How I can activate in education ?

    Portugues:

    Como eu posso ativar na education ?
    Work more.
    DOT mising MarketplaceTab7 >> Marketplace.Tab7
    Code:
    void FrontendWarZ::eventMarketplaceActive(r3dScaleformMovie* pMovie, const Scaleform::GFx::Value* args, unsigned argCount)
    {
      //gfxMovie.SetVariable("_root.api.Main.Marketplace.MarketplaceTab7.visible", true);
    	gfxMovie.SetVariable("_root.api.Main.Marketplace.Marketplace.Tab7.visible", true);
    	gfxMovie.SetVariable("_root.api.Main.Marketplace.Marketplace.Tutorial.visible", true);
    }
    Code:
    void UIItemInventory::addTabTypes()
    {
    	Scaleform::GFx::Value var[8];
    	var[2].SetNumber(0);
    	var[3].SetNumber(0);
    	var[4].SetNumber(0);
    	var[5].SetNumber(0);
    	var[6].SetNumber(0);
    	var[7].SetBoolean(true); // visible in store
    
    	// store & inventory tabs
    	var[0].SetNumber(0);
    	var[1].SetString("weapon");
    	var[2].SetBoolean(true);
    	var[3].SetBoolean(true);
    	gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    
    	var[0].SetNumber(1);
    	var[1].SetString("ammo");
    	var[2].SetBoolean(true);
    	var[3].SetBoolean(true);
    	gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    
    	var[0].SetNumber(2);
    	var[1].SetString("explosives");
    	var[2].SetBoolean(true);
    	var[3].SetBoolean(true);
    	gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    
    	var[0].SetNumber(3);
    	var[1].SetString("gear");
    	var[2].SetBoolean(true);
    	var[3].SetBoolean(true);
    	gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    
    	var[0].SetNumber(4);
    	var[1].SetString("food");
    	var[2].SetBoolean(true);
    	var[3].SetBoolean(true);
    	gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    
    	var[0].SetNumber(5);
    	var[1].SetString("survival");
    	var[2].SetBoolean(true);
    	var[3].SetBoolean(true);
    	gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    
    	var[0].SetNumber(6);
    	var[1].SetString("equipment");
    	var[2].SetBoolean(true);
    	var[3].SetBoolean(true);
    	gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    
    	var[0].SetNumber(7);
    	var[1].SetString("account");
    	var[2].SetBoolean(true);
    	var[3].SetBoolean(true);
    	gfxMovie_->Invoke("_root.api.addTabType", var, 4);
    }

  11. #26
    Apprentice Lead By Example is offline
    MemberRank
    Jan 2015 Join Date
    DenmarkLocation
    8Posts

    Re: [Tutorial] Fix Marketplace Tab7

    This sure is going to be helpful for people running their servers, great release !



Page 2 of 2 FirstFirst 12

Advertisement