Skip to content

Commit 0ae726c

Browse files
author
ronny
committed
- Aufraeumarbeiten
- Datenbank-Export enthaelt nur eigene Daten und Fakedaten - Anzeigefehler bei Werbevertraegen behoben git-svn-id: svn://gwron.kicks-ass.net/TVTower@213 c8c01e27-c2b2-4c14-9fc5-b7b90e2c6539
1 parent 884be60 commit 0ae726c

File tree

9 files changed

+942
-4380
lines changed

9 files changed

+942
-4380
lines changed

trunk/TVTower

-96 Bytes
Binary file not shown.

trunk/TVTower.bmx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ REM
3131
- OpenGL ... - WindowDeco nicht stylebar
3232
* Live-Events:
3333
- Fussball, Formel1, Konzerte, ... fehlen noch
34-
* Quiz/Call-In
35-
- Werbung: Werbebloecke die prozentual von der Zuschauerzahl
36-
Einkuenfte erzielen
3734
* Eigenproduktionen:
3835
- Filme - die auch bspweise in den Wiederverkauf
3936
gelangen koennen. Hier sollte evtl der "Kino"-Wert

trunk/grafiken/buero/BueroPack.ini

Lines changed: 0 additions & 40 deletions
This file was deleted.

trunk/grafiken/buero/filmmenu.txt

Lines changed: 0 additions & 28 deletions
This file was deleted.

trunk/grafiken/buero/raum_buero.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

trunk/res/database.xml

Lines changed: 937 additions & 4300 deletions
Large diffs are not rendered by default.

trunk/source/gamefunctions_tvprogramme.bmx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ Type TContract Extends TProgrammeElementBase {_exposeToLua="selected"}
840840
font.drawBlock(getLocale("AD_PROFIT")+": " , x+10 , y+94 , 130, 16)
841841
font.drawBlock(functions.convertValue(String( self.getProfit() ), 2, 0)+" "+CURRENCYSIGN , x+10 , y+94 , 130, 16,2)
842842
font.drawBlock(getLocale("AD_TOSEND")+": " , x+150, y+94 , 127, 16)
843-
font.DrawBlock(self.GetSpotsToSend()+"/"+self.GetSpotCount() , x+150, y+91 , 127, 16,2)
843+
font.DrawBlock(self.GetSpotsToSend()+"/"+self.GetSpotCount() , x+150, y+94 , 127, 16,2)
844844

845845
font.drawBlock(getLocale("AD_PENALTY")+": " , x+10 , y+117, 130, 16)
846846
font.drawBlock(functions.convertValue(String( self.GetPenalty() ), 2, 0)+" "+CURRENCYSIGN, x+10 , y+117, 130, 16,2)
@@ -1042,6 +1042,7 @@ Type TProgramme Extends TProgrammeElement {_exposeToLua="selected"} 'parent o
10421042
If actors = "" Then obj.actors = Self.actors Else obj.actors = actors
10431043
If director = "" Then obj.director = Self.director Else obj.director = director
10441044
If country = "" Then obj.country = Self.country Else obj.country = country
1045+
If description = "" Then obj.description = Self.description Else obj.description = description
10451046

10461047
obj.topicality = obj.ComputeTopicality()
10471048
obj.maxtopicality = obj.topicality

trunk/source/main.bmx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2021,12 +2021,12 @@ PrintDebug ("Base", "creating GUIelements", DEBUG_START)
20212021
Global MainMenuButton_Start:TGUIButton = new TGUIButton.Create(TPoint.Create(600, 300), 120, 0, 1, 1, GetLocale("MENU_SOLO_GAME"), "MainMenu", Assets.fonts.baseFontBold)
20222022
Global MainMenuButton_Network:TGUIButton = new TGUIButton.Create(TPoint.Create(600, 348), 120, 0, 1, 1, GetLocale("MENU_NETWORKGAME"), "MainMenu", Assets.fonts.baseFontBold)
20232023
Global MainMenuButton_Online:TGUIButton = new TGUIButton.Create(TPoint.Create(600, 396), 120, 0, 1, 1, GetLocale("MENU_ONLINEGAME"), "MainMenu", Assets.fonts.baseFontBold)
2024-
2024+
rem
20252025
Global Test:TGUIDropDown = new TGUIDropDown.Create(20,20,150,1,1,"test","MainMenu", Assets.GetFont("Default", 11, BOLDFONT))
20262026
Test.AddEntry("test2")
20272027
Test.AddEntry("test3")
20282028
Test.AddEntry("test4")
2029-
2029+
endrem
20302030
Global NetgameLobbyButton_Join:TGUIButton = new TGUIButton.Create(TPoint.Create(600, 300), 120, 0, 1, 1, GetLocale("MENU_JOIN"), "NetGameLobby", Assets.fonts.baseFontBold)
20312031
Global NetgameLobbyButton_Create:TGUIButton = new TGUIButton.Create(TPoint.Create(600, 345), 120, 0, 1, 1, GetLocale("MENU_CREATE_GAME"), "NetGameLobby", Assets.fonts.baseFontBold)
20322032
Global NetgameLobbyButton_Back:TGUIButton = new TGUIButton.Create(TPoint.Create(600, 390), 120, 0, 1, 1, GetLocale("MENU_BACK"), "NetGameLobby", Assets.fonts.baseFontBold)

trunk/source/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30.05.13 15:03
1+
30.05.13 18:18

0 commit comments

Comments
 (0)