Wartune - Discussion Thread menu

User Tag List

Results 1 to 8 of 8
  1. #1
    Veritable's Avatar OwnedCore News Correspondent
    Reputation
    326
    Join Date
    Apr 2007
    Posts
    369
    Thanks G/R
    52/123
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Wartune - Discussion Thread

    So I found this game on my Chrome Google web store, and I though... meh why not, might as well give it a shot. I am not going to talk about the gameplay itself, but rather focus on what most people look for in the General forums here. :P

    I never really liked these games, just because of the pay to win kind of attitude they have. Trying to lure kids into the game with scantily clad women and buff men with evil armor, it tends to make a cesspool of 9 year old kids with tantrums. (just my opinion from my own experiences in the past).

    So I get the game, login and try to figure out how the game operates. It seems pretty basic, yet I could not find any kind of detection software in the game. It doesn't load any applets or anything suspicious, so I thought I would stress it to see how it coped with a bot.

    My Findings

    If they have a detection algorithm, it is done by log scans. (We'll find out how sensitive since I basically macro'd my farm almost to level 10 in one night).

    Similar to a lot of online games, they have an energy based system. Doing major actions in the game use this resource (Stamina in this case), at 20 per attempt. This is things done in the Campaign modes (dungeons).

    They also have a separate one in the Wilds area, where you can fight anything you want that is a creature standing around just like normal and get something for it, but if you siege a player castle, you can only do 5 per day.

    Dueling solo is yet another currency, where you have 20 duels per day, and you can fight a random character that is controlled by the AI of the game like an NPC.

    After all of these currency's are spent, you have basically two options. The first one is go spend some money in their store and get some stamina. The other is to go work on your farm.

    Farming

    While the game doesn't give you specifically XP for doing farming, it does give your farm XP which gains its own levels. This will let you expand it with plots every X levels ( Level 10 will give you a total of 5 plots to plant things in). So once you do all of your other things in a day, you are sitting around clicking like a mad-man. That was boring to me, so I decided to macro it.

    I wrote a simple click bot that anyone could write, added as many people as friends as I could until I had 200 friends in the list (10 Pages in the Farm x 12 per page is all it lists for some reason). After 3 hours, including discovery play-time, it had hit the "You have reached the maximum harvests per day" limit, and that's when I stopped.

    I don't know if it's worth it to continue playing, I was playing around before hand, so what I want to do is find out how much of those 3 hours was the bot's part of the limit. A fresh day will tell me all. But that's not the important part. Harvesting only gives you money and Durans (i think they're called). They are used to upgrade troops etc in other parts of the game.

    So that's the cap. All it does is stop you from making money and currency. However, all of the OTHER stuff you can do (Clean Grass off of friends plots, nurse a plant back to health, get rid of pests) all give you 1 XP each time you do it.

    Hypothetical Situation Time

    You have a bunch of friends (120 of them), and you have level 10 farms with an 8 hour plant in it (It takes 8 hours till it is ready for harvest). You can constantly get a random time to 'help' that plot of land and gain an XP off of it.

    So you have 120 x 5 plants, and lets say it only procs all 120 every hour a total of 2% of the clicks.

    2% of One Hour is 1.2 Minutes.
    My macro does 12 clicks in 1.2 seconds (100ms delay)
    720 Clicks x 5XP Each = 3600 Farm XP Per Hour

    So it could be possible to max out your farm XP per day, and unless they are dedicated to watching logs, you probably won't be caught. It's also a free game, so you could just go make another Google account and do it again anyway if it's worth that much to you.

    Wartune - Discussion Thread
  2. #2
    Veritable's Avatar OwnedCore News Correspondent
    Reputation
    326
    Join Date
    Apr 2007
    Posts
    369
    Thanks G/R
    52/123
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pro-Tip to save 20k gold +

    Always Synthesize as much as you can before converting. The higher level they are, the more it cost per multiple. So doing the Synthesize from 4 -> 1 of next level will always be cheaper than converting first.

  3. #3
    Playingnaked's Avatar Contributor
    Reputation
    114
    Join Date
    Aug 2012
    Posts
    227
    Thanks G/R
    9/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do you have any sort of script for this? I'm really enjoying this 2d game while my accounts are botting

  4. #4
    Veritable's Avatar OwnedCore News Correspondent
    Reputation
    326
    Join Date
    Apr 2007
    Posts
    369
    Thanks G/R
    52/123
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Playingnaked View Post
    Do you have any sort of script for this? I'm really enjoying this 2d game while my accounts are botting
    I had an ACTools farm bot that I ran for a while, but I haven't played for a while now. The game was running on monitor 1 at 1600x900 resolution to do this, but you might have to adjust some of the locations. Also, about the friends list, try to keep high level farms in your friends list as much as possible. Since there is a limit to the # of people you can remove per day, keep cleaning it out and advertise for high level active farm friends. It helps to keep the likelihood of you getting rewards and such because their farms will be redone as they do it. You can't harvest a plant twice, so they have to harvest it themselves and replant, which is what that is important:

    Code:
    // Farm Bot For Wartune
    SetActiveWindow Wartune*
    
    
    Loop 99999
      
      Loop 9
        Call PageOfFriends
      end
      
    End
    
    
    Procedure PageOfFriends
      // Click 12 Friends Per Page
      // On Each Friend
      // 1) Tree of Ancients
      // 2) Farms (12 Points)
      // 75% Zoom in Chrome
      // ------
      
      loop 9
        
    
    
    
    
    MousePos 1122, 272
        delay 300
        leftclick
        delay 300
        call C_Farms
    MousePos 1118, 299
        delay 300
        leftclick
        delay 300
        call C_Farms
    MousePos 1121, 328
        delay 300
        leftclick
        delay 300
        call C_Farms
    MousePos 1126, 354
    
    
        delay 300
        leftclick
        delay 300
        call C_Farms
    MousePos 1116, 378
    
    
        delay 300
        leftclick
        delay 300
        call C_Farms
    MousePos 1130, 403
    
    
        delay 300
        leftclick
        delay 300
        call C_Farms
    MousePos 1115, 431
    
    
        delay 300
        leftclick
        delay 300
        call C_Farms
    MousePos 1112, 460
    
    
        delay 300
        leftclick
        delay 300
        call C_Farms
    MousePos 1112, 483
    
    
        delay 300
        leftclick
        delay 100
        call C_Farms
    MousePos 1112, 508
    
    
        delay 100
        leftclick
        delay 100
        call C_Farms
    MousePos 1114, 532
    
    
        delay 100
        leftclick
        delay 100
        call C_Farms
    MousePos 1120, 563
    
    
        delay 100
        leftclick
        delay 100
        call C_Farms
        
    MousePos 1216, 593 // Next Page
        delay 100
        leftclick
        delay 100
        keys {ESC} // Escape a few times to make sure there's no open windows
        delay 100
        keys {ESC}
        delay 100
        keys {ESC}
        delay 100
      End
      
    MousePos 1097, 591  // First Page
      delay 100
      leftclick
      delay 100
    End
    
    
    procedure C_Farms
    
    
    MousePos 372, 339 // Tree
    delay 100
    leftclick
    delay 100
    
    
    MousePos 737, 439  
      delay 100
      leftclick
      delay 100
    MousePos 671, 473
      delay 100
      leftclick
      delay 100
    MousePos 589, 532
      delay 100
      leftclick
      delay 100
    MousePos 850, 492
      delay 100
      leftclick
      delay 100
    MousePos 774, 541
      delay 100
      leftclick
      delay 100
    MousePos 705, 590
      delay 100
      leftclick
      delay 100
    MousePos 946, 553
      delay 100
      leftclick
      delay 100
    MousePos 867, 612
      delay 100
      leftclick
      delay 100
    MousePos 791, 653
      delay 100
      leftclick
      delay 100
    MousePos 1045, 620
      delay 100
      leftclick
      delay 100
    MousePos 970, 662
      delay 100
      leftclick
      delay 100
    MousePos 894, 706
      delay 100
      leftclick
      delay 100
    End
    Last edited by Veritable; 06-02-2013 at 02:32 PM.

  5. #5
    Resouler's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    15
    Thanks G/R
    1/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone have a project for wartune? maybe a bot? pm me if s1 have wanna help if i can.

  6. #6
    MiaLevey's Avatar Private
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the tips actually this script is really good for me, but didn't know the data base in showing some unknown error because of this.

  7. #7
    Hellnation13's Avatar Private
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what about this balen / gold hack ? any one know if any of them actually work ?

  8. #8
    n1ce0n3's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone still play it?
    An awesome game, though a QTE bot would be awesome, cause I **** it up a lot. Didn't manage to find anything

Similar Threads

  1. Serious [Realm First!] Discussion Thread
    By Purge in forum World of Warcraft General
    Replies: 11
    Last Post: 12-05-2010, 09:31 PM
  2. Glider Lawsuit Discussion Thread
    By Apoc in forum World of Warcraft Bots and Programs
    Replies: 358
    Last Post: 02-02-2010, 08:11 AM
  3. [discussion thread] An'she's Legacy (previous WIP thread)
    By Goshujinsama in forum World of Warcraft Model Editing
    Replies: 96
    Last Post: 08-18-2008, 03:47 PM
  4. MODEL EDITING, DEMONKUNGA discussion thread
    By KuRIoS in forum Gaming Chat
    Replies: 85
    Last Post: 09-10-2007, 11:16 AM
All times are GMT -5. The time now is 01:51 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search