Skip to content
View in the app

A better way to browse. Learn more.

Tip.It Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Ambler

Monster Hunting Team
  • Joined

  • Last visited

Everything posted by Ambler

  1. Zaaps inspired me to make a melee QBD video commentary, so I might post that sometime, though my mic sucks.
  2. I wouldn't mind a Zammy Halo/Steads, they can be my friend any day. :)
  3. Kim, if you don't take that picture, I'm not reminding you about Nex. :>
  4. Last time he came in gano, we got pbody, so I don't mind if he does it again. :twss:
  5. Junk from Nex, outpidded some guy who was trying to kill steal, so no problems there. :) Also passed 1500 Glacor kills, on 176 shards I think, and 3 boots. (Got ragefires, but have yet to post here.)
  6. That setup looks fine, and fixed/changed a few of the gear reccomendations. I'll also get a void one sorted. Dunnit. :)
  7. I can just see some non[harpy] who decides it'll be fun to crash the event with darts. :rolleyes:
  8. You could easily do QBD... This is shameful. I got my boxing sim working, attack & defense rolls are 8+(Bonus+64)/64, correct? I also need strength's rolls, Rapier and then custom sim, WITH ATTACK SPEEDS coming up sometime, I'm finding this fun. :)
  9. You make the videos Zaaps, this is your job. :>
  10. Speaking of Nex, I'm hosting a TMHT event on saturday. :>
  11. Nex Godwars! The fearsome Zaros general, Nex! Time and Date Date: Saturday, 6th October 2012 Time: 6pm BST (UK Time) Other Time Zones: GMT (Greenwich Mean Time): 5pm CET (Central European Time): 7pm ACT (Australia Central Time): 4am (NEXT DAY) PST (US & Canada Pacific Standard Time): 10am CST (US & Canada Central Standard Time): 12pm (Midday) EST (US & Canada Eastern Standard Time): 1pm [pending]pur_1349542800[/pending] Server and Location We will meet in the Nex bank, on a world specified in the chat, at the time of the event. The Boss Nex, the strongest and most feared boss in the GWD! Friend Chat "TMHT_Ambler3" Inventory & Equipment Weapon: Chaotic Crossbow > Armadyl Crossbow > Rune crossbow (ROYAL CROSSBOW WILL NOT BE ALLOWED!) Helm: Pernix > Armadyl > Karil's=Nezzy Amulet: Fury > Saradomin's Murmur > Ranging > Glory Body: Pernix > Armadyl > Royal = Karils Legs: Pernix > Armadyl > Royal = Karils Shield: Divine = Elysian > Eagle Eye Kiteshield > Spectral = Armadyl Buckler > Zammy book > Blessed Spirit Shield > Spirit Shield > Other god books Boots: Glaiven > Ranger > Snakeskin Gloves: Swifts > Goliaths > Barrows. Ring: Onyx (i) > Other Imbued Rings > Tokkul-Zo > Archer's Ring > Ring of Life. Ammo: Ruby bolts until last phase, then Diamond bolts. Anyone found to be using broad bolts will be warned, then kicked. Cape: Completionists > Ava's device Aura: Sharpshooter = Poison Purge = Penance. MELEE SWITCH RECCOMENDATIONS: For claw speccing, or meleeing while she uses deflect range, the following switches to improve accuracy/damage are recommended: Helm: Fighter Helm > Warrior = Nezzy > other melee helms Boots: Steadfasts > Dragoon boots > other melee boots Gloves: (If using Swift Gloves): Goliaths > Barrows Ring: Vigour > Zerker (i) = Warrior (i) Special Weapon: Dragon Claws > Armadyl Godsword. Cape: Tokhaar > Fire > Other Void Setup: If you wish to use void range, you will require the following, melee switches are in (brackets) if you require full void without deflector for the melee switch, it will have a * next to it. Helm: Void Range (Void melee helm) Amulet: Fury/Glory Top: Pernx > Armadyl > Royal=Karils (Elite void top) Legs: Elite Void Robe Legs Boots: Glaiven > Ranger > Snakeskin (Steadfasts > Dragon) Main Weapon: Chaotic Crossbow (Chaotic maul* = Chaotic Longsword & Dragon Defender* > Chaotic Rapier & Dragon defender*) Shield: Void Deflector. Special Weapon: (Dragon Claws* > Armadyl Godsword*) Gloves: Void Gloves Ring:Onyx (i) > Other Imbued > Tokkul-Zo > Archer's Ring (Ring of Vigour > Warrior Ring = Berserker Ring) Ammo: Ruby/Diamond bolts Requirements To fight Nex, you must first gather the 4 Frozen Key pieces, these are dropped by monsters in the 4 God chambers, but NOT the Generals/minions! Due to recent updates, Nex can now use the Deflect Missiles Curse, which nullifies the use of ranged weapons, forcing you to enter her melee distance, due to this update, it is required for everyone to bring a melee weapon: Chaotic Maul = Chaotic Longsword > Rapier > Godsword > Goliaths=Whip We hope to see you there, and maybe get a few nice splits as well! :thumbsup:
  12. Just realised I didn't save one of mine for sunfreet, is it actually difficult? [/offtopic] My plan didn't work, got my 4 Nex kills & 4m though.
  13. #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.
  14. Boxing simulator I wrote for lols below: [hide=Some code] #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!') Boxing simulator I just wrote, runs in Python 3.2 :) [/hide]
  15. I have an awesome plan, I'll edit this with a video when it's done. :)
  16. Before the mass phat crash occours, please read:
  17. Used darts on my pure for QBD: 1: Royal Bolt Stabaliser (+ journal1) 2: Junk- Rune bar and 26 Earth Tallies(+Journal2) 3: Royal Sight(+journal3) 4: Yew Logs x300 (NO JOURNAL FFUUUUU)
  18. Are we sure she's playing a different character, or is he simply meeting her earlier in her lifetime? I'm kind of hoping different character, because knowing someone's demise months/ a year in advance, and not being able to tell them? That sucks.I'll try & find the article or whatever it was that I read it in.
  19. Shameful. All of you, Youtube, NOW.
  20. Same actor, different part. I guess they liked her acting. :lol:
  21. Saw it, that was actually a sad ending. But we get that weird person who was actually a dalek as the new companion apparently.
  22. You only posted those pictures to make me sad. :(
  23. 1500 kills, 170 shards, 2 ragefire boots and 1 steads. What a troll. I WANT MY HOVER BOOTS DROP ALREADY! Edit: [bleep] 100M box, I was 300 vs him redbarred.
  24. I have to skip this page, not seen it yet. :sad:
  25. What do you mean "Wat"? That's the best nickname ever. Not quite what I expected. :lol:

Important Information

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.