summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-06-07 23:12:08 +0300
committerAndrei Karas <akaras@inbox.ru>2011-06-09 18:54:45 +0300
commit352409f22230698bc32661b916f708663a4179b5 (patch)
treeae61ad48814a076ae5f32137c297fc1b3198ab7c /data
parent59ce7917ffb4e6b89593a54fed590d439585ae5f (diff)
downloadplus-352409f22230698bc32661b916f708663a4179b5.tar.gz
plus-352409f22230698bc32661b916f708663a4179b5.tar.bz2
plus-352409f22230698bc32661b916f708663a4179b5.tar.xz
plus-352409f22230698bc32661b916f708663a4179b5.zip
Add "did you know?" dialog and some messages for it.
Fix browserbox images position and size.
Diffstat (limited to 'data')
-rw-r--r--data/help/CMakeLists.txt1
-rw-r--r--data/help/Makefile.am2
-rw-r--r--data/help/tips/1-1.jpgbin0 -> 42139 bytes
-rw-r--r--data/help/tips/1-2.jpgbin0 -> 26274 bytes
-rw-r--r--data/help/tips/1.txt3
-rw-r--r--data/help/tips/2.txt2
-rw-r--r--data/help/tips/3.txt2
-rw-r--r--data/help/tips/4.txt2
-rw-r--r--data/help/tips/5.txt2
-rw-r--r--data/help/tips/6.txt2
-rw-r--r--data/help/tips/CMakeLists.txt12
-rw-r--r--data/help/tips/Makefile.am16
12 files changed, 43 insertions, 1 deletions
diff --git a/data/help/CMakeLists.txt b/data/help/CMakeLists.txt
index 1f5722110..c2ed62d3a 100644
--- a/data/help/CMakeLists.txt
+++ b/data/help/CMakeLists.txt
@@ -14,5 +14,6 @@ SET(FILES
ADD_SUBDIRECTORY(es)
ADD_SUBDIRECTORY(fr)
ADD_SUBDIRECTORY(ru)
+ADD_SUBDIRECTORY(tips)
INSTALL(FILES ${FILES} DESTINATION ${DATA_DIR}/help)
diff --git a/data/help/Makefile.am b/data/help/Makefile.am
index 1e672b168..6b3205929 100644
--- a/data/help/Makefile.am
+++ b/data/help/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = es fr ru
+SUBDIRS = es fr ru tips
helpdir = $(pkgdatadir)/data/help
diff --git a/data/help/tips/1-1.jpg b/data/help/tips/1-1.jpg
new file mode 100644
index 000000000..855e72315
--- /dev/null
+++ b/data/help/tips/1-1.jpg
Binary files differ
diff --git a/data/help/tips/1-2.jpg b/data/help/tips/1-2.jpg
new file mode 100644
index 000000000..3028e6ce6
--- /dev/null
+++ b/data/help/tips/1-2.jpg
Binary files differ
diff --git a/data/help/tips/1.txt b/data/help/tips/1.txt
new file mode 100644
index 000000000..d76d94492
--- /dev/null
+++ b/data/help/tips/1.txt
@@ -0,0 +1,3 @@
+You can hide/show bars and buttons by right click and select menu item.
+~~~help/tips/1-1.jpg~
+~~~help/tips/1-2.jpg~
diff --git a/data/help/tips/2.txt b/data/help/tips/2.txt
new file mode 100644
index 000000000..231864b73
--- /dev/null
+++ b/data/help/tips/2.txt
@@ -0,0 +1,2 @@
+You can buy or sell items from players shops.
+Right click on player and select "Buy" or "Sell"
diff --git a/data/help/tips/3.txt b/data/help/tips/3.txt
new file mode 100644
index 000000000..2f154124d
--- /dev/null
+++ b/data/help/tips/3.txt
@@ -0,0 +1,2 @@
+You can disable yellow bar,
+by pressing key 8 on numeric keyboard.
diff --git a/data/help/tips/4.txt b/data/help/tips/4.txt
new file mode 100644
index 000000000..05d2c40a9
--- /dev/null
+++ b/data/help/tips/4.txt
@@ -0,0 +1,2 @@
+You can restore yellow bar settings,
+by right click on it and select in context menu "Reset yellow bar".
diff --git a/data/help/tips/5.txt b/data/help/tips/5.txt
new file mode 100644
index 000000000..9cc26c905
--- /dev/null
+++ b/data/help/tips/5.txt
@@ -0,0 +1,2 @@
+You can copy value from any bar,
+by right click on it and select in context menu "Copy to chat".
diff --git a/data/help/tips/6.txt b/data/help/tips/6.txt
new file mode 100644
index 000000000..6178d6971
--- /dev/null
+++ b/data/help/tips/6.txt
@@ -0,0 +1,2 @@
+You can set away mode,
+by type in chat command /away
diff --git a/data/help/tips/CMakeLists.txt b/data/help/tips/CMakeLists.txt
new file mode 100644
index 000000000..b0b1b7947
--- /dev/null
+++ b/data/help/tips/CMakeLists.txt
@@ -0,0 +1,12 @@
+SET(FILES
+ 1.txt
+ 1-1.jpg
+ 1-2.jpg
+ 2.txt
+ 3.txt
+ 4.txt
+ 5.txt
+ 6.txt
+ )
+
+INSTALL(FILES ${FILES} DESTINATION ${DATA_DIR}/help/tips)
diff --git a/data/help/tips/Makefile.am b/data/help/tips/Makefile.am
new file mode 100644
index 000000000..1c7e6550e
--- /dev/null
+++ b/data/help/tips/Makefile.am
@@ -0,0 +1,16 @@
+
+helptipsdir = $(pkgdatadir)/data/help/tips
+
+helptips_DATA = \
+ 1.txt \
+ 1-1.jpg \
+ 1-2.jpg \
+ 2.txt \
+ 3.txt \
+ 4.txt \
+ 5.txt \
+ 6.txt
+
+EXTRA_DIST = \
+ $(helptips_DATA) \
+ CMakeLists.txt