Snippets

Peter Finlayson Diablo 4 Prototype

Created by Peter Finlayson
#!/bin/bash
level=1; gear=0; while true; do echo -n "You are level $level and have tier $gear equipment. Press enter to hit a monster."; read; echo "You killed the monster" ; [[ $((RANDOM % 5)) -eq 0 ]] && echo WOW, you found cool L00T && ((gear++)); ((level++)); done

# History: diablo has always been about gear hunting
# [1:21:44 PM] frnknstn6474999: HEY, DIABLOPLAYERS! Can you play offline?
# [1:22:00 PM] Leon: i don't think you can
# [1:22:06 PM] Leon: at least the auction house is gone
# [1:22:39 PM] frnknstn6474999: yeah...
# [1:23:05 PM] Leon: to be fair there are plenty of diablo2emups that are not online
# [1:23:12 PM] Leon: that victor vran looked like fun
# [1:23:24 PM] Leon: don't worry peter ill still play laggy dota with you
# [1:24:07 PM] Gareth  Brackenridge: no its online, however that said single player you probably won't even notice that lag
# [1:24:24 PM] frnknstn6474999: Really? Like 2000ms?
# [1:24:30 PM] Gareth  Brackenridge: yup
# [1:24:32 PM] frnknstn6474999: is there a demo?
# [1:24:36 PM] Gareth  Brackenridge: yup
# [1:24:55 PM] Gareth  Brackenridge: can play act one up tot he first boss for free
# [1:24:57 PM] frnknstn6474999: is the game longer than SC2?
# [1:25:13 PM] Gareth  Brackenridge: depends
# [1:25:20 PM] Gareth  Brackenridge: you can finish he story i couple hours
# [1:25:43 PM] Gareth  Brackenridge: but diablo has always been about gear hunting

# Todo:
# Trap Ctrl-C, because people can't seem to stop playing Diablo

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.