MEEPWN! Meepo Guide + Micro Tips in depth! (Dota 2)

Bermuda’s Guide to Meepwn
In-depth Dota 2 Meepo Guide/Tutorial/Tips and Tricks
Last revision 24/08/14 – Overall rehaul is coming soon.Welcome Geomancer. Meepo is back in 6.80
Level 3 ultimate + Death timer reduction is the best buff Meepo can get ever.
Dota is not a game you exactly follow the rules and regulations, you have to flexible and must be able to make decisions by yourself according to the situation.
Hopefully, this guide will be able to help you develop decision skills to determine what to buy and do according your situation.
Read only Bold&Underlined if you are in a hurry
This is snowball Meepo build.
Let’s start ;)
Solving latency issues in games using MUDFISH
Using MUDFISH VPN, we can now play games of any region without any L@#$%@#$%AG! =)
Including Dota 2, League of Legends, World of Warcraft and more! (complete list available at the bottom)
1. Go to http://en.loxch.com/
2. Click on Download and download the right installation file for your system :)
3. Install MUDFISH (easy, click on next next blah blah. If a security message appears, allow it to install.)
4. After installation, Mudfish Launcher will be @ your startup. Start! =D
5. Login page like this will pop up! (reminds me of wordpress!! =O) sign up, sign in and agree to terms and conditions :)
6. Something like this will appear! go to Settings > Wizard
7. Select your choice of Game/Location
8. You are good to go :)
—
MY RESULTS! Dota 2
Home Region : 18 ms
US West (Before) : 382 ms
US West (After) : 229 ms
——————————
Two Things to be Aware when you Declare a Variable
1. INTRODUCE FIRST
int main(void)
{
int a;//declare
int b;//declarea=5;//input
b=1;//inputprintf(“%d + %d = %d\n”, a, b, a+b);
return 0;
}
CORRECT :)
int main(void)
{
int a;//declare
a=5;//input
int b;//declare
b=1;//inputprintf(“%d + %d = %d\n”, a, b, a+b);
return 0;
}
WRONG :(
————————————————–
2. NAME IT PROPERLY
3 SIMPLE things! :D
1. Variables consist of Alphabets, Numbers and Underscore(_)
2. C Language differentiates small letters and CAPITAL LETTERS :D
Therefore val and Val are different variables :)
3. Variable CANNOT start with a Numb3r or be a Key Word! It should also not contain any Space or Special Letters
Latest Comments