Change login profile

If you want to change your login profile on a WarQuest Android App, please use the following instruction.

1. Start WarQuest App on your device.
2. Press the “three/bar point” icon on the lower part of the screen.
3. Now three new buttons appear on the lower part of the screen Exit, Settings, About
4. Click on the Settings button.
5. Change username
6. Change password
7. Leave setting page
8. Press again the “three point/bar” icon on the lower part of the screen.
9. Click now on the Exit button.
10. Now start WarQuest App again

WarQuest SOAP java client

Hi WarQuest player,

If you want to automate attacks, missions and/or alliance requests use the follow Java
example to interface with the WarQuest SOAP web service.

12-03-2014: Update java example. Now based on JavaCXF framework. Must cleaner java code!


package nl.warquest.client;

import nl.warquest.service.warquest.Alliance;
import nl.warquest.service.warquest.Battle;
import nl.warquest.service.warquest.Force;
import nl.warquest.service.warquest.Mission;
import nl.warquest.service.warquest.Planet;
import nl.warquest.service.warquest_wsdl.WarQuest;
import nl.warquest.service.warquest_wsdl.WarQuestPort;

public class Main {

	public static void main(String[] args) {
        		
		WarQuest warquest = new WarQuest();
		WarQuestPort port = warquest.getWarQuestPort();
				
		String username = "username";
		String password = "password";
					        
		Mission mission = port.doMission(username, password, true, false);
		System.out.println("username="+username);
		System.out.println("mission.result="+mission.isResult());
		System.out.println("mission.popup="+mission.getPopup());
						
		Battle battle = port.doBattle(username, password, Planet.EARTH, Force.AIRFORCE);
		System.out.println("username="+username);
		System.out.println("battle.result="+battle.isResult());
		System.out.println("battle.popup="+battle.getPopup());
				
		Alliance alliance = port.doAlliance(username, password);
		System.out.println("username="+username);
		System.out.println("alliance.result="+alliance.isResult());
		System.out.println("alliance.popup="+alliance.getPopup());		
	}
}

Needed MAVEM pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>nl.warquest</groupId>
  <artifactId>client</artifactId>
  <version>0.1</version>
  <name>WarQuest</name>
  <description>WarQuest client</description>
  
  <build>
    <plugins>
  		<plugin>
   			<groupId>org.apache.cxf</groupId>
    		<artifactId>cxf-codegen-plugin</artifactId>
    		<version>2.7.10</version>
    		<executions>
        		<execution>
            		<id>generate-sources</id>
            		<phase>generate-sources</phase>
            		<configuration>
                		<sourceRoot>${project.build.directory}/generated/cxf</sourceRoot>
                		<wsdlOptions>
                    		<wsdlOption>
                        		<wsdl>http://www.warquest.nl/service?wsdl</wsdl>
                    		</wsdlOption>
                		</wsdlOptions>
            		</configuration>
            		<goals>
                		<goal>wsdl2java</goal>
            		</goals>
        		</execution>
    		</executions>
		</plugin>
  	</plugins>
  </build>
</project>

WarQuest 6.6

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

11-03-2014 WarQuest v6.6
Game Server

  • Added BBC news headlines to home breaking news section
  • Added 45 mission awards.
  • Added player search to Player->Alliance->Invite page.
  • Added Forums->Clan message system.
  • Added Admin->Views page (Admin Mode only).
  • Added robot account update (Admin Mode only).
  • Improve Admin->Levels page (Admin Mode only).
  • Added doAlliance method to WarQuest WebService interface.
  • Improve doMission method of WarQuest WebService interface.
  • Disable account reset functionality.
  • Disable automatic clan (member) inactive remove.
  • Added trade, restore features to unlock schema.
  • Enable as default scheme “transparent” for new players.

Play

Click here to enter directly the game!