-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added ProfileMenu Logout, added checks and commands for minimap. Impl…
- Loading branch information
1 parent
09371ef
commit dceeec2
Showing
10 changed files
with
25,560 additions
and
25,360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@DialogActionClass | ||
class HideMinimap extends ActionClass | ||
{ | ||
public Display(id: number, values: string[], updateFunction?: string): string | ||
{ | ||
var html = ""; | ||
return html; | ||
} | ||
|
||
public Execute(values: string[], env?: CodeEnvironement): void | ||
{ | ||
play.showMinimap = false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@DialogActionClass | ||
class ShowMinimap extends ActionClass | ||
{ | ||
public Display(id: number, values: string[], updateFunction?: string): string | ||
{ | ||
var html = ""; | ||
return html; | ||
} | ||
|
||
public Execute(values: string[], env?: CodeEnvironement): void | ||
{ | ||
play.showMinimap = true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/// <reference path="../Dialogs/DialogCondition.ts" /> | ||
|
||
@DialogConditionClass | ||
class CheckMinimapIsHidden extends ConditionClass | ||
{ | ||
public Display(id: number, values: string[], updateFunction?: string): string | ||
{ | ||
var html = ""; | ||
return html; | ||
} | ||
|
||
public Check(values: string[], env?: CodeEnvironement): boolean | ||
{ | ||
return !play.showMinimap; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/// <reference path="../Dialogs/DialogCondition.ts" /> | ||
|
||
@DialogConditionClass | ||
class CheckMinimapIsVisible extends ConditionClass | ||
{ | ||
public Display(id: number, values: string[], updateFunction?: string): string | ||
{ | ||
var html = ""; | ||
return html; | ||
} | ||
|
||
public Check(values: string[], env?: CodeEnvironement): boolean | ||
{ | ||
return play.showMinimap; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
var engineVersion = "1.2.1288"; | ||
var engineBuild = "Mon, 16 Oct 2017 08:51:00 GMT"; | ||
var engineVersion = "1.2.1311"; | ||
var engineBuild = "Wed, 08 Nov 2017 13:56:56 GMT"; |
Oops, something went wrong.