WarQuest 6.5

WarQuest v6.5 is released with the following changes and bug fixes:

27-02-2014 WarQuest v6.5
Game Server v6.5

  • Clan Wars improvements:
    • Added clan missions. See Missions->Clan.
    • Added clan statistics to Alliance->Clan->Clan Profile
    • Added hyperlink from Home->Profile->Clan to Clan Profile.
    • Added Players->Leaderboard->Best-Clans.
    • Max. allowed daily deposit to clan bank is 10x hourly income.
  • GUI improvements:
    • Refactor HTML to support new CCS3 themes.
    • Added “transparent” theme (Home->Settings->Theme)
    • Added more color to all themes.
    • Removed not used themes.
    • Redesign main menu and login page.
    • Improve bank transaction log.
    • Update Help->Instructions text.
    • Added Home->Profile->Total hourly income page.
    • Added Home->Profile->Citizens cost page.
    • Added hyperlinks from Home->Profile->Assest to Bank pages
  • Other improvements:
    • Added two extra mars discount buildings.
    • Leaderboard position is now only based on expercience.
    • Limit maximum amount of promotion email invites.
    • Improve email address validation.

Play

Click here to enter directly the game!

WarQuest Windows App 1.6

Plaatsoft has released version 1.6 of the WarQuest for Windows. This release contain the following changes:

23-02-2014 Version 1.6
– Added text copy & past support.
– Added CCS3 support.
– Added HTML5 sound support.
– Use QT library 5.2.1 for Windows as engine.
– The app was build with QtCreator v3.0.1
– Released app on www.plaatsoft.nl

Download

Click here for detail WarQuest information and download links.

WarQuest 6.4

WarQuest v6.4 is released with the following changes and bug fixes:

17-02-2014 WarQuest v6.4
Game Server

  • Update premium gold features:
    • Added premium membership feature to Home->Trade page
    • Premium membership has the following benefits:
      • Double experience during battles and missions.
      • Triple money during battles and missions.
  • Clan Wars improvements:
    • Added clan bank transaction log.
    • Added clan bank depostit fee.
    • Added clan bank daily service charge.
  • Added basic SOAP web service interface
    • URL is http://www.warquest.nl/service?wsdl
    • Added getPlayer methode
    • Added getClan methode
    • Added getPlanet methode
    • Added doBattle methode
    • Added doMission methode
  • Enable HTTPS in Apache (based on selfsigned certificate).
  • Refactor HTML output handeling.
  • Bank accounts >100 trillion dollar do NOT receive interest anymore.
  • Added extra support text to donate page.
  • Bug fix: Mission planet image was sometimes incorrect rendered.

Play

Click here to enter directly the game!

Ubuntu 10.x with Java7

How to install Java on Ubuntu 10.x

Download he 32bit or 64bit Linux “compressed binary file” – it has a “.tar.gz” file extension i.e. “[java-version]-i586.tar.gz” for 32bit and “[java-version]-x64.tar.gz” for 64bit

Uncompress it
# tar -xvf jdk-7u2-linux-i586.tar.gz (32bit)
# tar -xvf jdk-7u2-linux-x64.tar.gz (64bit)

JDK 7 package is extracted into ./jdk1.7.0_02 directory. N.B. check carefully this folder name since Oracle seem to change this occasionally with each update.

Now move the JDK 7 directory to /usr/lib

# sudo mkdir -p /usr/lib/jvm
# sudo mv ./jdk1.7.0_02 /usr/lib/jvm/jdk1.7.0

Now run

# sudo update-alternatives –install “/usr/bin/java” “java” “/usr/lib/jvm/jdk1.7.0/bin/java” 1
# sudo update-alternatives –install “/usr/bin/javac” “javac” “/usr/lib/jvm/jdk1.7.0/bin/javac” 1
# sudo update-alternatives –install “/usr/bin/javaws” “javaws” “/usr/lib/jvm/jdk1.7.0/bin/javaws” 1

This will assign Oracle JDK a priority of 1, which means that installing other JDKs will replace it as the default. Be sure to use a higher priority if you want Oracle JDK to remain the default. Correct the file ownership and the permissions of the executables:

# sudo chmod a+x /usr/bin/java
# sudo chmod a+x /usr/bin/javac
# sudo chmod a+x /usr/bin/javaws
# sudo chown -R root:root /usr/lib/jvm/jdk1.7.0

Check the version of you new JDK 7 installation:

# java -version

java version “1.7.0”
Java(TM) SE Runtime Environment (build 1.7.0-b147)
Java HotSpot(TM) Client VM (build 21.0-b17, mixed mode)