Jump to content

Recommended Posts

but im back!

 

until midterms hits you in the balls and makes you wish you were never born a man

 

biggrin.gif

 

not looking forward to this

 

although most of my classes doesnt have a set "midterm exam" so basically i enter about a month of semi-heavy testing.

 

but then again i only have 4 classes so...

Link to comment
Share on other sites

Link to comment
Share on other sites

Ok then you gotta cheat.

 

If it's multiple choice, get a friend to take the test first.

 

Have him convert the answer choices into binary. So a = 00, b = 01, c = 10, and d = 11. You should have a really long string of 1s and 0s, like this: 01010101010101010111010101010101001101000101000101010010101111010010100101110000110010010101.

 

Then have him convert it to hexadecimal. In this case you would have 55557555345152BD2970DB5. Memorize it.

 

When you take your test, convert it back into binary and get a good grade.

 

Or study a lot.

  • Like 2
Link to comment
Share on other sites

Hexadecimal is easier than decimal. Cuz you just gotta split it into groups of 4 bits.

 

0101	5
0101	5
0101	5
0101	5
0111	7
0101	5
0101	5
0101	5
0011	3
0100	4
0101	5
0001	1
0101	5
0010	2
1011	B
1101	D
0010	2
1001	9
0111	7
0000	0
1100	D
1001	B
0101	5

55557555345152BD2970DB5

 

The calculator I used in the other post was a [bleep] up so I fixed it.

Link to comment
Share on other sites

Ok then you gotta cheat.

 

If it's multiple choice, get a friend to take the test first.

 

Have him convert the answer choices into binary. So a = 00, b = 01, c = 10, and d = 11. You should have a really long string of 1s and 0s, like this: 01010101010101010111010101010101001101000101000101010010101111010010100101110000110010010101.

 

Then have him convert it to hexadecimal. In this case you would have 55557555345152BD2970DB5. Memorize it.

AxelLogo.jpg

Requiescat in pace, Shiva "Anarith" Kumar.
dea6a17b9c.png
351 Quest Points|99 Strength|99 Attack|99 Constitution|99 Defence|99 Magic|138 Combat|99 Summoning|99 Slayer|99 Ranged|99 Firemaking|99 Dungeoneering|99 Cooking|99 Prayer|99 Runecrafting|99 Smithing|99 Fletching|99 Construction|99 Farming|99 Fishing|99 Herblore|99 Crafting|99 Agility
True friends are never separated by distance, for they are forever linked by their hearts.

Join the HYT CLAN![qfc]90-91-310-65710712[/qfc]

Link to comment
Share on other sites

yeah im pretty confused atm...

Link to comment
Share on other sites

OH MY GOD I REMEMBER WATCHING THIS TOO

 

Holy crap the nostalgia

Requiescat in pace, Shiva "Anarith" Kumar.
dea6a17b9c.png
351 Quest Points|99 Strength|99 Attack|99 Constitution|99 Defence|99 Magic|138 Combat|99 Summoning|99 Slayer|99 Ranged|99 Firemaking|99 Dungeoneering|99 Cooking|99 Prayer|99 Runecrafting|99 Smithing|99 Fletching|99 Construction|99 Farming|99 Fishing|99 Herblore|99 Crafting|99 Agility
True friends are never separated by distance, for they are forever linked by their hearts.

Join the HYT CLAN![qfc]90-91-310-65710712[/qfc]

Link to comment
Share on other sites

Reboot? Hell yes. I watched that all the time.

 

Excuse me, I must go find episodes to show my kids.

  • Like 1

 

f2punitedfcbanner_zpsf83da077.png

THE place for all free players to connect, hang out and talk about how awesome it is to be F2P.

So, Kaida is the real version of every fictional science-badass? That explains a lot, actually...

Link to comment
Share on other sites

ok obviously i had a deprived childhood cus idk what any of this is

Link to comment
Share on other sites

ok obviously i had a deprived childhood cus idk what any of this is

 

Go watch it now please.

 

what the trailer? I saw that but it didn't seem all THAT great.

 

but thats probably cus i dont have the nostalgia effect on me with me

Link to comment
Share on other sites

#Ambler3
#Boxing Simulator

import random

print('This program simulates a runescape box for you, simply enter the player names!')
print('This assumes both characters are maxed melee stats, and no switches are missed')


name1 = input('Please enter Player1s name: ')
name2 = input('Please enter Player2s name: ')

name1health = int(990)
name2health = int(990)
while True:
   name1attack = random.randint(0,102)
   name2defense = random.randint(0,102)
   if name1attack > name2defense:
    name2damage = random.randint(1,112)
    name2health = name2health - name2damage
    print(name1, 'dealt', name2damage, 'damage to', name2)
    print(name2, 'has', name2health, 'remaining')
    if name2health <= 0:
	    print(name2, 'died', name1, 'wins!')
	    break
   elif name1attack < name2defense:
    print(name1, 'missed!')
   name2attack = random.randint(0,102)
   name1defense = random.randint(0,102)
   if name2attack > name1defense:
    name1damage = random.randint(1,112)
    name1health = name1health - name1damage
    print(name2, 'dealt', name1damage, 'damage to', name1)
    print(name1, 'has', name1health, 'remaining')
    if name1health <= 0:
	    print(name1, 'died', name2, 'wins!')
	    break
   elif name2attack < name1defense:
    print(name2, 'missed!')

 

Brb making this allowing you to input attack/str/def bonus, and include potion/prayer mods? See ya in a month.

yqe0mrU.jpg

^^My blog of EoC PvM, lols and Therapy.^^

My livestream- Currently: Offline :(

Offical Harpy Therapist of the Mad

[hide=Lewtations]

Barrows drops: Dharok's helm x2, Guthan's helm, Ahrim's top, Hood and skirt, Torag's hammers, Karils skirt, Karil's top, Torag's helm, Verac's skirt, Verac's Flail, Dharok's Platebody.

Dag kings drops: Lost count! :wall:

4k+ Glacors, 7 Ragefires, 4 Steadfasts, 4 Glaivens, 400+ shards![/hide]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.