summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-06-10 20:49:11 +0300
committerAndrei Karas <akaras@inbox.ru>2011-06-10 20:49:11 +0300
commitf7ad40eea337920240ba73a1a11feba6b4761ca3 (patch)
tree48839257e23e11cac9e413aff0629baad604ca31
parent0ed6f6cd758b47e4c8cd9689ec3c218de34f80c6 (diff)
downloadplus-f7ad40eea337920240ba73a1a11feba6b4761ca3.tar.gz
plus-f7ad40eea337920240ba73a1a11feba6b4761ca3.tar.bz2
plus-f7ad40eea337920240ba73a1a11feba6b4761ca3.tar.xz
plus-f7ad40eea337920240ba73a1a11feba6b4761ca3.zip
Add more "did you know?" texts.
-rw-r--r--data/help/tips/10.txt2
-rw-r--r--data/help/tips/11.txt2
-rw-r--r--data/help/tips/12.txt3
-rw-r--r--data/help/tips/13.txt2
-rw-r--r--data/help/tips/14.txt1
-rw-r--r--data/help/tips/9.txt3
-rw-r--r--data/help/tips/CMakeLists.txt7
-rw-r--r--data/help/tips/Makefile.am9
-rw-r--r--src/gui/didyouknowwindow.cpp2
9 files changed, 29 insertions, 2 deletions
diff --git a/data/help/tips/10.txt b/data/help/tips/10.txt
new file mode 100644
index 000000000..0094dfab6
--- /dev/null
+++ b/data/help/tips/10.txt
@@ -0,0 +1,2 @@
+If client working very slow, you can improve speed
+by reading this: http://manaplus.evolonline.org/slowpc
diff --git a/data/help/tips/11.txt b/data/help/tips/11.txt
new file mode 100644
index 000000000..10bb41b33
--- /dev/null
+++ b/data/help/tips/11.txt
@@ -0,0 +1,2 @@
+You can imitate other players by selecting "imitation" in player context menu
+ or type chat command: /imitate playername.
diff --git a/data/help/tips/12.txt b/data/help/tips/12.txt
new file mode 100644
index 000000000..418d01306
--- /dev/null
+++ b/data/help/tips/12.txt
@@ -0,0 +1,3 @@
+You can walk to warps automatically.
+Open Social Window (f11) and selecy Nav tab,
+then click or warp what you want.
diff --git a/data/help/tips/13.txt b/data/help/tips/13.txt
new file mode 100644
index 000000000..da68593f6
--- /dev/null
+++ b/data/help/tips/13.txt
@@ -0,0 +1,2 @@
+You can use mumble voice chat for talking with other players.
+Start mumble before client start and enable mumber in settings.
diff --git a/data/help/tips/14.txt b/data/help/tips/14.txt
new file mode 100644
index 000000000..df9026e8c
--- /dev/null
+++ b/data/help/tips/14.txt
@@ -0,0 +1 @@
+You can change any key in keyboard settings.
diff --git a/data/help/tips/9.txt b/data/help/tips/9.txt
new file mode 100644
index 000000000..937742a3e
--- /dev/null
+++ b/data/help/tips/9.txt
@@ -0,0 +1,3 @@
+You can set any client resolution. In settings in video tab,
+click on "custom" and enter for example: 900x500 and press ok.
+
diff --git a/data/help/tips/CMakeLists.txt b/data/help/tips/CMakeLists.txt
index 0fb66d6b4..dcbfcdf7e 100644
--- a/data/help/tips/CMakeLists.txt
+++ b/data/help/tips/CMakeLists.txt
@@ -8,6 +8,13 @@ SET(FILES
5.txt
6.txt
7.txt
+ 8.txt
+ 9.txt
+ 10.txt
+ 11.txt
+ 12.txt
+ 13.txt
+ 14.txt
)
INSTALL(FILES ${FILES} DESTINATION ${DATA_DIR}/help/tips)
diff --git a/data/help/tips/Makefile.am b/data/help/tips/Makefile.am
index 626577881..2972ef839 100644
--- a/data/help/tips/Makefile.am
+++ b/data/help/tips/Makefile.am
@@ -10,7 +10,14 @@ helptips_DATA = \
4.txt \
5.txt \
6.txt \
- 7.txt
+ 7.txt \
+ 8.txt \
+ 9.txt \
+ 10.txt \
+ 11.txt \
+ 12.txt \
+ 13.txt \
+ 14.txt
EXTRA_DIST = \
$(helptips_DATA) \
diff --git a/src/gui/didyouknowwindow.cpp b/src/gui/didyouknowwindow.cpp
index 5d8142be8..447acfe01 100644
--- a/src/gui/didyouknowwindow.cpp
+++ b/src/gui/didyouknowwindow.cpp
@@ -41,7 +41,7 @@
#include "debug.h"
static const int minTip = 1;
-static const int maxTip = 8;
+static const int maxTip = 14;
DidYouKnowWindow::DidYouKnowWindow():
Window(_("Did You Know?"))