Advertisement
Ragnifer

Untitled

Jan 27th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. var _loc5 = this.api.ui.createPopupMenu();
  2. if(!this.api.datacenter.Game.isFight) {
  3. _loc5.addItem(this.api.lang.getText("SHOW") + " >>", this, this.showGaugeModeSelectMenu);
  4. }
  5. if (this._sCurrentCircleXtra == "helper")
  6. {
  7. _loc5.addStaticItem(this.api.lang.getText("HELP_ME"));
  8. _loc5.addItem(this.api.lang.getText("KB_TITLE"),this.api.ui,this.api.ui.loadUIComponent,["KnownledgeBase", "KnownledgeBase"],true);
  9. _loc5.addStaticItem(this.api.lang.getText("OTHER_DISPLAY_OPTIONS"));
  10. }
  11. _loc5.addItem(this.api.lang.getText("BANNER_ARTWORK"), this, this.showCircleXtra, ["artwork", true, {bMask: true}], this._sCurrentCircleXtra != "artwork");
  12. _loc5.addItem(this.api.lang.getText("BANNER_CLOCK"), this, this.showCircleXtra, ["clock", true, {bMask: true}], this._sCurrentCircleXtra != "clock");
  13. _loc5.addItem(this.api.lang.getText("BANNER_COMPASS"), this, this.showCircleXtra, ["compass", true], this._sCurrentCircleXtra != "compass");
  14. _loc5.addItem(this.api.lang.getText("BANNER_HELPER"), this, this.showCircleXtra, ["helper", true], this._sCurrentCircleXtra != "helper");
  15. _loc5.addItem(this.api.lang.getText("BANNER_MAP"), this, this.showCircleXtra, ["map", true, this.api.kernel.OptionsManager.getOption("BannerGaugeMode") != "none" ? {bMask: true} : {bMask: true, sMaskSize:"big"}], this._sCurrentCircleXtra != "map");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement