Showing posts with label c. Show all posts
Showing posts with label c. Show all posts
Thursday, December 28, 2017
How to Root HTC Desire C Android 4 0 ICS with Superboot
How to Root HTC Desire C Android 4 0 ICS with Superboot
Today our tutorial How to root HTC Desire C Android 4.0 ICS phone easily with the help of Superboot application. HTC Desire C is one of the cheapest phone with Android 4.0 Ice Cream Sandwich ICS OS pre-installed. It was launched in the market few months ago and available in the India with price tag around Rs 15,000. This Phone somehow replaced the Wildfire S and created a new place of its own by equipping with decent specifications like Android 4.0 Ice Cream Sandwich, 600 MHz Cortex-A5 processor with Qualcomm Snapdragon chipset and Adreno 200 GPU. HTC has tweaked the HTC Sense 4.0 interface and thus it gives a fluidic performance with low processor resources. Beats Audio gives tremendous music experience and manual equalizer setting adds more outstanding music clarity while listening the songs.

Read more �
This story was originally published at TechDragInfo
Monday, December 18, 2017
Huawei Modem Universal Flasher Flash Tool c fr3nsis v2 Download Free
Huawei Modem Universal Flasher Flash Tool c fr3nsis v2 Download Free

In this post, we are going to discuss unlock procedure of huawei modem, and we have shared latest flashing tool in the link shared below. There are several modems are coming in the market day by day and all mobile carrier providers are selling Huawie modem with their 3G/4G internet supports. However, it can support for just home network and, it is specially made for just one network. You can unlock it for all networks, by using this powerful software.
Some customers are not satisfied with their modem providers due to single network supporting. However, you can use other services with unlocking Huawei modem. Basically, Huawei unlock tool is similar to Huawei modem unlocker. So you can use it for unlocking USB modems. This latest tool can be downloaded from the link shared below. Before, using this tool, you will need to must install Net framework. It will help more to use unlock tool.
This is an official application, and there is no need of internet connectivity. One can unlock his modem without internet connection.
Before, beginning of blazing firmware, the freeware device likewise offers to re-inforcement NV things. Press here "Yes" with the goal that you can re-establish it back to your Huawei gadget, if something turns out badly. Previously mentioned instrument and points of interest will work with all Huawei modems/switches/MiFis which accompanies USB ports. Before continue any firmware refresh, generally read the instructions deliberately. We provide the official download links, however we are not responsible for any loss or harm to your device in any case. If you wish to get this updated and latest version of Huawei moden, then you have reached at the right place and right location. The work for you to do is just follow the link shared below and tap the link button to download this unique setup. The download process may take some time to download so be patient and wait for its proper downloading, otherwise incomplete download will not work.
The link shared below is trustable, and well working and hopefully, you will not face any issue regarding downloading this software. Even in case of any issue, please comment in comment section. The shared link is also free of dangerous viruses and this is the official download link and the developers release new updates for old setups. Right now, go to the link shared below and click for download this
Download Links
Huawei Modem flasher Download
Sunday, December 17, 2017
How to Root Recovery Lg su640 Jellybean 4 1 2 30d c
How to Root Recovery Lg su640 Jellybean 4 1 2 30d c
1. ROOT
Update TNT new Root
https://docs.google.com/file/d/0BwuJnNfF1xTnb21pR1Z6NDNyeXc/edit?usp=sharing
*download file and extract it
*Enable USB debugging
*connect with pc select lg software mode
*open TNT_LG_JB_Root.exe
*press any key
remove usb
disable usb debugging
Re-enable usb debugging
connect usb
press any key
I wish you success!
2. CWM:
Download the following file to decompress connect usb debuging mode + LG software
Click on Flash.bat
Accept su acess from phone !
http://www.mediafire.com/download/1j9zcbkahhakrb5/cwm_su_640.rar
Update TNT new Root
https://docs.google.com/file/d/0BwuJnNfF1xTnb21pR1Z6NDNyeXc/edit?usp=sharing
*download file and extract it
*Enable USB debugging
*connect with pc select lg software mode
*open TNT_LG_JB_Root.exe
*press any key
remove usb
disable usb debugging
Re-enable usb debugging
connect usb
press any key
I wish you success!
![[IMG]](https://lh4.googleusercontent.com/-LkYtNmYmTG8/UaYNmXsEwlI/AAAAAAAALlY/qIiX6Hc8GMs/s1024/choimobile.vn-11443.png)
2. CWM:
Download the following file to decompress connect usb debuging mode + LG software
Click on Flash.bat
Accept su acess from phone !
http://www.mediafire.com/download/1j9zcbkahhakrb5/cwm_su_640.rar
Monday, December 11, 2017
How to Set High Score On Unity C Script
How to Set High Score On Unity C Script
How to Set High Score On Unity + C# Free Script
So, In this article we gonna to see how to set high score on game deveoping engine unity with C# script.Unity is an all purpose game engine that supports 2D and 3D graphics, drag and drop functionality and scripting through C#. Two other programming languages were supported: Boo, which was deprecated with the release of Unity 5 and UnityScript.
Highscore is the main part of the game, so in this tutorial we gonna to see how to set and reterive highscore with diffent scenes and differne scripts with very easiest method.
Advertisements
by using this methos you can store not only highscore also we can store string,float,int variable values permanently
there is no variable decalration or values assignment required,
so lets gets started. first we need a game scene to set high score.

void update()
{
if(currentscore > PlayerPrefs.GetInt("highscore");
PlayerPrefs.SetInt("highscore", currentscore);
}
From this code, i am checking current score by highscore, if current score is greater than high score then set new score as a high score..
Main Details
To Assing High Score
PlayerPrefs.SetInt("highscore", currentscore);
highscore is an string like a varibale to store high score.
current score is an int variable
To Get High Score
int a = PlayerPrefs.GetInt("highscore");
here A stores high scores from variable highscore.
Advertisements
we can use this methods for store string,int,float datatype values, also we can use/get values from any script we want..
To Download this project Click download below.


Highscore is the main part of the game, so in this tutorial we gonna to see how to set and reterive highscore with diffent scenes and differne scripts with very easiest method.
Advertisements
by using this methos you can store not only highscore also we can store string,float,int variable values permanently
there is no variable decalration or values assignment required,
so lets gets started. first we need a game scene to set high score.

Here, the high score is now 0, to set a highscore just follow given line,
PlayerPrefs.SetInt("highscore", score);
highscore is an public variable so we dont need to decalare any variable.. you can create anything you want.
exmable to set highscore
In UPDATE Function
{
if(currentscore > PlayerPrefs.GetInt("highscore");
PlayerPrefs.SetInt("highscore", currentscore);
}
From this code, i am checking current score by highscore, if current score is greater than high score then set new score as a high score..

To Assing High Score
PlayerPrefs.SetInt("highscore", currentscore);
highscore is an string like a varibale to store high score.
current score is an int variable
To Get High Score
int a = PlayerPrefs.GetInt("highscore");
Advertisements
we can use this methods for store string,int,float datatype values, also we can use/get values from any script we want..
To Download this project Click download below.

Saturday, December 2, 2017
How to root Samsung Galaxy S4 C Spire SCH R970X
How to root Samsung Galaxy S4 C Spire SCH R970X
These are the instructions to root Samsung Galaxy S4 C-Spire SCH-R970X (running on android 4.4.2) using Odin on Windows Computer.
Requirements: Your Samsung Galaxy S4 C-Spire SCH-R970X should have atleast 30-40 percent of battery to perform the rooting process.
Step 1: Download and Install Samsung USB Driver on your computer. If Samsung USB Driver is already installed on your computer then Skip this Step.
Step 2: Download and extract the root files on your computer. After extracting you will be able to see the following files:
Step 3: Now, Switch off your Smartphone.
Step 4: After switching-off the phone, you need to boot into Download Mode. To boot into download mode Press and hold Zoom Left and Power button at same time for 5-8 seconds until download mode is active.
Step 5: In the Download mode you will be able to see a Warning Yellow Triangle Sign. In this situation you have to press the Zoom Right key to continue.
Step 6: Now, Open Odin3 (found in the extracted files, that you have downloaded in the Step#2) on your computer. Then connect your Smartphone to the computer.
Step 7: Once you have connected the Smartphone to the computer, Odin will automatically recognize the device and show �Added� message at the lower-left panel.
Step 8: Once your device is detected by Odin, click on the PDA button and select the CF-Auto-Root.tar file (you have downloaded this file in step#2).
Step 9: Now, click on the Start button in Odin to begin the Flashing.
Step 10: Flashing usually takes 30-50 seconds to complete the rooting process on your Samsung Galaxy S4 C-Spire SCH-R970X. Once Rooting process is completed you will be able to see a Green Box with Pass written on it in Odin. During this process Smartphone will re-boot automatically.
Step 11: Once you see, the Pass message in Odin, you can disconnect your Device from the computer.
Step 12: Now, to make sure you have successfully rooted your Samsung Galaxy S4 C-Spire SCH-R970X, open Applications Menu on your Smartphone and Find SuperSU App. If this app exist on your Smartphone then it means you have successfully rooted your device. Congratulations.
Optional: You can also verify that your device is successfully rooted or not by Root Checker Application.
Subscribe to:
Posts (Atom)