Tampilkan postingan dengan label a. Tampilkan semua postingan
Tampilkan postingan dengan label a. Tampilkan semua postingan

A Story of a Band v1 2 1 super easy mod

Name of Game: A Story of a Band
Version: 1.2.1
Root Needed: No

Name of Cheat:
-Free shopping.
-Learn all skills without cost of skillpoints.
-Learn all skills without leveling up band members.
-All the Song++ items will give you +50 for Lyrics, Melody and Rhythm(all the songs you make will receive full star points).
-All the Song++ skills will also give you +50 for Lyrics, Melody and Rhythm except Instrumental and Radio Hit.
-The moneymaker, solo, +xp, slow time skills does not cost any skillpoints and also reloading takes only 1 second i.e. 1 day in the game.
-The moneymaker level 1 will make you earn 25,000 $ instead of 1,000 $; level 2 will make you earn 50,000 $ instead of 2,500 $; level 3 will make you earn 75,000 $ instead of 5,000 $; level 4 will make you earn 100,000 $ instead of 10,000 $.
-All the accessories are much better and give you +50 for all the specified part i.e. either Charisma, Creativity, Songwriting, Live, Stamina or Playing (I couldnt make a single item have all six. I think three is the limit. Otherwise the game crashes).
-All the Battle Bands band members have zero value for Charisma, Creativity, Songwriting, Live, Stamina and Playing.
-etc., etc., etc.,....

Manual Step:
Uninstall if game is already installed and simply install the mod(Dont Replace).

Credits:
-dinogold(for original mod)
-Kenzi_Shinobi

DOWNLOAD HERE :

DOWNLOAD A Story of a Band v1.2.1(super easy mod)
Read More..

Ravensword Shadowlands Full APK

Ravensword Shadowlands Full APK, Ravensword Shadowlands Download now and is no paid no surveys,is no crack but is very fixed link

Download Ravensword Shadowlands Full APK
Read More..

How to create a gif from a video on your computer

GIF is an image format similar to JPEG and PNG, only distinction is animation, GIF support animation and alternative image format doesnt permit user to try and do this thing, therefore it is becoming so popular in user, its very useful to demonstrate tutorial, and far a lot of.
GIF (Graphics Interchange Format) is introduced by " CompuServe " in 1987 and its a bitmap picture format.allowing clients to make and provide simple animations on the net.

There are number of methods available to make video GIFs on your computer, including on-line tool or GIF converter applications. However here I am going to tell you about the best approach to make video GIFs by utilizing below tools and apps.
                              Example of Video GIF
Example video GIF
This Video GIF is created by using Free Video to GIF Converter on Windows PC

How to Create GIFs on your computer with the help of apps.


Free Video to GIF converter:
  • Size: 8.23 MB
  • Version: 2.0
  • Platform support: Windows
  • Dev Site: http://www.video-gif-converter.com/

This is a straightforward and small application to create video GIFs, on your PC, It will convert the majority video formats to GIF including WMV, MPEG, AVI, MOV, FLV, MP4, 3GP, VOB, etc.
With the help of this application you can  select any video from your computer and proselyte, it into GIFs,without much of a stretch, below step by step tutorial helps you to make GIFs by using this app on your computer.

Step 1. Download Free Video to GIF converter and install this apps on your computer.

Step 2. Open “ Free Video to GIF converter, and skim and select the video from your pc to change over.

Screenshot Step 1,2, and 3 Free video to GIF converter

Step 3. Once youve got chosen video, then youll be able to change setting as per your call, set up extract frames by choosing time. Frame rate, width and height,

Screenshot step 4 free video to GIF Converter

Step 4. Then click on “Next” button, during this step you can able to take away frames that you do not need, choose quality and Speed of output GIF files as you prefer, then click on “ Make GIF button.

How to create video to animated GIF on computer

Step 5. Select folder to save your output file and click on on OK button to finish the process.

Presently youve got animated video GIF, share it on your blog or web site.

How to Create Video GIFs Online:

Thousands of online video to GIfs converter tool out there over the web, however here I am about tell you the most effective online GIF tool called as imgflip.com.
                                    Example of video GIF
Example of video GIF created with imgflip.com
This video GIF is created by using imgflip.com online tool

imgflip.com: imgflip.com is the best GIF maker, it offers user to make GIFs online from video, YouTube or other video website. It supports multiple video format like mp4, mpg, flv, avi, mov, 3gp, asf, swf, ogg, h264, mpeg, wmv. To convert YouTube video you must required account, but for direct upload you do not need an account, youll be able to directly transfer a video and convert it into GIF.
imgflip.com shows watermark on output GIFs within the free account and youll be able to disable the watermark fully with a professional account,imgflip.com cant support video larger than 35MB.

Step by step tutorial to create online video GIF

Step 1. Visit imgflip.com from your pc, then click on “ Make a GIF “ link,

Step 2. New page appears after click on the link (in Step 1), Then click on “ video “ tab on this page.

Step 3. Here youve got two option to use, one is YouTube URL and other is upload video, youll choose one amongst them as you prefer. during this tutorial im going to use " Upload Video option. --------> Click on upload Video -----> select Video -----> click OK "

screenshot online video GIF

Step 4. Now selects what proportion of video would you prefer to use by mentioning start and finish time, customize width, add text to GIF, and Crop GIF.
Give a smart title and tag to your output video GIF file, and select appropriate box, then click on " Generate GIF ".
Step 5. New pop window appears with GIF preview, share and download option. now you may download and share your GIFs over the net.

Free Video to GIF converter and imgflip.com both are the simplest approach to make video GIF,  on the off chance that you discover any  other application and online tool simpler than this, then please share your choice here....
Read More..

The possibilities for a ball to leave a field

There is a field as a matrix with m rows and n colls. Each cell of the matrix is another subfield with an altitude given by the value from the cell. There is a ball and knowing that the ball can only move in North,South,East,West and from a higher altitude to a lower one, the application will display all the possibilities of the ball to leave the field.
----------------------------------------------------------------------------------------------------

import java.io.*;
public class pb_bila{
private static int[][] sol=new int[100][3];
private static int[][] t=new int[10][10];
private static int m,n,i,j,lin,col;
private static void tipar(int k){
System.out.println("Solutie ");
for(i=1;i<=k-1;i++)
System.out.println(sol[i][1]+" "+sol[i][2]);
}
private static void back(int k,int lin,int col){
if(lin==0 || lin==m+1 || col==0 || col==n+1)
tipar(k);
else{
sol[k][0]=0;
sol[k][1]=lin;
sol[k][2]=col;
while(sol[k][0]<4){
sol[k][0]++;
switch(sol[k][0]){
case 1: if(t[lin-1][col]
back(k+1,lin-1,col);break;
case 2: if(t[lin][col+1]
back(k+1,lin,col+1);break;
case 3: if(t[lin+1][col]
back(k+1,lin+1,col); break;
case 4: if(t[lin][col-1]
back(k+1,lin,col-1); break;
}}}}
public static void main(String[] args){
try{
BufferedReader input=new BufferedReader(new InputStreamReader(System.in));
System.out.print("m=");
m=Integer.parseInt(input.readLine());
System.out.print("n=");
n=Integer.parseInt(input.readLine());
for(i=1;i<=m;i++)
for(j=1;j<=n;j++){
System.out.print("t["+i+"],["+j+"]=");
t[i][j]=Integer.parseInt(input.readLine());
}
System.out.print("lin=");
lin=Integer.parseInt(input.readLine());
System.out.print("col=");
col=Integer.parseInt(input.readLine());
back(1,lin,col);
}catch(Exception e){e.printStackTrace();}
}
}
----------------------------------------------------------------------------------------------------
Read More..

Download Crazy Garage 1 2 on a apk Format For Android

GARAGE IS IN DANGER!SAVE IT NOW! Different color balls are pouring into the garage,its a total mess,something must be done immediately to deal with this,or the garage will be ruined and turned into wasteland. A war is going to break out and the result is yet to know.Now we have a cannon to deal with those color balls,either use cannon to blow up those color balls in the garage,or the garage gets ruined. CHOICE IS YOURS!! Try to wipe out the balls by connecting 3 or more balls with same color.Classic games with awesome UI.Please make use of some special balls whenever necessary.Go find whats the use of them.

Crazy Garage apk

FEATURES:
1. Game has 70 different levels,more levels coming soon.
2. Metal theme makes the game playing more like enjoying.
3. Leaderboard supported.
4. Easy to operate but full of challenge.

Read More..