Snowball World (Games)

In a difficult and distant world, the brave cat Snowball will start your adventure! Snowball have to go through 20 levels, each more difficult than the other. And on the way, you have to catch all the birds and mice sey world. Find the key and go through the door that leads to a new level!

Snowball World is an amazing game with 20 levels, great graphics and colors, many effects and animations that make the game more fun!

The game was made using the program Construct 2. Use the most stable version of the program. If you want to edit the game, you will need to have a license of the program. But to edit the images, just replace the folder where the images.

If your intention is to export the game to Android, iOS, Windows or other, in the file there is a file Contruct ready to export! Add adsense and earn money $$

Must have a license Construct program. Get it now scirra.com

Thanks for visiting! If you have any questions, or just want to say hi, leave your comment.

Don’t forget to rate

I very much hope you enjoy =)









Download Snowball World (Games)

DOOBLE – iOS //8 Full Game Template (Swift) (Games)
















DOOBLE – Full iOS 7/8 Universal Game Template (Swift)


DOOBLE is a single-touch iPhone/iPad game template where you have to reach the highest score by tapping the screen to change the color of the big dot from black to white and viceversa, accordingly to the smaller dots that randomly show up from the bottom or the top of screen.
DOOBLE has Game Center Leaderboard implemented, XCode 6.4 project, Apple Swift language, User Guide and PSD files included, iOS 7/8, Universal, Super easy to customize, all png graphics are app icons and launch images, the rest is handled by code with QuartzCore and UIKit frameworks


IMPORTANT: As per Envato rules, you must purchase DOOBLE under an Extended License if:
1. You plan to sell your own version of this app as a PAID app on the AppStore.
2. You plan to add In-App Purchase to your own version of this template (which means that your users can get charged of money).
3. You plan to sell your own version of this app on Flippa and similar markets.
Thanks!

FEATURES:

  • XCode 6.4 project – Swift – 64bit
  • iPhone 4, 5, 6 and 6+ & iPad
  • iOS 7/8 – Storyboard
  • iAd + AdMob banners
  • Game Center Leaderboards
  • Flat UI design
  • Share last score on Facebook & Twitter
  • PDF User Guide included
  • PSD graphics included
  • Easy to customize, well commented code


Have fun with DOOBLE and don’t forget to rate it on your Downloads page if you like it!


Important Disclaimer: We’e recently found out that some developers have bought our app templates, reskinned them just a bit and put them on sale on other source code markets smilar to CodeCanyon, saying that they developed and own such source codes.
That is a serious copyright infringement, developers who buy our templates are allowed to reskin and sell them as apps on the AppStore (accordingly to the License type they’ve purchased a template for), but are not allowed to put our original source codes for sale on source code markets, including CodeCanyon.
We will report developers who made copyright infringements to the competent authorities.
Thanks.

Download DOOBLE – iOS //8 Full Game Template (Swift) (Games)

Drupal Drag Drop Builder (Drupal)

Drupal Drag Drop Builder is awesome Module for Drupal CMS. It comes with alot of features, Bring you and your customers connects to Drupal easier. More fiendly, more easier that is Drupal Builder mission.

Drupal Drag Drop Builder
Drupal Drag Drop Builder
Drupal Drag Drop Builder

Key features:

  • Drupal Builder base on Field, So can be attached to any of Drupal Enity such as: Node, User, Taxonomy, …
  • Compatible with Drupal version 7.x
  • Easy to install and use.
  • Add unlimited row section, columns, and Unlimited contents.
  • Responsive Grid CSS.
  • HTML5 Video background.
  • Support Video, And Image background Parallax.
  • Allow configuration permission base on user’s roles, or permission rule for each content in the column.
  • Well code and clear documentation. Video tutorial how to install, and use included in the documentation.

API and HOOKS Implements for the Developer

Ideas for Theme Development:

  • Create unlimited variations for Headers – so when create new page we can select a header for that one.
  • Create unlimited variations for Footers.
  • Create unlimited variations for main Menus.
  • Your idea…
<?php

/**
 * HOOK_builder_content_info()
 */
function HOOK_builder_content_info() {

  $contents = array();

  //Custom text
  $contents['custom_text'] = array(
      'info' => t('Custom text'),
      'group' => t('Text'),
  );

  $contents['node'] = array(
      'info' => t('Adding existing node'),
      'group' => t('Node'),
  );

  return $contents;
}

/**
 * Hook_builder_content_configure($delta = '', $content = array())
 */
function HOOK_builder_content_configure($delta = '', $content = array()) {

  $form = array();
  switch ($delta) {
    case 'node':
      $form['nid'] = array(
          '#type' => 'textfield',
          '#title' => t('Enter node ID or title'),
          '#default_value' => !empty($content['settings']['nid']) ? $content['settings']['nid'] : '',
          '#autocomplete_path' => 'builder/autocomplete/node',
          '#required' => TRUE,
      );
      $view_modes_options = array();
      $view_modes = builder_get_entity_view_modes('node');
      if (!empty($view_modes)) {
        foreach ($view_modes as $key => $vm) {
          $view_modes_options[$key] = $vm['label'];
        }
      }
      $form['view_mode'] = array(
          '#type' => 'select',
          '#title' => t('View mode'),
          '#options' => $view_modes_options,
          '#default_value' => isset($content['settings']['view_mode']) ? $content['settings']['view_mode'] : 'full',
      );
      $form['hide_node_title'] = array(
          '#type' => 'checkbox',
          '#title' => t('Hide node title'),
          '#default_value' => isset($content['settings']['hide_node_title']) ? $content['settings']['hide_node_title'] : FALSE,
      );
      break;

    case 'custom_text':
      $form['custom_text'] = array(
          '#type' => 'text_format',
          '#title' => t('Custom text'),
          '#default_value' => isset($content['settings']['custom_text']['value']) ? $content['settings']['custom_text']['value'] : '',
          '#format' => isset($content['settings']['custom_text']['format']) ? $content['settings']['custom_text']['format'] : filter_default_format(),
      );

      break;
  }

  return $form;
}

/**
 * HOOK_builder_content_view()
 */
function HOOK_builder_content_view($delta = '', $content = array()) {
  switch ($delta) {
    case 'node':

      $node_content = '';
      if (!empty($content['settings']['nid'])) {
        $nid = $content['settings']['nid'];
        if ($node = node_load($nid)) {
          if (isset($content['settings']['hide_node_title']) && $content['settings']['hide_node_title']) {
            // hide node title.
            $node->title = FALSE;
          }
          $node_view = node_view($node, $content['settings']['view_mode']);

          $node_content = render($node_view);
        }
      }
      $content['content'] = $node_content;
      break;

    case 'custom_text':
      $custom_text_value = isset($content['settings']['custom_text']['value']) ? $content['settings']['custom_text']['value'] : '';
      if (isset($content['settings']['custom_text']['format'])) {
        $custom_text_value = check_markup($custom_text_value, $content['settings']['custom_text']['format']);
      }
      $content['content'] = $custom_text_value;
      break;
  }
}

Download Drupal Drag Drop Builder (Drupal)

Cop Chase (Games)

COP CHASE – CONSTRUCT 2 GAME

Chase down the enemy street racers and destroy them.

How To Play:

Use arrow keys or tilt to control the cop car. You may also touch the left and right side of the screen to move the car left and right respectively. Press the bomb icon to destroy enemy street racers. Avoid collision with other cars and collect coins. Don’t run out of fuel.

Features

  • CORDOVA exported files. AdMob ready. No Construct 2 license required!
  • Full support for Android, iOS and Windows!
  • Get Construct 2 .capx file !
  • Assets included! Easy to replace images!
  • Play on desktop and device
  • Easy export to HTML5 for website
  • Touch & Mouse support

What You Get

  • Construct 2 .capx file
  • All assets used in the game
  • A documentation with necessary explanations
  • Pre-exported to HTML files
  • CORDOVA exported files. AdMob ready. No Construct 2 license required!

NOTE

The splash screen image can be easily replaced by your own image. No coding changes required.
You will need Construct 2 to open the .capx file!

For any doubts/queries/help:

Check out our other cool games:





Download Cop Chase (Games)

Dot Forest Cocos2d-x V3.4 (Games)

You are a bot inside agar plate. Your goal is grow as fast as you can. Consume dots smaller than you and don’t get consumed by the bigger ones.

Good luck!

Demo App:

https://itunes.apple.com/us/app/dot-forest/id999385225?mt=8

Support Admob, Startapp ads

The code: use Cocos2D-X V3.4

Startapp full screen ads

iPhone 5, 6, 6plus wide screen support

iOS support on iOS 6+.

Runs on iPhone, iPod, iPad, iPhone6, iPhone 6+

Support: We provide support within the comments section. So when you have questions, we’re here to answer. So let’s get the new top list app code!

Update is FREE!

Get this code and start making money!

iOS6, iOS7, iOS8 Ready!

How to Setup:

A. Quick Setup

There is no setup. Just open the Dot Forest.xcodeproj and you will be on your way.

B. Basic Configuration

1. Open Dot Forest.xcodeproj

Change CFBundleIdentifier “com.iMadeLab.” to your app name ID (example: com.YouGame.)
2. Open HelloWorldScene.cpp file
Change StartApp id to show Ads: startAppBridge->STAInit(“202373335”, “102781578”);
3. Open GameCenterObjC.m file

NSString *ADMOB = @””;
NSString *TESTDEVICE = @””;

•Change Admob ID: to your id

•Change Url app on store f? social share: NSString *caption = @””;

4. Open HelloWorldScene.cpp file

const char *GAME_CENTER = “DotForest”;
const char *GAME_CENTER_LIFE = “DotForestLife”;

Change to your Game Centre ID

5. That’s All And Done

C. Ready Submit to Appstore

Optimized for iOS 6,7,8!

Support:

We provide support within the comments section. So when you have questions, we’re here to answer. So let’s get the new top list app code!

We also provide support via Skype and Email

Skype ID : santd86
Email : [email protected]

Download Dot Forest Cocos2d-x V3.4 (Games)

SmartR Sign Up: Referral Based Waitlist Form (Forms)

SmartR Sign Up Plugin

The Most Powerful Sign Up Form | Built in Affiliate Link Sharing | Have your Users Spread the Word

SmartR Sign Up is a responsive signup form plugin with a built in affiliate marketing aspect. Users can share their referral link and get credit for spreading the word about your product or service.

As users spread the word about your project, company, product or service they get “points” for each additional signup they refer and move up on the waitlist. This creates an affiliate web where your users are actually working to spread the word in return for offering rewards and your email list keeps growing larger and larger. SmartR Signup adds marketing and business intelligence to your site through a powerful signup referral system.

SmartR Sign Up is perfect for:

  • Waitlists
  • Early Releases
  • Pre-Orders and Information
  • Newsletters
  • Top 100 active users get a free “X”
  • Rewarding Users for Referring their friends

“The Biggest Improvement made to my WordPress Site”


Download SmartR Sign Up: Referral Based Waitlist Form (Forms)

ADS PRO – WordPress Free Trial Add-on (Add-ons)

Add to ADS PRO the option to offer a free trial! This plugin add the option to offer a certain quantity of ads for free to try the service.

Requirement of having ADS PRO version 1.3.4 or higher

Features:

  • Select how many ads (Click, views, time) you can offer for free.
  • In front end the user can select the free trial
  • The ad will be automatically selected as paid
  • The administrator can accept or decline the ad

Download ADS PRO – WordPress Free Trial Add-on (Add-ons)

ADS PRO – WordPress Coupons Add-on (Add-ons)

Add an option to sell coupons for ADS Pro, add a new way of advertising, we called it “Cost Per Sell (CPS)”, earn by every time that a user exchange the coupon.

Requirement to have Ads Pro Plugin v1.3.4 or higher

How does this work?

  1. The advertiser or the admin create the coupon (For example: 2×1 in pizza) With an image, description, restrictions, etc
  2. Then the ad is published and people can see the ad, when someone is interested in it, they will click in it
  3. They are ask for an email
  4. They receive an email and redeem the coupon
  5. They go to the store to make valid the coupon
  6. The advertiser can see who, how many and when redeemed their coupons

Features:

  • Add in the space the option to have coupons, you have to select the % of income.
  • The users can create their ads in Front End
  • Statistics for clients, they can see number of persons than have clicked and who have print the coupons.
  • We charge for every time an user print the coupon, not for every click.
  • Users have to provide the email and they will receive the coupon

Download ADS PRO – WordPress Coupons Add-on (Add-ons)

Ultimate Widgets WordPress Plugin (WordPress)

Features

  • 20 awesome widgets
  • 5 styles to present the widgets
  • Fits almost all WordPress themes
  • Very easy to use
  • Enable/Disable the widgets.
  • Custom CSS option in the panel
  • Professional support

Support

If you have any questions related to the setup of the plugin that are not covered by the documentation or if you run into any bugs, please submit a comment.

Credits

History

Version 1.0

    -Initial Released

Download Ultimate Widgets WordPress Plugin (WordPress)

Downhill Cycle Rider Admob+Leaderboard+IAP (Games)

Description

Downhill Cycle Riders is a free and addictive racing game. Waiting for your girlfriend? A bus? Stuck in line? No matter where you are, now you can hit the slopes! Just start your cycle ride and you’re there!

The Code

This game is made in Java using Android Studio and using LibGDX framework which is also made in pure java. Also easy to edited in Eclipse.

Features

  • Admob Banner and Interstitial
  • In App Purchases
  • Easy to Share
  • Leaderboard
  • Achievements
  • Made with LibGDX
  • Import Eclipse and Android Studio
  • PSD & Sound files
  • Full Documentations
  • Support All Devices

Reskin & Documentations

Downhill Cycle Riders is a easy to change a images and sounds used in the game are in a folder called android ->assets. We have provide full documentation for how to import code in android studio and eclipse…

Download Downhill Cycle Rider Admob+Leaderboard+IAP (Games)

tPlayer-HTML5 audio player (with playlist) for WP (Media)

Want visitors of your website hear your music or share your musical tastes?
tPlayer – ideal for this, easy to install, minimum settings, most important formats supports, shoutcast and icecast support.

Advantages:
– Easy to install on your site.
– Popular music formats Mp3, Wav, Ogg and Icecast, Shoutcast supported.
– Displays the Song title, Artist name and Album cover.
– Availability Playlist / Playlist repeat function, on completion.
– Show/Hide Playlist function.
– Autostart function.
– Download function.
– Responsive Design.
– Separate design for mobile devices.
– Supports all latest browsers.
– Font Awesome icon inclided.
– Google fonts use.
– Video Documentation included.
– Language (ENG/RU/UA)

Download tPlayer-HTML5 audio player (with playlist) for WP (Media)

Wallet – Woocommerce Account Deposit & Payment (WooCommerce)

Wallet is a premium Woocommerce extension that allows account funding by depositing via any payment gateway and also making purchase with the amount deposited in the account

The funds are deposited in the account and saved in wallet. The wallet balance is visible on the account page or via widget that can be added to the sidebar.

Shortcode

Use the wallet shortcode [wcw_wallet] to create a new page that will display the wallet page where buyers can deposit.

Widget

Display wallet balance to users via widget that can be easily added to the sidebar.

Payment Gateway SetUp

Set up the wallet payment gateway so that buyers can use funds in account to make payments on your store

Download Wallet – Woocommerce Account Deposit & Payment (WooCommerce)

Five – Words Game + Admob – Leaderboard – Share (Games)

Five is an enjoyable Android game. The aim of the game is to get the maximum amount of points creating words with the 5 letters are given.

The game has been developed with java, using Android Studio and LibGDX. It can also be imported with Eclipse, but now, Android Studio is the official Android IDE, so I recommend to use it.

It has Google Play Leaderboards, so players will be able to compare their results with other players.

It can be easily reskinned, you only have to replace current images and sounds with yours.

It is included a Tutorial explaining how to configure everything in the game:
– How to import the game (video included).
– How to change admob, leaderboards, push notifications, etc.
– How to change game images and sounds.
– How to change package name and export (video included).
– How to change current words and how to add more words.




Why should you buy our items? Take a look at how our buyers rate us:

MORE GAMES








Download Five – Words Game + Admob – Leaderboard – Share (Games)