haus system auf core geändert
This commit is contained in:
@@ -9,7 +9,7 @@ const Point = NativeUI.Point;
|
||||
const ItemsCollection = NativeUI.ItemsCollection;
|
||||
const Color = NativeUI.Color;
|
||||
|
||||
export default function itemShopList(globalData: GlobalData) {
|
||||
export default function itemShopList(globalData: IGlobalData) {
|
||||
|
||||
|
||||
const localPlayer = mp.players.local;
|
||||
|
||||
@@ -23,7 +23,7 @@ const ItemsCollection = NativeUI.ItemsCollection;
|
||||
const Color = NativeUI.Color;
|
||||
|
||||
|
||||
export default function clotheShopList(globalData: GlobalData) {
|
||||
export default function clotheShopList(globalData: IGlobalData) {
|
||||
const categoryTitles = {
|
||||
clothes: {
|
||||
1: "Masks",
|
||||
|
||||
@@ -18,7 +18,7 @@ let cancelItem = new UIMenuItem("Abbrechen", "");
|
||||
cancelItem.BackColor = new Color(213, 0, 0);
|
||||
cancelItem.HighlightedBackColor = new Color(229, 57, 53);
|
||||
|
||||
export default function drivingSchoolList(globalData: GlobalData) {
|
||||
export default function drivingSchoolList(globalData: IGlobalData) {
|
||||
|
||||
var drivingMenu: NativeUI.Menu;
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ let cancelItem = new UIMenuItem("Abbrechen", "");
|
||||
cancelItem.BackColor = new Color(213, 0, 0);
|
||||
cancelItem.HighlightedBackColor = new Color(229, 57, 53);
|
||||
|
||||
export default function elevatorList(globalData: GlobalData) {
|
||||
export default function elevatorList(globalData: IGlobalData) {
|
||||
|
||||
var elevatorMenu: NativeUI.Menu;
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ const Point = NativeUI.Point;
|
||||
const ItemsCollection = NativeUI.ItemsCollection;
|
||||
const Color = NativeUI.Color;
|
||||
|
||||
export default function factionInteraction(globalData: GlobalData) {
|
||||
export default function factionInteraction(globalData: IGlobalData) {
|
||||
var screenRes = mp.game.graphics.getScreenResolution(0, 0);
|
||||
var player = mp.players.local;
|
||||
var tasks;
|
||||
|
||||
@@ -13,7 +13,7 @@ const Color = NativeUI.Color;
|
||||
|
||||
import { getStreetName, getZoneName } from '../streetnames';
|
||||
|
||||
export default function (globalData: GlobalData) {
|
||||
export default function (globalData: IGlobalData) {
|
||||
|
||||
var menuClose = false;
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ let eY = sY - 0.1;
|
||||
let sizeMul = 0.08;
|
||||
let yMul = 1.8;
|
||||
|
||||
export default function playerInteraction(globalData: GlobalData) {
|
||||
export default function playerInteraction(globalData: IGlobalData) {
|
||||
|
||||
var nearbyPlayers = [];
|
||||
let screenRes = mp.game.graphics.getScreenResolution(0, 0);
|
||||
|
||||
Reference in New Issue
Block a user