-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshooter.wpu
5406 lines (5406 loc) · 330 KB
/
shooter.wpu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!wing
#!version=4.0
##################################################################
# Wing IDE project file : User-specific branch #
##################################################################
[user attributes]
cache.last-mime-type = {loc('unknown:<untitled> #45'): 'text/x-diff'}
debug.breakpoints = {loc('../../../../Python27/Lib/lib-tk/Tkinter.py'): {430: (0,
None,
1,
0)},
loc('shooter fooling/grid list.py'): {13: (0,
None,
1,
0)}}
debug.err-values = {loc('main.py'): {}}
debug.run-args = {loc('../YT Grabber/grabber.py'): '"http://www.youtube.com/'\
'watch?v=5BCVLRPQUnY"'}
debug.show-args-dialog = {loc('../Alarm/alarm.py'): False,
loc('../pygame tests/grid test/astar.py'): False,
loc('../pygame tests/grid test/grid test.py'): False,
loc('Squares 2/main.py'): False,
loc('constants.py'): False,
loc('lineCounter.py'): False,
loc('main.py'): False,
loc('shooter fooling/decorators.py'): False,
loc('shooter fooling/grid list.py'): False,
loc('shooter fooling/grid optim.py'): False,
loc('tests.py'): False,
loc('tools.py'): False,
loc('untitled-1.html'): False,
loc('../Stack Overflow answers/list focus.py'): False,
loc('../Stack Overflow answers/list foucx 2.py'): False,
loc('../Stack Overflow answers/my pygame sprite wont move.py'): False,
loc('../Stack Overflow answers/reddit answerso/event findef.py'): False,
loc('../Stack Overflow answers/write to a temple.py'): False,
loc('../Tests/pygame tests/grid test/astar with units.py'): False,
loc('../Tests/pygame tests/grid test/astar.py'): False,
loc('../image testing/imaging.py'): False,
loc('../pygame tests/bbox.py'): False,
loc('../../../../Users/Mark/Desktop/secgoat/his pong.py'): False,
loc('unknown:<untitled> #46'): False}
debug.var-col-widths = [0.39787798408488062,
0.60212201591511938]
guimgr.overall-gui-state = {'windowing-policy': 'combined-window',
'windows': [{'name': 'o2qrKxoP1bgtFsLPs82qBclQ22'\
'JLBN7l',
'size-state': '',
'type': 'dock',
'view': {'area': 'tall',
'constraint': None,
'current_pages': [4,
2],
'full-screen': False,
'notebook_display': 'normal',
'notebook_percent': 0.20731070496083548,
'override_title': None,
'pagelist': [('debug-stack',
'tall',
1,
{}),
('indent',
'tall',
2,
{}),
('project',
'tall',
0,
{'tree-state': {'file-sort-method': 'by name',
'list-files-first': False,
'tree-states': {'deep': {'column-widths': [1.0],
'expanded-nodes': [],
'selected-nodes': [(16,)],
'top-node': (0,)}},
'tree-style': 'deep'}}),
('refactoring',
'tall',
0,
{}),
('snippets',
'tall',
0,
{'tree-states': {'__all__': [],
u'c': [],
u'django': [],
u'html': [],
u'py': []}}),
('source-assistant',
'tall',
2,
{'docstring-during-complete': False,
'wrap-lines': True}),
('browser',
'tall',
0,
{'all_tree_states': {u'By Module': {'column-w'\
'idths': [1.0],
'expanded-nodes': [],
'selected-nodes': [],
'top-node': [('generic attribute',
loc('actors.py'),
'')]}},
'browse_mode': u'By Module',
'follow-selection': False,
'sort_mode': 'Alphabetically',
'visibility_options': {u'Derived Classes': False,
u'Imported': False,
u'Modules': True}}),
('uses',
'tall',
0,
{})],
'primary_view_state': {'area': 'wide',
'constraint': None,
'current_pages': [4,
1],
'notebook_display': 'normal',
'notebook_percent': 0.27387198321091288,
'override_title': None,
'pagelist': [('bookmarks',
'wide',
1,
{}),
('debug-breakpoints',
'wide',
0,
{'tree-state': []}),
('debug-io',
'wide',
1,
{'attrib-starts': [],
'first-line': 70,
'folded-linenos': [],
'sel-line': 76,
'sel-line-start': 1669,
'selection_end': 1669,
'selection_start': 1669}),
('debug-probe',
'wide',
2,
{'attrib-starts': [],
'first-line': 61,
'folded-linenos': [],
'history': {None: [],
u'file:C:/Programming/Python/Project/APIs/reddit API/gonewild.py': [''\
'text\n',
'`text`\n',
'`text`[-2:]\n',
'`text`[-1:]\n',
'`text`[]\n',
'`text`[:]\n',
'j.keys()\n',
"j['data'].keys()\n",
"j['data']['children'].keys()\n",
"len(j['data']['children'])\n",
'stories\n',
'pp2(stories)\n',
"qwe = redditAPI.subredditInfo(client, 500, 'funny')\n",
'len qwe\n',
'len(qwe)\n',
'gw_user\n',
'fun_user\n'],
u'file:C:/Programming/Python/Project/APIs/reddit API/redditAPI.py': [''\
'r\n',
'r.content\n',
'r.text\n'],
u'file:C:/Users/Mark/Desktop/winGuiAuto.py': [""\
"os.startfile('chrome')\n",
"findTopWindow(wantedClass='Chrome')\n",
"findTopWindow(wantedText='chrome')\n",
"chrome = findTopWindow(wantedText='chrome')\n",
"activateMenuItem(chrome, 'settings')\n",
"activateMenuItem(chrome, 'customize')\n",
"activateMenuItem(chrome, 'file')\n",
"os.startfile('notepad')\n",
"findTopWindow(wantedClass='notepad')\n",
"findTopWindow(wantedText='notepad')\n",
"np = findTopWindow(wantedText='notepad')\n",
'getTopMenu(np)\n',
'getTopMenu(chrome)\n',
'getListboxItems(chrome)\n',
'findControl(chrome)\n',
'findControls(chrome)\n',
'ctrls = findControls(chrome)\n',
"findControls(chrome, wantedText='Customize and control Google Chrom"\
"e')\n",
"findControls(chrome, wantedText='Customize')\n",
"findControls(chrome, wantedText='customize')\n",
"findControls(chrome, wantedText='settings')\n",
"findControls(chrome, wantedText='file')\n",
"findControls(chrome, wantedText='help')\n",
"findControls(chrome, wantedText='about')\n",
"findControls(chrome, wantedClass='about')\n",
"findControls(chrome, wantedClass='Button')\n",
"findControls(chrome, wantedClass='settings')\n",
's\n'],
u'file:c:/Programming/Python/Project/APIs/Facebook API/first.py': [''\
'print uri\n',
'import facebook\n',
'help(facebook)\n',
'facebook.FacebookAPI(app_id, app_sec)\n',
'f = facebook.FacebookAPI(app_id, app_sec)\n',
"f = facebook.FacebookAPI(app_id, app_sec, 'localhost:8080')\n",
"auth_url = f.get_auth_url(scope=['publish_stream', 'user_photos', '"\
"user_status'])\n",
"print 'Connect with Facebook via: %s' % auth_url\n",
"access_token = f.get_access_token(code)\n\nfinal_access_token = acc"\
"ess_token['oauth_token']\n\n",
'f\n',
'f.get_access_token()\n',
'f.redirect_uri\n',
'f.make_qs\n',
'f.make_qs()\n',
'f.get_auth_url\n',
'f.get_auth_url()\n',
'import cgi.parse_qs\n',
'import cgi\n\n',
'cgi.parse_qs(qs)\n',
'import cgi\n',
'cgi.parse_qs(qs_url)\n',
'd = cgi.parse_qs(qs_url)\n',
'd = cgi.parse_qsl(qs_url)\n',
'd\n',
'd.keys()\n',
"code = r'AQBPhYb0mRTKgxTAOPC0WOxei6ulm-h35u8yWista-9E3XdtPOy32cYheU"\
"2JWbBY7D-qvFL6Sj7wEKGaEQZC30zkPhtbbK7Jdjj7FnRMJQKsOuz7gIq7CTIBVO-iO"\
"ug2HRWAyLglj2v5Uz7lTP0dAeamRI88MgmtHCIESDPpbaBQDSPmDevgenLFxY5LyLlk"\
"JJc'\n",
'self.headers\n',
'access_token = f.get_access_token(code)\n',
'access_token = get_access_token(code)\n',
'response\n'],
u'file:c:/Programming/Python/Project/APIs/win32 API/iexplorerfirst.py': [''\
'wnd.ActivateFrame()\n',
'wnd.BringWindowToTop()\n',
'wnd.DestroyWindow()\n',
'wnd.SetActiveWindow()\n',
'help(wnd.GetSafeHwnd())\n',
'help(wnd.GetSafeHwnd)\n',
'hwnd = wnd.GetSafeHwnd()\n',
'hwnd\n',
'win32gui.EnumChildWindows()\n',
"win32gui.EnumChildWindows(hwnd, print, 'File')\n",
"win32gui.EnumChildWindows(hwnd, help, 'File')\n",
'def names(hwnd, third):\n print win32gui.GetWindowText(hwnd)\n\n',
"def names(hwnd, third):\n if win32gui.GetWindowText(hwnd) == 'Addre"\
"ss Combo Control':\n print win32gui.GetWindowText()\n\n",
"ile')\ndef names(hwnd, third):\n if 'Add' in win32gui.GetWindowText"\
"(hwnd):\n print win32gui.GetWindowText()\n\n",
"\ndef names(hwnd, third):\n if 'Add' in win32gui.GetWindowText(hwnd"\
"):\n print win32gui.GetWindowText()\n\n",
"win32gui.EnumChildWindows(hwnd, names, 'File')\n",
"print win32gui.EnumChildWindows(hwnd, names, 'File')\n",
"type(win32gui.EnumChildWindows(hwnd, names, 'File'))\n",
"type(win32gui.EnumChildWindows(wnd.GetSafeHwnd(), names, 'File'))\n",
"win32gui.EnumChildWindows(wnd.GetSafeHwnd(), names, 'File')\n\n",
"\ndef names(hwnd, third):\n #if 'Add' in win32gui.GetWindowText(hwn"\
"d):\n print win32gui.GetWindowText()\n\n",
'wnd.GetWindowText\n',
'wnd.GetWindowText()\n',
"\ndef names(hwnd, third):\n if 'Add' in win32gui.GetWindowText(hwnd"\
"):\n print win32gui.GetWindowText(hwnd)\n\n",
"ret = win32gui.EnumChildWindows(wnd.GetSafeHwnd(), names, 'File')\n",
'ret\n',
'lists = []\n',
"\ndef names(hwnd, third):\n if 'Navigation' in win32gui.GetWindowTe"\
"xt(hwnd):\n print win32gui.GetWindowText(hwnd)\n lists.append(h"\
"wnd)\n\n",
"win32gui.EnumChildWindows(wnd.GetSafeHwnd(), names, 'File')\n",
'lists\n',
"\ndef names(hwnd, third):\n #if 'Add' in win32gui.GetWindowText(hwn"\
"d):\n print win32gui.GetWindowText(hwnd)\n\n",
"win32gui.EnumChildWindows(lists[0], names, 'File')\n",
'wnd.GetSafeHwnd()\n',
'win32gui.GetWindowText(lists[0])\n',
'wnd\n',
"win32gui.SetWindowText('hey', wnd)\n",
'win32gui.SetWindowText(wnd)\n',
"win32gui.SetWindowText(wnd, 'HEY')\n"],
u'file:c:/Programming/Python/Project/Email/email1.py': [''\
'help(server.login(\n))\n',
'help(server.login)\n'],
u'file:c:/Programming/Python/Project/IGN/IGN scrapper.py': [""\
"soup.findAll('div')\n",
"soup.findAll('text'\n)\n",
"soup.findAll(name='div')\n",
"soup = BeautifulSoup(requests.get(r'http://www.ca.ign.com/articles/"\
"2012/05/22/ghost-recon-future-soldier-').text)\n",
'soup.prettify()\n',
'print soup.prettify()\n',
"soup.findAll('p')\n",
"txt = soup.findAll('p')\n",
"for ent in txt:\n print ent.replace('\xc3\x94\xc3\x87\xc3\x96', '\\"\
"'')\n\n",
'dir(txt[0])\n',
'dir(txt[0].contents)\n',
'print txt[0].contents\n',
"for ent in txt:\n print ent.contents[0].replace('\xc3\x94\xc3\x87\xc3"\
"\x96', '\\'')\n\n",
"for ent in txt:\n print ent.contents[0].replace('\\u2019', '\\'')\n"\
"\n",
'pp2(txt)\n',
'pp2(txt[0])\n',
'print txt[0]\n',
'line = txt[0]\n',
'line\n',
'type(line)\n',
'line.contents\n',
'line.contents[0]\n',
'string = line.contents[0]\n',
'string\n',
'print string\n',
"unicode(u'\\u2019')\n",
"print unicode(u'\\u2019')\n",
'soup\n',
'import unicodedata as ud\n',
"ud.name('\xe2\x80\x99')\n",
"ud.name(u'\\u2019')\n",
'import sys\n',
'sys.stdout.ec\n',
'sys.stdout.encoding\n',
"ord('\\'')\n",
"ord('\xe2\x80\x99')\n",
"unicode('\xe2\x80\x99')\n",
"print '\xe2\x80\x99'\n",
"qwe = '\xe2\x80\x99'\n",
'type(qwe)\n',
'print qe\n',
'print qwe\n',
'`qwe`\n',
"qwe.decode('ascii')\n",
"qwe.decode('utf-8')\n",
"qwe.decode('utf-8').enconde('cp850')\n",
"qwe.decode('utf-8').encode('cp850')\n",
"u'\\u2019'.encode('cp850')\n",
"u'\\u2019'.encode('cp850', errors='REPLACE')\n",
"u'\\u2019'.encode('cp850', errors='replace')\n",
"u'\\u2019'.encode('cp850', errors='ignore')\n",
"u'\\u2019'.decode('cp850', errors='ignore')\n",
"help(''.encode)\n",
"help(''.decode)\n",
"u'\\u2019'.decode()\n",
"u'\\u2019'.decode(errors='ignore')\n",
"u'\\u2019'.encode(errors='ignore')\n",
"html = '<a href=\"http://www.ign.com/articles/2012/05/22/ghost-reco"\
"n-future-soldier-review\">Review</a>'\n",
"soup.findAll('a')\n",
"bowl = soup.findAll('a')\n",
"bowl = soup.findAll('a')[0]\n",
'bowl.text\n',
"html = r'\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transition"\
"al//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\""\
">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\"\n "\
" xmlns:og=\"http://ogp.me/ns#\"\n xmlns:fb=\"http://www.fac"\
"ebook.com/2008/fbml\">\n<head>\n <!-- Optimizely -->\n<script sr"\
"c=\"//cdn.optimizely.com/js/2953003.js\"></script>\n\n <title>Xb"\
"ox 360 Game Reviews: Latest Xbox 360 Games - IGN</title>\n<meta htt"\
"p-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n<"\
"meta name=\"description\" content=\"IGN has expert reviews, includi"\
"ng video reviews, for the latest games on Xbox 360. Find out which "\
"games are the best\" />\n<meta name=\"robots\" content=\"noindex\" "\
"/>\n<meta name=\"copyright\" content=\"IGN Entertainment, Inc.\" />"\
"\n<link rel=\"canonical\" href=\"http://www.ign.com/games/reviews/x"\
"box-360\" />\n <meta property=\"og:image\" content=\"http://oyst"\
"atic.ignimgs.com/src/core/img/widgets/global/page/ign-logo-100x100."\
"jpg\" />\n<meta property=\"og:site_name\" content=\"IGN\" />\n<meta"\
" property=\"fb:app_id\" content=\"115982828429116\" />\n\n\n \n "\
" <link href=\"http://oystatic.ignimgs.com/cache/css/0e/4a/0e4a056"\
"04ea71f8841019a3bc6581d19.css\" media=\"screen\" rel=\"stylesheet\""\
" type=\"text/css\" /> <link href=\"http://oystatic.ignimgs.com/s"\
"rc/ignmedia/css/default/print.css\" media=\"print\" rel=\"styleshee"\
"t\" type=\"text/css\" />\n\n\n <!--[if lt IE 9]>\n <link "\
"rel=\"stylesheet\" type=\"text/css\" href=\"http://oystatic.ignimgs"\
".com/src/core/css/lib/ie.css\"/>\n <![endif]-->\n <link r"\
"el=\"shortcut icon\" type=\"image/x-icon\" href=\"http://media.igni"\
"mgs.com/media/ign/favicon.ico\"/>\n <link rel=\"apple-touch-icon"\
"\" type=\"image/png\" href=\"http://media.ignimgs.com/media/ign/app"\
"le-touch-icon.png\"/>\n<script type='text/javascript'>\n(function()"\
" {\nvar useSSL = 'https:' == document.location.protocol;\nvar src ="\
" (useSSL ? 'https:' : 'http:') +\n'//www.googletagservices.com/tag/"\
"js/gpt.js';\ndocument.write('<scr' + 'ipt src=\"' + src + '\"></scr"\
"' + 'ipt>');\n})();\n</script>\n<script type=\"text/javascript\" sr"\
"c=\"http://c08.oos4l.com/a/e/s22601\"></script>\n\n<!--[if lt IE 9]"\
">\n<script src=\"http://html5shiv.googlecode.com/svn/trunk/html5.js"\
"\"></script>\n<![endif]-->\n <script>\n var IGN = IGN"\
" || {};\n IGN.pagetype = \"section\";\n </script>\n <scrip"\
"t type=\"text/javascript\" src=\"http://oystatic.ignimgs.com/cache/"\
"js/fe/3a/fe3a9f127bd18f7115c4031b680d2b40.js\"></script>\n<script t"\
"ype=\"text/javascript\" src=\"http://cdn.mediative.ca/a/mediative/m"\
"universal.js\"></script>\n<script type=\"text/javascript\" src=\"ht"\
"tp://cdn.mediative.ca/a/mediative/sites/ign.js\"></script><script t"\
"ype=\"text/javascript\">$j=jQuery;</script><script>\nvar igndrones "\
"= igndrones || {};\nigndrones.async = igndrones.async || [];\nigndr"\
"ones.async.push(function() {\n igndrones.init({\"audience\":{\"c"\
"sid\":\"C07583\",\"property\":\"ign\",\"pagetype\":\"section\",\"to"\
"pic_xbox-360\":\"yes\"},\"chartbeat\":{\"uid\":\"21105\",\"domain\""\
":\"ign.com\",\"sections\":\"Desktop Web,games\"},\"comscore\":{\"c2"\
"\":\"3000068\"},\"ga\":{\"account_number\":\"UA-23541058-1\",\"_set"\
"DomainName\":\".ign.com\",\"custom_vars\":[[1,\"pagetype\",\"sectio"\
"n\",3],[12,\"categories\",\"games\",3],[13,\"tags\",\"reviews\",3],"\
"[15,\"action\",\"reviews-games\",3],[16,\"controller\",\"v2games\","\
"3],[17,\"module\",\"default\",3],[18,\"resource\",\"games\",3],[20,"\
"\"is-community\",\"no\",3],[21,\"signed-in\",\"no\",2],[22,\"subscr"\
"iber\",\"no\",1],[35,\"platform-tags\",\"xbox-360\",3]]}});\n ig"\
"ndrones.fireTop();\n});\n</script></head>\n\n<body><script>MUNIVERS"\
"AL.setPage(\"xbox_360\");</script>\n\n<div id=\"sugarad-1x1\"> <scr"\
"ipt type=\"text/javascript\"> var slot1x1 = googletag.display(\"sug"\
"arad-1x1\");</script> </div>\n<!-- START STITIAL OVERLAY -->\n<div "\
"id=\"sugarad-stitial-overlay\">\n <div id=\"sugarad-stitial-cont"\
"ainer\">\n <div id=\"sugarad-stitial-header\">\n "\
"<a href=\"http://www.ign.com\"><img id=\"sugarad-stitial-header-log"\
"o\" src=\"http://media.ignimgs.com/media/ign/stitials/ign_stitial_l"\
"ogo.png\" /></a>\n <div id=\"sugarad-stitial-header-text"\
"\"><a href=\"#\" onclick=\"SugarAds.hideStitial('sugarad-stitial-ov"\
"erlay'); return false;\">Continue to <script>document.write(documen"\
"t.title);</script> »</a></div>\n </div>\n \n "\
" <div id=\"sugarad-stitial-disable\"><a href=\"http://login.ign"\
".com/prime/landing\">Learn how to disable this ad »</a></div>"\
"\n </div>\n</div>\n<!-- END STITIAL OVERLAY -->\n<header id=\"ig"\
"nHeaderHeader\">\n <div id=\"ignHeader\" class=\"clear\">\n "\
" <div class=\"fixed\">\n <div id=\"ignHeader-userBar\""\
">\n <div class=\"container\">\n <"\
"div class=\"headerTools\">\n\t\t\t\t\t\t<ul id=\"ignHeader-profileL"\
"inks\">\n\t\t\t\t\t\t\t<li class=\"profileLink-item\"><a href=\"htt"\
"p://my.ign.com/prime/hub\" class=\"profileLink-link prime\">Prime</"\
"a></li>\n\t\t\t\t\t\t\t<li id=\"ignHeader-newsFeed\" class=\"profil"\
"eLink-item\">\n <span class=\"profil"\
"eLink-link newsFeed\">Newsfeed<span class=\"arrow\"></span></span>\n"\
" <div class=\"headerNotificationCoun"\
"t\"></div>\n <div class=\"headerNoti"\
"ficationList\">\n <div class=\"n"\
"otificationListHeader\">Latest</div>\n "\
" <div class=\"headerNotificationListContent\"></div>\n "\
" <div class=\"viewNewsFeed\">\n "\
" <a href=\"http://my.ign.com\">View "\
"My Newsfeed »</a>\n </div>"\
"\n </div>\n "\
" </li>\n <li id=\"ignHeader-userTools\""\
" class=\"profileLink-item\"></li>\n <li "\
"class=\"profileLink-item\">\n <!-- S"\
"TART: search bar -->\n <form method"\
"=\"GET\" name=\"search\" id=\"ignHeader-searchForm\" class=\"ignHea"\
"der-searchForm\" action=\"javascript:IGNheader.Search();\">\n "\
" <input type=\"text\" maxlength=\"60\""\
" id=\"ignHeader-search\" placeholder=\"Search\" size=\"20\" name=\""\
"query\" autocomplete=\"off\"/>\n "\
" <div id=\"ignHeader-searchIcon\" onclick=\"javascript:IGNheader."\
"Search();\"></div>\n </form>\n "\
" <!-- END: search bar -->\n "\
" </li>\n\t\t\t\t\t\t</ul>\n </div>"\
"\n <a id=\"ignHeader-logo\" href=\"http://www.ig"\
"n.com\"></a>\n </div>\n <script type="\
"\"text/javascript\">\n try{\n "\
" var evoRenderDomain=\"widgets.ign.com\";\n "\
" var myIGNDomain = \"my.ign.com\";\n IGNh"\
"eader.Init();\n }catch(err){};</script>\n "\
" </div>\n </div>\n <div id=\"ignHeader-navigation"\
"\">\n <div class=\"container\">\n "\
" <ul class=\"ignHeader-navLinks\">\n "\
" <li id=\"nav-home\" class=\"ignHeader-navItem\">\n "\
" <a href=\"http://www.ign.com\"></a>\n "\
" </li>\n <li id=\"navItem-xbox-"\
"360\" class=\"ignHeader-navItem\">\n <a class=\""\
"xbox-360\" href=\"http://www.ign.com/xbox-360\">Xbox 360</a>\n "\
" </li>\n <"\
"li id=\"navItem-ps3\" class=\"ignHeader-navItem\">\n "\
" <a class=\"ps3\" href=\"http://www.ign.com/ps3\">PS3</a>\n "\
" </li>\n "\
"<li id=\"navItem-wii-u\" class=\"ignHeader-navItem\">\n "\
" <a class=\"wii-u\" href=\"http://www.ign.com/wii-u\">Wii U<"\
"/a>\n </li>\n "\
" <li id=\"navItem-pc\" class=\"ignHeader-navItem\">\n "\
" <a class=\"pc\" href=\"http://www.ign.com/pc\">PC</a>"\
"\n </li>\n "\
" <li id=\"navItem-vta\" class=\"ignHeader-navItem\">\n "\
" <a class=\"vita\" href=\"http://www.ign.com/ps-vita\">V"\
"ita</a>\n </li>\n "\
" <li id=\"navItem-ds\" class=\"ignHeader-navItem\">\n "\
" <a class=\"ds\" href=\"http://www.ign.com/ds\">3D"\
"S</a>\n </li>\n "\
" <li id=\"navItem-wireless\" class=\"ignHeader-navItem\">"\
"\n <a href=\"http://www.ign.com/wireless\">iPhon"\
"e</a>\n </li>\n "\
" <li id=\"navItem-tech\" class=\"ignHeader-navItem\">\n "\
" <a href=\"http://www.ign.com/tech\">Tech</a>\n "\
" </li>\n "\
" <li id=\"navItem-movies\" class=\"ignHeader-navItem\">\n "\
" <a href=\"http://www.ign.com/movies\">Movies</a>\n "\
" </li>\n <li"\
" id=\"navItem-tv\" class=\"ignHeader-navItem\">\n "\
" <a href=\"http://www.ign.com/tv\">TV</a>\n "\
" </li>\n <li id=\"navItem-co"\
"mics\" class=\"ignHeader-navItem\">\n <a href=\""\
"http://www.ign.com/comics\">Comics</a>\n "\
" </li>\n <li id=\"navItem-review"\
"s\" class=\"ignHeader-navItem\">\n <a class=\"re"\
"views\" href=\"http://www.ign.com/games/reviews?filter=latest\">Rev"\
"iews</a>\n </li>\n "\
" <li id=\"navItem-guides\" class=\"ignHeader-navItem\""\
">\n <a href=\"http://www.ign.com/wikis\">Wikis &"\
"amp; Cheats</a>\n </li>\n "\
" <li id=\"navItem-upcoming\" class=\"ignHeader-"\
"navItem\">\n <a href=\"http://www.ign.com/games/"\
"upcoming\">Upcoming</a>\n </li>\n"\
" <li id=\"navItem-news\" class=\"ignHead"\
"er-navItem\">\n <a href=\"http://www.ign.com/art"\
"icles\">News</a>\n </li>\n "\
" <li id=\"navItem-video\" class=\"ignHeader-na"\
"vItem\">\n <a href=\"http://www.ign.com/videos\""\
">Videos</a>\n </li>\n "\
" <li id=\"navItem-boards\" class=\"ignHeader-navIte"\
"m\">\n <a href=\"http://www.ign.com/boards\">Boa"\
"rds</a>\n </li>\n "\
" <li id=\"navItem-more\" class=\"ignHeader-navItem\">\n"\
" <a class=\"navLink\" href=\"#\"></a>\n "\
" <ul id=\"ignHeader-moreDropdown\""\
">\n <li>"\
"\n <a href=\"http://www.ign.com/i"\
"pl\">IGN Pro League</a>\n </li>\n "\
" <li>\n "\
" <a href=\"http://www.ign.com/blogs\""\
">Blogs</a>\n </li>\n "\
" <li>\n "\
" <a href=\"http://www.ign.com/index/podcasts.html\""\
">Podcasts</a>\n </li>\n "\
" <li>\n "\
" <a href=\"http://www.ign.com/blu-ray\">Blu-ray"\
"</a>\n </li>\n "\
" <li>\n "\
" <a href=\"http://gamesites.ign.com\">Games Sites</a>\n "\
" </li>\n "\
" <li>\n "\
" <a href=\"http://www.ign.com/stars\">Stars</a>\n "\
" </li>\n "\
" </ul>\n </li>\n "\
" </ul>\n </div>\n </div>\n "\
" </div>\n</header>\n\n<div class=\"preShell\">\n <div class=\"ad"\
"_placement ad_leaderboard noprint\">\n <div id=\"sugarad-728"\
"x90\" class=\"sugarad\">\n "\
" <script type='text/javascript'>\n "\
" MUNIVERSAL.spot({ position: \"atf\", width: 728, h"\
"eight: 90 });\n </script"\
">\n </div> </div>\n \n"\
" </div>\n<div class=\"shell container-content-main\">\n <div "\
"class=\"inc-vertNav\">\n </div>\n <div class=\"contai"\
"ner_24 clear\">\n <div class=\"grid_16\">\n <h1 class=\"s"\
"ubheader_24\"> Xbox 360 Game Reviews</h1>\n <div class=\"lis"\
"tTabs clear\">\n <div class=\"tab first selected\">\n "\
" <h2><a href=\"/games/reviews/xbox-360\">All Reviewed G"\
"ames</a></h2>\n </div>\n <div class=\"tab\">\n"\
" <h2><a href=\"/games/editors-choice/xbox-360\">Edit"\
"ors' Choice Games</a></h2>\n </div>\n <div cl"\
"ass=\"link-games\"><a href=\"/games/xbox-360\">All Xbox 360 Games &"\
"raquo;</a></div>\n </div>\n <div class=\"list-filters"\
" clear grid_16 alpha\">\n <div id=\"filters-releaseDropd"\
"own\">\n <div class=\"dropdown-label\">Reviewed:</di"\
"v>\n <div id=\"releaseDropdown\" class=\"dropdown\">"\
"\n <div class=\"dropdown-arr"\
"ow\"><span></span></div>\n <span class=\"dropdow"\
"n-selected\">Any Time</span>\n <ul class=\"dropd"\
"own-list\">\n <li><a"\
" class=\"release-filter selected\" href=\"/games/reviews/xbox-360?s"\
"ortBy=reviewDate&sortOrder=desc\">Any Time</a></li>\n "\
" <li>\n "\
" <a class=\"dropdown-filter\" href=\"/games"\
"/reviews/xbox-360?sortBy=reviewDate&sortOrder=desc&time=7d\">\n "\
" Last 7 Days "\
"</a>\n </li>\n "\
" <li>\n "\
" <a class=\"dropdown-filter\" href=\"/games/reviews/xbox-36"\
"0?sortBy=reviewDate&sortOrder=desc&time=1m\">\n "\
" Last Month </a>\n "\
" </li>\n "\
" <li>\n <a class"\
"=\"dropdown-filter\" href=\"/games/reviews/xbox-360?sortBy=reviewDa"\
"te&sortOrder=desc&time=3m\">\n Last "\
"3 Months </a>\n <"\
"/li>\n "\
" <li>\n <a class=\"dropdown-fi"\
"lter\" href=\"/games/reviews/xbox-360?sortBy=reviewDate&sortOrder=d"\
"esc&time=6m\">\n Last 6 Months "\
" </a>\n </li>\n "\
" <li"\
">\n <a class=\"dropdown-filter\" href=\""\
"/games/reviews/xbox-360?sortBy=reviewDate&sortOrder=desc&time=12m\""\
">\n Last 12 Months "\
" </a>\n </li>\n "\
" </ul>\n </div>\n "\
"</div>\n <div id=\"filters-genreDropdown\">\n "\
" <div class=\"dropdown-label\">Genre:</div>\n <d"\
"iv id=\"genreDropdown\" class=\"dropdown\">\n <d"\
"iv class=\"dropdown-arrow\"><span></span></div>\n "\
" <span class=\"dropdown-selected\">All</span>\n "\
" <ul class=\"dropdown-list\">\n "\
" <li><a class=\"release-filter selected\" href=\"/games/"\
"reviews/xbox-360?sortBy=reviewDate&sortOrder=desc\">All</a></li>\n "\
" "\
" <li><a class=\"dropdown-filter\" href=\"/games/reviews/xbox-360"\
"?sortBy=reviewDate&sortOrder=desc&genre=action\">Action</a></li>\n "\
" "\
" <li><a class=\"dropdown-filter\" href=\"/games/reviews/xbox-360"\
"?sortBy=reviewDate&sortOrder=desc&genre=adventure\">Adventure</a></"\
"li>\n "\
" <li><a class=\"dropdown-filter\" href=\"/games/reviews/xb"\
"ox-360?sortBy=reviewDate&sortOrder=desc&genre=fighting\">Fighting</"\
"a></li>\n "\
" <li><a class=\"dropdown-filter\" href=\"/games/review"\
"s/xbox-360?sortBy=reviewDate&sortOrder=desc&genre=music\">Music</a>"\
"</li>\n "\
" <li><a class=\"dropdown-filter\" href=\"/games/reviews/"\
"xbox-360?sortBy=reviewDate&sortOrder=desc&genre=rpg\">RPG</a></li>\n"\
" "\
" <li><a class=\"dropdown-filter\" href=\"/games/reviews/xbox-36"\
"0?sortBy=reviewDate&sortOrder=desc&genre=racing\">Racing</a></li>\n"\
" "\
" <li><a class=\"dropdown-filter\" href=\"/games/reviews/xbox-36"\
"0?sortBy=reviewDate&sortOrder=desc&genre=shooter\">Shooter</a></li>"\
"\n "\
" <li><a class=\"dropdown-filter\" href=\"/games/reviews/xbox-"\
"360?sortBy=reviewDate&sortOrder=desc&genre=sports\">Sports</a></li>"\
"\n "\
" <li><a class=\"dropdown-filter\" href=\"/games/reviews/xbox-"\
"360?sortBy=reviewDate&sortOrder=desc&genre=strategy\">Strategy</a><"\
"/li>\n </ul>\n "\
" </div>\n </div>\n <ul class=\"platform-"\
"filters\">\n <li><a class=\"release-"\
"filter\" href=\"/games/reviews?sortBy=reviewDate&sortOrder=desc\">A"\
"ll</a></li>\n <li>\n"\
" <a class=\"release-filter selected\" href=\"/ga"\
"mes/reviews/xbox-360?sortBy=reviewDate&sortOrder=desc\">Xbox 360</a"\
">\n </li>\n "\
" <li>\n <a class=\"release-filter\" href=\""\
"/games/reviews/ps3?sortBy=reviewDate&sortOrder=desc\">PS3</a>\n "\
" </li>\n "\
"<li>\n <a class=\"release-filter\" href=\"/games"\
"/reviews/pc?sortBy=reviewDate&sortOrder=desc\">PC</a>\n "\
" </li>\n <li>\n "\
" <a class=\"release-filter\" href=\"/games/reviews"\
"/wii?sortBy=reviewDate&sortOrder=desc\">Wii</a>\n </"\
"li>\n <li>\n "\
" <a class=\"release-filter\" href=\"/games/reviews/3ds?s"\
"ortBy=reviewDate&sortOrder=desc\">3DS</a>\n </li>\n "\
" <li>\n "\
" <a class=\"release-filter\" href=\"/games/reviews/vita?sortBy"\
"=reviewDate&sortOrder=desc\">Vita</a>\n </li>\n "\
" <li>\n "\
" <a class=\"release-filter\" href=\"/games/reviews/iphone?sortBy=r"\
"eviewDate&sortOrder=desc\">iPhone</a>\n </li>\n "\
" </ul>\n </div>\n <div class=\""\
"grid_16 alpha\">\n <div class=\"gameList-header\">\n "\
" <div class=\"grid_3 alpha\">Box Art</di"\
"v>\n <div class=\"grid_7\">\n "\
" <a class=\"sortLink\" href=\"/games/reviews/xbox-3"\
"60?sortBy=title&sortOrder=asc\">Game Title\n "\
" </a>\n </div>\n "\
"<div class=\"grid_3\">\n <a "\
"class=\"sortLink\" href=\"/games/reviews/xbox-360?sortBy=reviewDate"\
"&sortOrder=asc\">Review Date\n "\
" <span class=\"arrowContainer\"><span class=\"arrow desc\""\
"></span></span>\n </a>\n"\
" </div>\n <div class=\"grid_3 omega\""\
">\n <a class=\"sortLink\" hr"\
"ef=\"/games/reviews/xbox-360?sortBy=score&sortOrder=desc\">IGN Rati"\
"ng\n </a>\n "\
" </div>\n </div>\n <div class=\"gameList\">"\
"\n <div class=\"clear ga"\
"meList-game\">\n <div class=\"grid_3 alpha\">\n "\
" "\
" <img class=\"game-boxArt\" src=\"http://pspmedia.ign.com/ps-vit"\
"a/image/object/123/123637/ghostreconfuturesoldiersiged360boxart_160"\
"h.jpg\" alt=\"Tom Clancy's Ghost Recon: Future Soldier\"/>\n "\
" </div>\n "\
" <div class=\"up-com grid_7\">\n <div clas"\
"s=\"game-title\">\n <h3><a href=\"/games"\
"/tom-clancys-ghost-recon-future-soldier/xbox-360-123637\">\n "\
" Tom Clancy's Ghost Recon: Future Sold"\
"ier (Signature Edition) </a>\n "\
" <span class=\"game-platform xbox-360\">Xbox 360</"\
"span></h3>\n </div>\n "\
" <p class=\"game-details\">\n <span clas"\
"s=\"game-genre\">\n Shooter "\
" </span>\n "\
" - Ghost Recon: Future Soldier features cuttin"\
"g-edge technology, prototype high-tech weaponry, and state-of-the-a"\
"rt... </p>\n <ul clas"\
"s=\"game-quickLinks clear\">\n <li><a hr"\
"ef=\"http://www.ign.com/articles/2012/05/22/ghost-recon-future-sold"\
"ier-review\">Review</a></li> "\
" <li>\n "\
" <a href=\"http://www.ign.com/wikis/ghost-recon-future-s"\
"oldier?objectid=123637\">Guide</a>\n </l"\
"i>\n <li cla"\
"ss=\"last\"><a href=\"/cheats/games/tom-clancys-ghost-recon-future-"\
"soldier-xbox-360-123637\">Cheats</a></li>\n "\
"</ul>\n <div class=\"myIgnFollowInstance\" i"\
"d=\"myIgnFollowGamegobid.123637\" data-game-id=\"123637\"></div> "\
" </div>\n <div class=\"grid_3\">"\
"\n <div>May 22, 2012</div>\n "\
" </div>\n <div class=\"releaseDate grid_3 ome"\
"ga\">\n <div class=\"editorsChoice\">Editor'"\
"s Choice</div> <div class=\"scoreBox\"><div "\
"class=\"scoreBox-score\">8.5</div><div class=\"scoreBox-scorePhrase"\
"\">Great</div></div>\n </div>\n <"\
"/div>\n <div class=\"cle"\
"ar gameList-game\">\n <div class=\"grid_3 alpha\""\
">\n "\
" <img class=\"game-boxArt\" src=\"http://dsmedia.ign.com/ds/"\
"image/object/142/14290333/GRFS_X360_BXSHT_WEB_ONLY1boxart_160h.jpg\""\
" alt=\"Tom Clancy's Ghost Recon: Future Soldier\"/>\n "\
" </div>\n <div"\
" class=\"up-com grid_7\">\n <div class=\"gam"\
"e-title\">\n <h3><a href=\"/games/tom-cl"\
"ancys-ghost-recon-future-soldier/xbox-360-14290333\">\n "\
" Tom Clancy's Ghost Recon: Future Soldier "\
" </a>\n <span c"\
"lass=\"game-platform xbox-360\">Xbox 360</span></h3>\n "\
" </div>\n <p class=\"game-details\""\
">\n <span class=\"game-genre\">\n "\
" Shooter "\
" </span>\n - Gh"\
"ost Recon: Future Soldier features cutting-edge technology, prototy"\
"pe high-tech weaponry, and state-of-the-art... "\
" </p>\n <ul class=\"game-quickLinks clear\""\
">\n <li><a href=\"http://www.ign.com/art"\
"icles/2012/05/22/ghost-recon-future-soldier-review\">Review</a></li"\
"> <li>\n "\
" <a href=\"http:"\
"//www.ign.com/wikis/ghost-recon-future-soldier\">Guide</a>\n "\
" </li>\n "\
" <li class=\"last\"><a href=\"/cheats/games/tom-cla"\
"ncys-ghost-recon-future-soldier-xbox-360-14290333\">Cheats</a></li>"\
"\n </ul>\n <div class"\
"=\"myIgnFollowInstance\" id=\"myIgnFollowGamegobid.14290333\" data-"\
"game-id=\"14290333\"></div> </div>\n "\
" <div class=\"grid_3\">\n <div>May 22"\
", 2012</div>\n </div>\n <div "\
"class=\"releaseDate grid_3 omega\">\n <div c"\
"lass=\"editorsChoice\">Editor's Choice</div> "\
" <div class=\"scoreBox\"><div class=\"scoreBox-score\">8.5</div><di"\
"v class=\"scoreBox-scorePhrase\">Great</div></div>\n "\
" </div>\n </div>\n "\
" <div class=\"clear gameList-game\">\n "\
" <div class=\"grid_3 alpha\">\n "\
" <img class=\"game-boxArt\" s"\
"rc=\"http://media.ign.com/games/image/object/105/105965/dragons_dog"\
"ma_360boxart_160h.jpg\" alt=\"Dragon's Dogma\"/>\n "\
" </div>\n <div cl"\
"ass=\"up-com grid_7\">\n <div class=\"game-t"\
"itle\">\n <h3><a href=\"/games/dragons-d"\
"ogma/xbox-360-105965\">\n Dragon"\
"9;s Dogma </a>\n "\
" <span class=\"game-platform xbox-360\">Xbox 360</span></h3>\n "\
" </div>\n <p class=\"ga"\
"me-details\">\n <span class=\"game-genre"\
"\">\n RPG "\
" </span>\n "\
" - Set in a huge open world, Dragon's Dogma is a unique act"\
"ion experience that blends exciting and fulfilling combat... "\
" </p>\n <ul class=\"game-qui"\
"ckLinks clear\">\n <li><a href=\"http://"\
"www.ign.com/articles/2012/05/21/dragons-dogma-review\">Review</a></"\
"li> <li>\n "\
" <a href=\"htt"\
"p://www.ign.com/wikis/dragons-dogma\">Guide</a>\n "\
" </li>\n "\
" <li class=\"last\"><a href=\"/cheats/games/dragons-dogma-xbox"\
"-360-105965\">Cheats</a></li>\n </ul>\n "\
" <div class=\"myIgnFollowInstance\" id=\"myIgnFol"\
"lowGamegobid.105965\" data-game-id=\"105965\"></div> "\
" </div>\n <div class=\"grid_3\">\n "\
" <div>May 21, 2012</div>\n </div>\n"\
" <div class=\"releaseDate grid_3 omega\">\n "\
" <div class=\"scoreBox\">"\
"<div class=\"scoreBox-score\">7.5</div><div class=\"scoreBox-scoreP"\
"hrase\">Good</div></div>\n </div>\n "\
" </div>\n <div class=\""\
"clear gameList-game\">\n <div class=\"grid_3 alp"\
"ha\">\n "\
" <img class=\"game-boxArt\" src=\"http://comicsmedia.ign"\
".com/comics/image/object/125/125727/Sonic-the-Hedgehog-4-EP-2_XBLAb"\
"oxart_160h.jpg\" alt=\"Sonic the Hedgehog 4: Episode II\"/>\n "\
" </div>\n <"\
"div class=\"up-com grid_7\">\n <div class=\""\
"game-title\">\n <h3><a href=\"/games/son"\
"ic-the-hedgehog-4-episode-ii/xbox-360-125727\">\n "\
" Sonic the Hedgehog 4: Episode II "\
" </a>\n <span class=\"game-platfor"\
"m xbox-360\">Xbox 360</span></h3>\n </div>\n"\
" <p class=\"game-details\">\n "\
" <span class=\"game-genre\">\n "\
" Platformer "\
" </span>\n - Available exclusi"\
"vely via download, Sonic the Hedgehog 4 Episode II continues the ad"\
"dictive side scrolling action... </p>\n "\
" <ul class=\"game-quickLinks clear\">\n "\
" <li><a href=\"http://www.ign.com/articles/2012/05"\
"/18/sonic-the-hedgehog-4-episode-ii-review\">Review</a></li> "\
" <li>\n "\
" <a href=\"/wikis/create"\
"?objectid=125727\">Create a Wiki</a>\n <"\
"/li>\n <li c"\
"lass=\"last\"><a href=\"/cheats/games/sonic-the-hedgehog-4-episode-"\
"ii-xbox-360-125727\">Cheats</a></li>\n </ul>"\
"\n <div class=\"myIgnFollowInstance\" id=\"m"\
"yIgnFollowGamegobid.125727\" data-game-id=\"125727\"></div> "\
" </div>\n <div class=\"grid_3\">\n "\
" <div>May 18, 2012</div>\n <"\
"/div>\n <div class=\"releaseDate grid_3 omega\">"\
"\n <div class=\"scor"\
"eBox\"><div class=\"scoreBox-score\">6.5</div><div class=\"scoreBox"\
"-scorePhrase\">Okay</div></div>\n </div>\n "\
" </div>\n <div "\
"class=\"clear gameList-game\">\n <div class=\"gr"\
"id_3 alpha\">\n "\
" <img class=\"game-boxArt\" src=\"http://xbox360"\
"media.ign.com/xbox360/image/object/101/101191/akaikatana1boxart_160"\
"h.jpg\" alt=\"Akai Katana\"/>\n "\
" </div>\n <div class=\"up-com grid_7\">\n"\
" <div class=\"game-title\">\n "\
" <h3><a href=\"/games/akai-katana/xbox-360-101191\">\n "\
" Akai Katana "\
" </a>\n <span class=\"game-platform xb"\
"ox-360\">Xbox 360</span></h3>\n </div>\n "\
" <p class=\"game-details\">\n "\
" <span class=\"game-genre\">\n "\
" Shooter "\
" </span>\n - Experience sensory overl"\
"oad with shoot-em-up master Cave's Akai Katana. Set in a paral"\
"lel world resembling Japan's... </p>\n "\
" <ul class=\"game-quickLinks clear\">\n "\
" <li><a href=\"http://www.ign.com/articles/201"\
"2/05/16/akai-katana-review\">Review</a></li> "\
" <li>\n "\
" <a href=\"/wikis/create?objectid=101191"\
"\">Create a Wiki</a>\n </li>\n "\
" <li class=\"last\"><a"\
" href=\"/cheats/games/akai-katana-xbox-360-101191\">Cheats</a></li>"\
"\n </ul>\n <div class"\
"=\"myIgnFollowInstance\" id=\"myIgnFollowGamegobid.101191\" data-ga"\
"me-id=\"101191\"></div> </div>\n "\
" <div class=\"grid_3\">\n <div>May 16, 20"\
"12</div>\n </div>\n <div clas"\
"s=\"releaseDate grid_3 omega\">\n "\
" <div class=\"scoreBox\"><div class=\"scoreBox-score\""\
">7</div><div class=\"scoreBox-scorePhrase\">Good</div></div>\n "\
" </div>\n </div>\n "\
" <div class=\"clear gameList-game\">\n "\
" <div class=\"grid_3 alpha\">\n "\
" <img class=\"game-"\
"boxArt\" src=\"http://ps3media.ign.com/ps3/image/object/143/1434907"\
"9/GOTXboxratedboxart_160h.jpg\" alt=\"Game of Thrones\"/>\n "\
" </div>\n <di"\
"v class=\"up-com grid_7\">\n <div class=\"ga"\
"me-title\">\n <h3><a href=\"/games/game-"\
"of-thrones/xbox-360-14349079\">\n Ga"\
"me of Thrones </a>\n "\
" <span class=\"game-platform xbox-360\">Xbox 360</span></h3>"\
"\n </div>\n <p class="\
"\"game-details\">\n <span class=\"game-g"\
"enre\">\n RPG "\
" </span>\n "\
" - Created in partnership with author George R. R. Martin, t"\
"his role-playing adventure is inspired by the author's... "\
" </p>\n <ul class=\"game-q"\
"uickLinks clear\">\n <li><a href=\"http:"\
"//www.ign.com/articles/2012/05/15/game-of-thrones-review\">Review</"\
"a></li> <li>"\
"\n <a href=\""\
"http://www.ign.com/wikis/game-of-thrones-the-game\">Guide</a>\n "\
" </li>\n "\
" <li class=\"last\"><a href=\"/cheats/games/game"\
"-of-thrones-xbox-360-14349079\">Cheats</a></li>\n "\
" </ul>\n <div class=\"myIgnFollowInstan"\
"ce\" id=\"myIgnFollowGamegobid.14349079\" data-game-id=\"14349079\""\
"></div> </div>\n <div class=\""\
"grid_3\">\n <div>May 15, 2012</div>\n "\
" </div>\n <div class=\"releaseDate g"\
"rid_3 omega\">\n <di"\
"v class=\"scoreBox\"><div class=\"scoreBox-score\">4</div><div clas"\
"s=\"scoreBox-scorePhrase\">Bad</div></div>\n </d"\
"iv>\n </div>\n "\
" <div class=\"clear gameList-game\">\n <div"\
" class=\"grid_3 alpha\">\n "\
" <img class=\"game-boxArt\" src=\"htt"\
"p://xbox360media.ign.com/xbox360/image/object/143/14332802/RSGMKT_M"\
"P3_XBOX_360_FOBboxart_160h.jpg\" alt=\"Max Payne 3\"/>\n "\
" </div>\n <div c"\
"lass=\"up-com grid_7\">\n <div class=\"game-"\
"title\">\n <h3><a href=\"/games/max-payn"\
"e-3/xbox-360-14332802\">\n Max Payne"\
" 3 </a>\n <sp"\
"an class=\"game-platform xbox-360\">Xbox 360</span></h3>\n "\
" </div>\n <p class=\"game-deta"\
"ils\">\n <span class=\"game-genre\">\n "\
" Shooter "\
" </span>\n "\
" - The dark, gritty action game Max Payne 3 continues the tale of f"\
"ormer New York City detective, Max Payne. Still... "\
" </p>\n <ul class=\"game-quickLinks cl"\
"ear\">\n <li><a href=\"http://www.ign.co"\
"m/articles/2012/05/14/max-payne-3-review\">Review</a></li> "\
" <li>\n "\
" <a href=\"http://www.ign."\
"com/wikis/max-payne-3?objectid=14332802\">Guide</a>\n "\
" </li>\n "\
" <li class=\"last\"><a href=\"/cheats/games/max-payne-3-xb"\
"ox-360-14332802\">Cheats</a></li>\n </ul>\n "\
" <div class=\"myIgnFollowInstance\" id=\"myIg"\
"nFollowGamegobid.14332802\" data-game-id=\"14332802\"></div> "\
" </div>\n <div class=\"grid_3\">\n "\
" <div>May 14, 2012</div>\n "\
"</div>\n <div class=\"releaseDate grid_3 omega\""\
">\n <div class=\"editorsChoice\">Editor's Ch"\
"oice</div> <div class=\"scoreBox\"><div clas"\
"s=\"scoreBox-score\">9</div><div class=\"scoreBox-scorePhrase\">Ama"\
"zing</div></div>\n </div>\n </div"\
">\n <div class=\"clear g"\
"ameList-game\">\n <div class=\"grid_3 alpha\">\n"\
" "\
" <img class=\"game-boxArt\" src=\"http://media.ign.com/games/im"\
"age/object/106/106021/Sniper-Elite-v2_X360_US_ESRBboxart_160h.jpg\""\
" alt=\"Sniper Elite V2\"/>\n "\
" </div>\n <div class=\"up-com grid_7\">\n "\
" <div class=\"game-title\">\n "\
" <h3><a href=\"/games/sniper-elite-v2-106020/xbox-360-1060"\
"21\">\n Sniper Elite V2 "\
" </a>\n <span class=\"game"\
"-platform xbox-360\">Xbox 360</span></h3>\n "\
"</div>\n <p class=\"game-details\">\n "\
" <span class=\"game-genre\">\n "\
" Action "\
" </span>\n - Sniper Elite "\
"V2 continues to offer gamers the most authentic World War II snipin"\
"g experience by putting them in the... </p>\n"\
" <ul class=\"game-quickLinks clear\">\n "\
" <li><a href=\"http://www.ign.com/articles/20"\
"12/05/14/sniper-elite-v2-review\">Review</a></li> "\
" <li>\n "\
" <a href=\"/wikis/create?objectid=1"\
"06021\">Create a Wiki</a>\n </li>\n "\
" <li class=\"last"\
"\"><a href=\"/cheats/games/sniper-elite-v2-106020-xbox-360-106021\""\
">Cheats</a></li>\n </ul>\n "\
" <div class=\"myIgnFollowInstance\" id=\"myIgnFollowGamegobid."\
"106021\" data-game-id=\"106021\"></div> </div>\n"\
" <div class=\"grid_3\">\n "\
" <div>May 14, 2012</div>\n </div>\n "\
" <div class=\"releaseDate grid_3 omega\">\n "\
" <div class=\"scoreBox\"><div class=\""\
"scoreBox-score\">8</div><div class=\"scoreBox-scorePhrase\">Great</"\
"div></div>\n </div>\n </div>\n "\
" <div class=\"clear gameLis"\
"t-game\">\n <div class=\"grid_3 alpha\">\n "\
" <"\
"img class=\"game-boxArt\" src=\"http://media.ign.com/games/image/ob"\
"ject/110/110624/Minecraft_XBLA_v2boxart_160h.jpg\" alt=\"Minecraft "\
"(Xbox 360 Edition)\"/>\n "\
" </div>\n <div class=\"up-com grid_7\">\n "\
" <div class=\"game-title\">\n "\
" <h3><a href=\"/games/minecraft/xbox-360-110624\">\n "\
" Minecraft (Xbox 360 Edition) "\
" </a>\n <span class=\"game-pla"\
"tform xbox-360\">Xbox 360</span></h3>\n </di"\
"v>\n <p class=\"game-details\">\n "\
" <span class=\"game-genre\">\n "\
" Action "\
" </span>\n - Minecraft is an i"\
"ndie first-person action game where players can gather resources, d"\
"ig holes, fish, plant crops and... </p>\n "\
" <ul class=\"game-quickLinks clear\">\n "\
" <li><a href=\"http://www.ign.com/articles/2012/"\
"05/09/minecraft-xbox-360-review\">Review</a></li> "\
" <li>\n "\
" <a href=\"http://www.ign.com/wikis"\
"/minecraft?objectid=110624\">Guide</a>\n "\
" </li>\n <li"\
" class=\"last\"><a href=\"/cheats/games/minecraft-xbox-360-110624\""\
">Cheats</a></li>\n </ul>\n "\
" <div class=\"myIgnFollowInstance\" id=\"myIgnFollowGamegobid."\
"110624\" data-game-id=\"110624\"></div> </div>\n"\
" <div class=\"grid_3\">\n "\
" <div>May 9, 2012</div>\n </div>\n "\
" <div class=\"releaseDate grid_3 omega\">\n "\
" <div class=\"editorsChoice\">Editor's Choice</div> "\
" <div class=\"scoreBox\"><div class=\"scoreBox-score\">8"\
".5</div><div class=\"scoreBox-scorePhrase\">Great</div></div>\n "\
" </div>\n </div>\n "\
" <div class=\"clear gameList-game\">\n "\
" <div class=\"grid_3 alpha\">\n "\
" <img class=\"game"\
"-boxArt\" src=\"http://xbox360media.ign.com/xbox360/image/object/10"\
"8/108945/awesomenautsboxart_160h.jpg\" alt=\"Awesomenauts\"/>\n "\
" </div>\n "\
" <div class=\"up-com grid_7\">\n <div class="\
"\"game-title\">\n <h3><a href=\"/games/a"\
"wesomenauts/xbox-360-108945\">\n Awe"\
"somenauts </a>\n "\
" <span class=\"game-platform xbox-360\">Xbox 360</span></h3>\n "\
" </div>\n <p class=\"ga"\
"me-details\">\n <span class=\"game-genre"\