Page Time: 0.1814s

Memory: 5.7952 MB (Peak: 6.5619 MB)

Queries (30, time: 0.0287s, 15.8%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000398
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra,
    		IF(rate.count IS NULL, 0, rate.count) AS thread_rate_count, IF(rate.sum IS NULL, 0, rate.sum) AS thread_rate_sum, IF(rate.avg IS NULL, 0, rate.avg) AS thread_rate_avg
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN ns_threadrating_rate AS rate ON (rate.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 9184
    Run Time: 0.001100
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0Unique row not found
  3. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 45
    Run Time: 0.008713
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 2600 AND post.position < 2620) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 9184
    Run Time: 0.003741
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 20Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22user_nextstagerussia.post.user_id,func1Using where
  5. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (793098, 793266, 793421, 793745, 794496, 794573, 794590, 794757)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000957
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 8Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 9184
    Run Time: 0.000367
  7. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=9184&page=131, 1715188843,
    Run Time: 0.000485
  8. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 792999, a:8:{i:0;s:41:"Еще оценочек Трэвиса: ";i:1;a:4:{s:3:"tag";s:7:"spoiler";s:6:"option";s:56:"Нажмите, для открытия спойлера";s:8:"original";a:2:{i:0;s:66:"[spoiler=Нажмите, для открытия спойлера]";i:1;s:10:"[/spoiler]";}s:8:"children";a:55:{i:0;s:1:" ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:23:"Game Informer - 8.25/10";}}i:2;s:305:" Travis Strikes Again finds a good balance between fun, approachable action and reveling in Suda51 and Grasshopper’s signature style. It’s not the most intricate action game out there, but the simple combat works well as a vessel for several one-off moments that elevate it above its simple premise. ";i:3;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:19:"Nintendolife - 8/10";}}i:4;s:410:" Billed as a side dish, Travis Strikes Again: No More Heroes has been prepared with enough love and affection to become a filling meal on its own, packed with the spice and spirit you’d expect from Travis Touchdown. It’s a fun, indie-inflected blast of hack-and-slash which doesn’t change the world mechanically (and don’t go in expecting No More Heroes 3), but its sincerity and energy are charming. ";i:5;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:10:"IGN - 6/10";}}i:6;s:516:" Travis Strikes Again: No More Heroes is a low point for the action franchise. While each of the game worlds try to introduce new mechanics, they all devolve into predictable fights with waves of bland enemies. Slicing through them with the Beam Katana isn’t as satisfying as before because of the mostly top-down perspective. Well-written visual novel sections offer some classic Suda51 humor, but it’s not enough to elevate Travis Strikes Again to more than just a monotonous, disjointed hack and slash game. ";i:7;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:28:"Nintendo World Report - 8/10";}}i:8;s:373:" Travis Strikes Again is a fun game that makes me excited for the future of the series. Spending time in the punk rock hellscape of No More Heroes isn’t something I thought I’d get to do again. That trip might be through the lens of a bunch of fake video games, but all that does is add a welcome twist to Travis’ escapades and add another quirk to Suda’s legacy. ";i:9;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:21:"MyNintendoNews - 8/10";}}i:10;s:489:" Travis Strikes Again: No More Heroes is not exactly the full-fledged sequel fans have been asking for, but it’s a step in the right direction and a sign of good things to come from Goichi Suda. With more than 10 hours of gameplay and further content planned via upcoming DLC updates, the game may very well keep you busy for a while. Another positive take that could be realized from the latest release: it’s a relief to know that Travis is back and he’s most likely here to stay. ";i:11;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:21:"COGconnected - 88/100";}}i:12;s:264:" Travis Strikes Again: No More Heroes is a stylish, edgy, in your face game that is best enjoyed if you really don’t try to take it too seriously. Loaded with pop culture references, fourth wall breaks, hordes of enemies, and more charisma than you can handle. ";i:13;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:17:"Eurogamer - Avoid";}}i:14;s:741:" If it's a parody of older games, the truth is they were rarely this bad. Travis Strikes Again ends up looking - and playing - like a Net Yaroze game made in a hungover fug. Towards its end, as the fourth walls keep tumbling away, it does find some redemption - and any spark that's there is in that final mess - but it's too little, and too late, and so mired in self-reference it feels like Suda is wanking into the void. Is Travis Strikes Again meant to be this hollow? No More Heroes pulled the same trick at various points, with its knowingly empty open world and its mindless mini-games, but there's so little offered in return this time around it feels like the joke's on us. The real truth is, though, the joke isn't funny anymore. ";i:15;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:20:"Easy Allies - 5.5/10";}}i:16;s:2:" ";i:17;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:12:"GameSpot - 6";}}i:18;s:127:" This is not the return of No More Heroes you'd hoped for, but it at least shows signs of a series that still has life in it. ";i:19;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:24:"Escapist Magazine - 7/10";}}i:20;s:1:" ";i:21;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:36:"Travis Strikes Again: No More Heroes";}}i:22;s:258:" doesn’t invite you in. If you’re unfamiliar with the huge swatch of game history, Grasshopper’s catalog, or even games industry business gossip, this will come off as a less entertaining surrealist action game overshadowed by Suda51’s old work like ";i:23;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:7:"Killer7";}}i:24;s:9:" or even ";i:25;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:14:"No More Heroes";}}i:26;s:151:". Anyone that can actually speak the language of this game will be richly rewarded by the promise that there may, in fact, still be heroes out there. ";i:27;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:19:"Comicbook.com - 4/5";}}i:28;s:1:" ";i:29;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:20:"Travis Strikes Again";}}i:30;s:13:" isn’t the ";i:31;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:16:"No More Heroes 3";}}i:32;s:635:" that fans have been wanting, as it goes more for a hack-and-slash style approach. But it’s still a necessary and worthwhile spinoff, one that should generate interest in the franchise in its own special way. While parts of the game can be annoying at times, it's got enough enjoyable combat to go around (thanks to upgrades), whether solo or with a buddy. Throw in some extra content that’s sure to appeal to the old-school crowd, along with a presentation that’s right on par with other entries in the series, and you have a game that’s not only a hit, but also just the kind of thing that new players can get into as well. ";i:33;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:19:"ACG - Wait for sale";}}i:34;s:2:" ";i:35;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:18:"Destructoid - 7/10";}}i:36;s:1:" ";i:37;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:20:"Travis Strikes Again";}}i:38;s:34:" has some undeniable lows but the ";i:39;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:15:"No More Heroes ";}}i:40;s:254:"charm and the prospect of co-op lifts it up. Whether it's learning the intricacies of individual types of ramen or watching Travis curse at a talking cat, this is something that could only be born out of the mind of Suda 51 and his team at Grasshopper. ";i:41;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:15:"Gamekult - 6/10";}}i:42;s:169:" The more time passes, the more it seems difficult to be a hardcore fan of Suda Goichi. Whether discovered with The Silver Case , Flower, Sun and Rain or more likely his";i:43;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:12:"magnum opus ";}}i:44;s:120:"Killer7 , following the career of the most punk creator of the video game can offer his share of high, but mostly low. ";i:45;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:28:"Digitally Downloaded - 4.5/5";}}i:46;s:508:" Travis Strikes Back: No More Heroes isn’t the Lollipop Chainsaw remaster that I’ve been begging Goichi Suda to produce each year over the last four TGS' when I've caught up with him, but it’s a stylish, energetic, amusing and surrealistic return to Suda’s most popular character and “world.” Yes, it might have been a vanity project for a guy that wanted to indulge his love for retro and indie games, but I’ve had a cracking time watching Suda show off just how much of a nerd he really is. ";i:47;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:12:"CGM - 8.5/10";}}i:48;s:1:" ";i:49;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:36:"Travis Strikes Again: No More Heroes";}}i:50;s:311:" is a great game that perfectly captures what I personally love about indie experiences. They have the power to offer truly unique gameplay experiences in the mainstream market, each of them can possess elements that capture the hearts of players worldwide, and when they’re finished, you simply crave more. ";i:51;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:15:"Vandal - 6.8/10";}}i:52;s:1:" ";i:53;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[i]";i:1;s:4:"[/i]";}s:8:"children";a:1:{i:0;s:36:"Travis Strikes Again: No More Heroes";}}i:54;s:409:" is a game of contrasts. It is very clear what is your problem: they have tried to make a game of ten hours with the budget of one of five , and the result is a title that does not delve into everything that should and with some very, very repetitive or tedious moments. This can not tarnish all the things that it does well , since it splurges personality, and it has some spectacular moments and surprises. ";}}i:2;s:2:" ";i:3;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"XFwp1iQudLs";}}i:4;s:2:" ";i:5;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"TDmNhA56-pk";}}i:6;s:2:" ";i:7;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"MVB5nhtDxG8";}}}, 1701116101, 1715188843
    Run Time: 0.001470
  9. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 3212, a:1:{i:0;s:17:"There only be ONE";}, 1701116101, 1715188843
    Run Time: 0.000359
  10. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793000, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"vova, post: 792998, member: 4";s:8:"original";a:2:{i:0;s:39:"[QUOTE="vova, post: 792998, member: 4"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:49:"Качество видно по роликам )";}}i:1;s:162:" Ну это смотря, кто, что ждал )) По сути это набор инди мини-игр. C боссами, все как ты любишь!";}, 1701116101, 1715188843
    Run Time: 0.000233
  11. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793002, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:32:"dimm, post: 793000, member: 3212";s:8:"original";a:2:{i:0;s:42:"[QUOTE="dimm, post: 793000, member: 3212"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:161:"Ну это смотря, кто, что ждал )) По сути это набор инди мини-игр. C боссами, все как ты любишь!";}}i:1;s:73:" Вот только игры говно ))) Мне 2д нравятся.";}, 1701116101, 1715188843
    Run Time: 0.000263
  12. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 4, a:2:{i:0;s:58:"vova: Versatile Online Violence Android SW 6368 9221 0229 ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:45:"https://card.psnprofiles.com/1/Wiizardwii.png";}}}, 1701116101, 1715188843
    Run Time: 0.000282
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793098, a:4:{i:0;s:58:"Взлетел что ль? Ace Combat 7: Skies Unknown ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"31928";}}i:2;s:2:" ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:72:"https://www.metacritic.com/game/playstation-4/ace-combat-7-skies-unknown";}}}, 1701116101, 1715188843
    Run Time: 0.000763
  14. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 777, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"https://www.trueachievements.com/gamer/Chakie";s:8:"original";a:2:{i:0;s:51:"[URL=https://www.trueachievements.com/gamer/Chakie]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:54:"https://www.trueachievements.com/gamercards/Chakie.png";}}}}}, 1701116101, 1715188843
    Run Time: 0.000379
  15. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793117, a:5:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:33:"Chakie, post: 793098, member: 777";s:8:"original";a:2:{i:0;s:43:"[QUOTE="Chakie, post: 793098, member: 777"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:27:"Ace Combat 7: Skies Unknown";}}i:1;s:40:" немножко расшифруем: ";i:2;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:361:"Video Chums - 91 Digitally Downloaded - 90 M3 - 90 TheSixthAxis - 90 Multiplayer.it - 87 IGN Spain - 86 UploadVR - 85 Hobby Consolas - 84 IGN Italia - 83 SpazioGames - 82 Game Informer - 80 Everyeye.it - 80 Push Square - 80 Eurogamer Italy - 80 GameSpot - 80 Press Start Australia - 80 CGMagazine - 80 IGN - 70 DualShockers - 70 Stevivor - 70 Gamers Heroes - 60";}}i:3;s:2:" ";i:4;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"HnU9v1IE1nw";}}}, 1701116101, 1715188843
    Run Time: 0.000331
  16. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793266, a:1:{i:0;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"31988";}}}, 1701116101, 1715188843
    Run Time: 0.000899
  17. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793270, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:33:"Chakie, post: 793266, member: 777";s:8:"original";a:2:{i:0;s:43:"[QUOTE="Chakie, post: 793266, member: 777"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"31988";}}}}i:1;s:47:" Так себе, на уровне смэша.";}, 1701116101, 1715188843
    Run Time: 0.000348
  18. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793280, a:10:{i:0;s:37:"Расшифровочка по RE2: ";i:1;a:4:{s:3:"tag";s:7:"spoiler";s:6:"option";N;s:8:"original";a:2:{i:0;s:9:"[SPOILER]";i:1;s:10:"[/SPOILER]";}s:8:"children";a:180:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:61:"https://www.metacritic.com/game/playstation-4/resident-evil-2";s:8:"original";a:2:{i:0;s:69:"[URL='https://www.metacritic.com/game/playstation-4/resident-evil-2']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"PS4 Metacritic - 91";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:56:"https://www.metacritic.com/game/xbox-one/resident-evil-2";s:8:"original";a:2:{i:0;s:64:"[URL='https://www.metacritic.com/game/xbox-one/resident-evil-2']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"Xbox Metacritic - 94";}}i:3;s:1:" ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:48:"https://opencritic.com/game/6848/resident-evil-2";s:8:"original";a:2:{i:0;s:56:"[URL='https://opencritic.com/game/6848/resident-evil-2']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Opencritic - 92";}}i:5;s:368:" Will include a snippet and score of each review posted, but to support reviewers hard work and to get the full details, click each site and score to read more of their full thoughts. Packed with nostalgia, new challenges, complex and deep gameplay that doesn’t just adapt but embodies the genre it’s inhabiting, and a AAA presentation that blows every previous ";i:6;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:2:"RE";}}i:7;s:32:" out of the water — yes, even ";i:8;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:6:"REmake";}}i:9;s:88:" — I feel confident in this assessment: As it was in 1998, so to shall it be in 2019. ";i:10;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:11;s:13:" is the best ";i:12;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:13:"Resident Evil";}}i:13;s:5:"game ";i:14;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:9:"ever made";}}i:15;s:13:", full stop. ";i:16;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:65:"https://www.relyonhorror.com/reviews/review-resident-evil-2-2019/";s:8:"original";a:2:{i:0;s:73:"[URL='https://www.relyonhorror.com/reviews/review-resident-evil-2-2019/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:22:"Rely on Horror - 10/10";}}i:17;s:111:" Whether you’ve been waiting all these years to revisit Raccoon City or happen to be a curious first-timer, ";i:18;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:29:"http://www.residentevil2.com/";s:8:"original";a:2:{i:0;s:37:"[URL='http://www.residentevil2.com/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}}}i:19;s:82:" is an essential must-have slice of video game horror, kicking off 2019 in style. ";i:20;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:69:"https://bloody-disgusting.com/reviews/3542722/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:77:"[URL='https://bloody-disgusting.com/reviews/3542722/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:24:"Bloody Disgusting - 9/10";}}i:21;s:304:" That’s where Resident Evil succeeds. Not in the drivel spouted from its character’s mouths, but in the bullets spewed from their guns. Or better yet – the clicking of empty chambers, or the spine-chilling scratches of scrabbling overhead. I may hate lickers, but I’m also a little bit in love. ";i:22;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://www.rockpapershotgun.com/2019/01/22/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:75:"[URL='https://www.rockpapershotgun.com/2019/01/22/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:34:"Rock, Paper, Shotgun - Recommended";}}i:23;s:144:" Though Resident Evil 2 has its roots firmly in the past, it reworks the familiar horrors into something that feels brand new and all its own. ";i:24;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:112:"https://www.gamespot.com/reviews/resident-evil-2-review-raccoon-city-revisited/1900-6417071/?ftag=GSS-05-10aaa0b";s:8:"original";a:2:{i:0;s:120:"[URL='https://www.gamespot.com/reviews/resident-evil-2-review-raccoon-city-revisited/1900-6417071/?ftag=GSS-05-10aaa0b']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"GameSpot - 9/10";}}i:25;s:209:" Even better, it toes the line between schlocky and scary that the older Resident Evil games managed so well, and does so in perhaps one of the most atmospheric settings ever to grace a survival horror game. ";i:26;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:68:"https://www.eurogamer.net/articles/2019-01-22-resident-evil-2-review";s:8:"original";a:2:{i:0;s:76:"[URL='https://www.eurogamer.net/articles/2019-01-22-resident-evil-2-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:23:"Eurogamer - Recommended";}}i:27;s:111:" It is pulse-pounding and a must play for horror fans, sometimes experimental but also superficial and rough. ";i:28;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:63:"https://kotaku.com/resident-evil-2-the-kotaku-review-1831951036";s:8:"original";a:2:{i:0;s:71:"[URL='https://kotaku.com/resident-evil-2-the-kotaku-review-1831951036']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:13:"Kotaku Review";}}i:29;s:313:" For my money, Resident Evil 2 Remake is right up there with Resident Evil 4 as the best game in the series. It’s the perfect blend of nostalgia and the new, marrying a classic game with contemporary game design, and a prime candidate for those Game of the Year lists. In January! Capcom clearly has no chill. ";i:30;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:63:"https://www.vg247.com/2019/01/22/resident-evil-2-remake-review/";s:8:"original";a:2:{i:0;s:71:"[URL='https://www.vg247.com/2019/01/22/resident-evil-2-remake-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"VG24 Review";}}i:31;s:134:" The experience of playing through the new Resident Evil 2 for the first time establishes a new standard for remaking classic games. ";i:32;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"https://www.ign.com/articles/2019/01/22/resident-evil-2-review";s:8:"original";a:2:{i:0;s:70:"[URL='https://www.ign.com/articles/2019/01/22/resident-evil-2-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:9:"IGN - 8.8";}}i:33;s:74:" Resident Evil 2 paves a brilliant path for the future of the franchise. ";i:34;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:75:"https://www.gameinformer.com/Resident%20Evil%202%20game%20informer%20Review";s:8:"original";a:2:{i:0;s:83:"[URL='https://www.gameinformer.com/Resident%20Evil%202%20game%20informer%20Review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:22:"Game Informer - 9.5/10";}}i:35;s:99:" And so barely a month into 2019, we have our first front-running contender for Game of the Year. ";i:36;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:61:"https://www.fandom.com/articles/resident-evil-2-remake-review";s:8:"original";a:2:{i:0;s:69:"[URL='https://www.fandom.com/articles/resident-evil-2-remake-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"Fandom - 5/5";}}i:37;s:2:" ";i:38;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:16:"Resident Evil 2 ";}}i:39;s:283:"is not only an accomplished remake that should serve as the blueprint for how to re-imagine beloved classics, but is an incredible game in its own right- so much so, that it might even stand as one of the very best games this venerated and decorated franchise has delivered to date. ";i:40;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:60:"https://gamingbolt.com/resident-evil-2-review-modern-classic";s:8:"original";a:2:{i:0;s:68:"[URL='https://gamingbolt.com/resident-evil-2-review-modern-classic']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"GamingBolt - 10/10";}}i:41;s:46:" This is Resident Evil at its absolute best. ";i:42;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"https://www.godisageek.com/reviews/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:66:"[URL='https://www.godisageek.com/reviews/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"God is Geek - 10/10";}}i:43;s:114:" The modern-aesthetic upgrade more than makes up for the game's lowest lows. Horror fans should immediately buy. ";i:44;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:100:"https://arstechnica.com/gaming/2019/01/resident-evil-2-remake-review-itll-thrill-you-itll-annoy-you/";s:8:"original";a:2:{i:0;s:108:"[URL='https://arstechnica.com/gaming/2019/01/resident-evil-2-remake-review-itll-thrill-you-itll-annoy-you/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"Arstechnica Review";}}i:45;s:127:" I hope every legacy game in the series gets this loving treatment, as I'll probably be playing them for the rest of my life. ";i:46;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:69:"https://www.destructoid.com/review-resident-evil-2-2019--538881.phtml";s:8:"original";a:2:{i:0;s:77:"[URL='https://www.destructoid.com/review-resident-evil-2-2019--538881.phtml']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"Destructoid - 9/10";}}i:47;s:2:" ";i:48;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:49;s:66:" is the perfect sort of game for gushing. Much like the legendary ";i:50;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:6:"REmake";}}i:51;s:44:", this new version of a storied classic was ";i:52;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:86:"https://www.playstationlifestyle.net/2018/11/20/resident-evil-2-remake-developers-800/";s:8:"original";a:2:{i:0;s:94:"[URL='https://www.playstationlifestyle.net/2018/11/20/resident-evil-2-remake-developers-800/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:26:"lovingly crafted by people";}}i:53;s:148:" who not only have a collectively sharp eye for what makes an excellent video game today, but also possess a deep understanding of why the original ";i:54;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:55;s:94:" is worth revisiting and what made it a game celebrated to this day. This isn’t just an old ";i:56;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:13:"Resident Evil";}}i:57;s:21:" molded into the new ";i:58;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:13:"Resident Evil";}}i:59;s:31:" formula. It’s a new take on ";i:60;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:61;s:297:" that doesn’t feel like it’s trying to “modernize” or “fix” the original. It’s more of an expensive, ludicrously polished tribute than a remake in the semantic sense, a project that has been in demand for years and quietly pursued for just as long. I’m glad it worked out so well. ";i:62;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:84:"https://www.playstationlifestyle.net/2019/01/22/resident-evil-2-ps4-review/#/slide/1";s:8:"original";a:2:{i:0;s:92:"[URL='https://www.playstationlifestyle.net/2019/01/22/resident-evil-2-ps4-review/#/slide/1']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:29:"Playstation Lifestyle - 10/10";}}i:63;s:38:" It’s a superbly constructed game. ";i:64;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:70:"https://apptrigger.com/2019/01/22/resident-evil-2-review-rcpd-station/";s:8:"original";a:2:{i:0;s:78:"[URL='https://apptrigger.com/2019/01/22/resident-evil-2-review-rcpd-station/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"App Trigger - 9.5/10";}}i:65;s:170:" The Resident Evil 2 remake is, indeed, the best Resident Evil game ever released.(...)Survival horror isn’t dead, inform the press that Resident Evil really is back. ";i:66;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:61:"https://twinfinite.net/2019/01/resident-evil-2-remake-review/";s:8:"original";a:2:{i:0;s:69:"[URL='https://twinfinite.net/2019/01/resident-evil-2-remake-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"Twinfinite - 4.5/5";}}i:67;s:54:" It’s a good time to be a Resident Evil fan again. ";i:68;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"https://venturebeat.com/2019/01/22/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:66:"[URL='https://venturebeat.com/2019/01/22/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"VentureBeats - 8.5/10";}}i:69;s:185:" A fantastic big budget remake of one of Resident Evil’s most popular entries, that manages to look state-of-the-art but in terms of gameplay finds a perfect balance of old and new. ";i:70;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:87:"https://metro.co.uk/2019/01/22/resident-evil-2-remake-review-horrifyingly-good-8373525/";s:8:"original";a:2:{i:0;s:95:"[URL='https://metro.co.uk/2019/01/22/resident-evil-2-remake-review-horrifyingly-good-8373525/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"Metro - 9/10";}}i:71;s:98:" Bottom line, Resident Evil 2 is an outstanding remake and one you can purchase with confidence. ";i:72;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:55:"https://cogconnected.com/review/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:63:"[URL='https://cogconnected.com/review/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:22:"Cog Connected - 90/100";}}i:73;s:2:" ";i:74;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:75;s:142:" is likely the single most excellent video game remake ever created and I’m hard-pressed to think of anything else that could even compare. ";i:76;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:52:"https://www.dualshockers.com/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:60:"[URL='https://www.dualshockers.com/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"DualShockers - 9/10";}}i:77;s:2:" ";i:78;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:96:"http://www.jeuxvideo.com/test/989987/resident-evil-2-la-survie-au-ceur-d-un-episode-etonnant.htm";s:8:"original";a:2:{i:0;s:104:"[URL='http://www.jeuxvideo.com/test/989987/resident-evil-2-la-survie-au-ceur-d-un-episode-etonnant.htm']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"JuexVideo - 17/20";}}i:79;s:57:" More than just a simple remake of a cherished classic, ";i:80;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:16:"Resident Evil 2 ";}}i:81;s:421:"is a reinvigoration of the entire franchise, showing just how much life it still has left without the need to make drastic gameplay or stylistic changes. From start to end, this is a phenomenal showcase of old mixed with new, both giving players the chance to relive an important chapter in the life of the series under fantastic new conditions, while also potentially paving the way for Resident Evil for years to come. ";i:82;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"http://www.egmnow.com/articles/reviews/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:70:"[URL='http://www.egmnow.com/articles/reviews/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"EGM - 9.5/10";}}i:83;s:165:" I kept my expectations at bay with this game after Resident Evil 7, and I have to say that this is definitely a great way to ring in the start of 2019 for Capcom. ";i:84;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:79:"https://www.thenerdmag.com/resident-evil-2-review-take-me-down-to-raccoon-city/";s:8:"original";a:2:{i:0;s:87:"[URL='https://www.thenerdmag.com/resident-evil-2-review-take-me-down-to-raccoon-city/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"The Nerd Mag - 9.1/10";}}i:85;s:286:" The biggest compliment that can be leveled is how the game manages to elicit the same sense of dread and consequence that made the original a classic whilst injecting just enough complexity and modern sensibility to see it emerge from the shadow of its namesake with consummate ease. ";i:86;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:55:"https://www.psu.com/reviews/ps4-resident-evil-2-remake/";s:8:"original";a:2:{i:0;s:63:"[URL='https://www.psu.com/reviews/ps4-resident-evil-2-remake/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"PSU - 9.5/10";}}i:87;s:62:" Considering there’s little Capcom could have done to make ";i:88;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:89;s:129:" a better remake, capturing exactly what we love about the genre, we’re left exceedingly hopeful for the franchise’s future. ";i:90;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:71:"https://www.hardcoregamer.com/2019/01/22/review-resident-evil-2/322849/";s:8:"original";a:2:{i:0;s:79:"[URL='https://www.hardcoregamer.com/2019/01/22/review-resident-evil-2/322849/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:22:"Hardcore Gamer - 4.5/5";}}i:91;s:114:" Resident Evil 2 is an entertaining romp through Raccoon City that no horror fan — old or new — should miss. ";i:92;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:88:"https://gadgets.ndtv.com/games/reviews/resident-evil-2-review-ps4-pro-xbox-one-x-1981651";s:8:"original";a:2:{i:0;s:96:"[URL='https://gadgets.ndtv.com/games/reviews/resident-evil-2-review-ps4-pro-xbox-one-x-1981651']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"Gadgets 360 - 10/10";}}i:93;s:95:" Resident Evil 2 is everything you’d hoped for and more, and is a truly essential purchase. ";i:94;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:51:"https://www.nextgenbase.com/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:59:"[URL='https://www.nextgenbase.com/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"Next Gen Base - 10/10";}}i:95;s:191:" Whether you're a Resident Evil fan or you're looking to delve into the terrifying world of horror gaming, you owe it to yourself to make this iteration of Resident Evil a day one purchase. ";i:96;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:86:"https://www.shacknews.com/article/109460/resident-evil-2-review-return-to-raccoon-city";s:8:"original";a:2:{i:0;s:94:"[URL='https://www.shacknews.com/article/109460/resident-evil-2-review-return-to-raccoon-city']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"ShackNews - 9/10";}}i:97;s:83:" Resident Evil 2 might be one of the most accomplished remakes of the generation. ";i:98;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:53:"http://www.pushsquare.com/reviews/ps4/resident_evil_2";s:8:"original";a:2:{i:0;s:61:"[URL='http://www.pushsquare.com/reviews/ps4/resident_evil_2']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"Push Square - 8/10";}}i:99;s:44:" This is horror game design as true craft. ";i:100;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:108:"https://www.theguardian.com/games/2019/jan/22/resident-evil-2-review-genre-defining-horror-loaded-with-dread";s:8:"original";a:2:{i:0;s:116:"[URL='https://www.theguardian.com/games/2019/jan/22/resident-evil-2-review-genre-defining-horror-loaded-with-dread']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"The Guardian - 10/10";}}i:101;s:195:" The return to strong item management, survival and tense gameplay still works wonders. Level design alone is beautiful. Making for a fun experience for even long term “Resident Evil” fans. ";i:102;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:53:"https://comiconverse.com/resident-evil-2-review-25201";s:8:"original";a:2:{i:0;s:61:"[URL='https://comiconverse.com/resident-evil-2-review-25201']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"Comicconverse - 10/10";}}i:103;s:172:" Resident Evil 2 provides a new way to experience a classic and a very welcome reminder that the old style of Resident Evil is not dead. If anything, it’s finally back. ";i:104;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:124:"https://press-start.com.au/reviews/playstation4-reviews/2019/01/23/resident-evil-2-review-like-reliving-a-perfect-nightmare/";s:8:"original";a:2:{i:0;s:132:"[URL='https://press-start.com.au/reviews/playstation4-reviews/2019/01/23/resident-evil-2-review-like-reliving-a-perfect-nightmare/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:29:"Press Start Australia - 10/10";}}i:105;s:135:" Resident Evil 2 is more than a remake of a classic game, it's one of the most accomplished horror titles you'll play for a long time ";i:106;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:57:"https://www.videogamer.com/reviews/resident-evil-2-review";s:8:"original";a:2:{i:0;s:65:"[URL='https://www.videogamer.com/reviews/resident-evil-2-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"VideoGamer - 9/10";}}i:107;s:101:" By trying to please so many different players the game will probably not satisfy anyone completely ";i:108;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:63:"https://www.gamer.no/artikler/anmeldelse-resident-evil-2/455984";s:8:"original";a:2:{i:0;s:71:"[URL='https://www.gamer.no/artikler/anmeldelse-resident-evil-2/455984']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Gamer.no - 7/10";}}i:109;s:87:" It’s a love letter to survival horror, delivered direct like a bullet to the head. ";i:110;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:87:"http://www.digitallydownloaded.net/2019/01/review-resident-evil-2-sony-playstation.html";s:8:"original";a:2:{i:0;s:95:"[URL='http://www.digitallydownloaded.net/2019/01/review-resident-evil-2-sony-playstation.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:28:"Digitally Downloaded - 10/10";}}i:111;s:36:" Spectacular work and a must have. ";i:112;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:48:"http://www.ztgd.com/reviews/resident-evil-2-ps4/";s:8:"original";a:2:{i:0;s:56:"[URL='http://www.ztgd.com/reviews/resident-evil-2-ps4/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"ZTGD - 10/10";}}i:113;s:415:" The sense of fear and terror when playing Resident Evil 2 never leaves you. It’s unlike anything else I’ve encountered in a Resident Evil game previously. I’m just going to go ahead and call it: Resident Evil 2 is the best Resident Evil game in the franchise and represents a series and developer at its peak. Don’t be distracted by the pretty graphics and gore, Resident Evil 2 is straight-up dangerous. ";i:114;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:55:"https://www.usgamer.net/articles/resident-evil-2-review";s:8:"original";a:2:{i:0;s:63:"[URL='https://www.usgamer.net/articles/resident-evil-2-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"USGamer - 4.5/5";}}i:115;s:91:" It is terrifically paced between that heightened stress and more atmospheric exploration ";i:116;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:100:"https://www.telegraph.co.uk/gaming/reviews/resident-evil-2-remake-review-survival-horror-perfection/";s:8:"original";a:2:{i:0;s:108:"[URL='https://www.telegraph.co.uk/gaming/reviews/resident-evil-2-remake-review-survival-horror-perfection/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"Telegraph - 10/10";}}i:117;s:2:" ";i:118;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:78:"https://www.eurogamer.it/articles/2019-01-22-resident-evil-2-remake-recensione";s:8:"original";a:2:{i:0;s:86:"[URL='https://www.eurogamer.it/articles/2019-01-22-resident-evil-2-remake-recensione']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:22:"Eurogamer Italy - 9/10";}}i:119;s:2:" ";i:120;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:60:"http://www.gameblog.fr/tests/3286-resident-evil-2-ps4-xb1-pc";s:8:"original";a:2:{i:0;s:68:"[URL='http://www.gameblog.fr/tests/3286-resident-evil-2-ps4-xb1-pc']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"GameBlog - 8/10";}}i:121;s:2:" ";i:122;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:73:"https://www.gamekult.com/jeux/resident-evil-2-remake-3050878821/test.html";s:8:"original";a:2:{i:0;s:81:"[URL='https://www.gamekult.com/jeux/resident-evil-2-remake-3050878821/test.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"GameKult - 7/10";}}i:123;s:2:" ";i:124;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:56:"http://play.co.rs/2019/01/review-resident-evil-2-remake/";s:8:"original";a:2:{i:0;s:64:"[URL='http://play.co.rs/2019/01/review-resident-evil-2-remake/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"Play Zine - 9.5/10";}}i:125;s:2:" ";i:126;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:92:"https://www.hobbyconsolas.com/reviews/analisis-resident-evil-2-remake-ps4-xbox-one-pc-360925";s:8:"original";a:2:{i:0;s:100:"[URL='https://www.hobbyconsolas.com/reviews/analisis-resident-evil-2-remake-ps4-xbox-one-pc-360925']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"Hobby Consalas - 92%";}}i:127;s:2:" ";i:128;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:61:"https://www.spaziogames.it/resident-evil-2-recensione-remake/";s:8:"original";a:2:{i:0;s:69:"[URL='https://www.spaziogames.it/resident-evil-2-recensione-remake/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"SpazioGames - 91%";}}i:129;s:2:" ";i:130;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:41:"https://atomix.vg/review-resident-evil-2/";s:8:"original";a:2:{i:0;s:49:"[URL='https://atomix.vg/review-resident-evil-2/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Atomix - 95/100";}}i:131;s:59:" Resident Evil 2 is a must-have title in your collection. ";i:132;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"https://psxbrasil.com.br/analises/analise-resident-evil-2/";s:8:"original";a:2:{i:0;s:66:"[URL='https://psxbrasil.com.br/analises/analise-resident-evil-2/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"psxbrasil - 98%";}}i:133;s:76:" I strongly recommend Resident Evil to anyone who has the guts to play it. ";i:134;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"https://www.squarexo.co.uk/resident-evil-2-ps4-review/";s:8:"original";a:2:{i:0;s:62:"[URL='https://www.squarexo.co.uk/resident-evil-2-ps4-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"SquareXO - 9/10";}}i:135;s:14:" All in all, ";i:136;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:137;s:85:" is a phenomenal remake that plays to the long-running franchise’s best strengths. ";i:138;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:59:"https://wegotthiscovered.com/gaming/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:67:"[URL='https://wegotthiscovered.com/gaming/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:24:"WeGotThisCovered - 10/10";}}i:139;s:113:" It’s only January, but RE2 may have already established itself as a serious 2019 Game of The Year contender. ";i:140;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"https://www.well-played.com.au/resident-evil-2-review/";s:8:"original";a:2:{i:0;s:62:"[URL='https://www.well-played.com.au/resident-evil-2-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"Well Played - 10/10";}}i:141;s:323:" Resident Evil 2 is loyal to the original where it counts, while also upgrading the experience with beautiful visuals and modern gameplay conveniences. It’s so loyal that newcomers might find it a touch archaic, but for fans of the original, it’s an absolute joy to play, and a fantastic horror game in its own right. ";i:142;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:79:"https://www.gamecrate.com/reviews/review-resident-evil-2-masterful-remake/22010";s:8:"original";a:2:{i:0;s:87:"[URL='https://www.gamecrate.com/reviews/review-resident-evil-2-masterful-remake/22010']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"GamerCrate - 9/10";}}i:143;s:50:" Whether you’re a long time fan or a newcomer, ";i:144;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:145;s:129:" remake is an absolutely fantastic game. It’s the best in the series yet and wholly outshined my most optimistic expectations. ";i:146;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:90:"https://www.gamerevolution.com/review/485467-resident-evil-2-remake-review-ps4-xbox-one-pc";s:8:"original";a:2:{i:0;s:98:"[URL='https://www.gamerevolution.com/review/485467-resident-evil-2-remake-review-ps4-xbox-one-pc']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:23:"Game Revolution - 10/10";}}i:147;s:356:" I’ll also make this claim: it is no longer a given that the often exalted Resident Evil 4 is the best Resident Evil to date. I’ll gladly argue with anybody who is willing that Resident Evil 2 is better. It is my hope that this debate lasts until the next Resident Evil game that, if Capcom is smart, will use this nearly perfect game as a guideline. ";i:148;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:51:"http://cheatcc.com/ps4/rev/residentevil2review.html";s:8:"original";a:2:{i:0;s:59:"[URL='http://cheatcc.com/ps4/rev/residentevil2review.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Cheatcc - 10/10";}}i:149;s:2:" ";i:150;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:15:"Resident Evil 2";}}i:151;s:448:" has always had the best moments in the series and plays to the strengths the franchise excels at. Going all-in on the horror serves a purpose and propels the series forward, the action takes a backseat to tense encounters with zombies and monsters out to kill you. Whether this is the tenth time or the first time you’re experiencing this game, you won’t be disappointed with this wonderful remake of one of the most iconic games of all time. ";i:152;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"http://www.consolecreatures.com/latest/review-resident-evil-2/";s:8:"original";a:2:{i:0;s:70:"[URL='http://www.consolecreatures.com/latest/review-resident-evil-2/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:24:"Console Creatures Review";}}i:153;s:2:" ";i:154;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://residentevil.com.br/reviews/analise-resident-evil-2-remake/";s:8:"original";a:2:{i:0;s:75:"[URL='https://residentevil.com.br/reviews/analise-resident-evil-2-remake/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:13:"REvil: 8.5/10";}}i:155;s:1:" ";i:156;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:71:"https://www.theenemy.com.br/playstation/criticas/review-resident-evil-2";s:8:"original";a:2:{i:0;s:79:"[URL='https://www.theenemy.com.br/playstation/criticas/review-resident-evil-2']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"The Enemy: 4/5";}}i:157;s:1:" ";i:158;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:64:"https://www.voxel.com.br/jogo/resident-evil-2-remake/analise.htm";s:8:"original";a:2:{i:0;s:72:"[URL='https://www.voxel.com.br/jogo/resident-evil-2-remake/analise.htm']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:13:"Voxel: 93/100";}}i:159;s:1:" ";i:160;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:79:"https://jogos.uol.com.br/ultimas-noticias/2019/01/22/review-resident-evil-2.htm";s:8:"original";a:2:{i:0;s:87:"[URL='https://jogos.uol.com.br/ultimas-noticias/2019/01/22/review-resident-evil-2.htm']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"UOL Jogos: 10/10";}}i:161;s:1:" ";i:162;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:79:"https://br.ign.com/resident-evil-2-remake-1/70174/review/review-resident-evil-2";s:8:"original";a:2:{i:0;s:87:"[URL='https://br.ign.com/resident-evil-2-remake-1/70174/review/review-resident-evil-2']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"IGN Brasil: 100/100";}}i:163;s:1:" ";i:164;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:84:"https://adrenaline.uol.com.br/2019/01/22/57837/analise-games-resident-evil-2-remake/";s:8:"original";a:2:{i:0;s:92:"[URL='https://adrenaline.uol.com.br/2019/01/22/57837/analise-games-resident-evil-2-remake/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"Adrenaline: 9.5/10";}}i:165;s:1:" ";i:166;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:116:"https://www.comboinfinito.com.br/principal/analise-resident-evil-2-remake-e-uma-carta-de-terror-aos-fas-da-franquia/";s:8:"original";a:2:{i:0;s:124:"[URL='https://www.comboinfinito.com.br/principal/analise-resident-evil-2-remake-e-uma-carta-de-terror-aos-fas-da-franquia/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:22:"Combo Infinito: 9.0/10";}}i:167;s:1:" ";i:168;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"https://www.techtudo.com.br/review/resident-evil-2-remake.html";s:8:"original";a:2:{i:0;s:70:"[URL='https://www.techtudo.com.br/review/resident-evil-2-remake.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"Tech Tudo: 9.8/10";}}i:169;s:1:" ";i:170;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:97:"http://www.ultimaficha.com.br/2019/01/22/analise-resident-evil-2-remake-e-tudo-que-voce-esperava/";s:8:"original";a:2:{i:0;s:105:"[URL='http://www.ultimaficha.com.br/2019/01/22/analise-resident-evil-2-remake-e-tudo-que-voce-esperava/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"Última Ficha: 9.5/10";}}i:171;s:1:" ";i:172;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:64:"https://criticalhits.com.br/games/resident-evil-2-remake-review/";s:8:"original";a:2:{i:0;s:72:"[URL='https://criticalhits.com.br/games/resident-evil-2-remake-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"Critical Hits: 9.0/10";}}i:173;s:1:" ";i:174;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:71:"https://www.meups4.com.br/analises/analise-resident-evil-2-vale-a-pena/";s:8:"original";a:2:{i:0;s:79:"[URL='https://www.meups4.com.br/analises/analise-resident-evil-2-vale-a-pena/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:13:"MeuPS4: 4.5/5";}}i:175;s:1:" ";i:176;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"https://psxbrasil.com.br/analises/analise-resident-evil-2/";s:8:"original";a:2:{i:0;s:66:"[URL='https://psxbrasil.com.br/analises/analise-resident-evil-2/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"PSX Brasil: 98/100";}}i:177;s:17:" SGDC - Adored: ";i:178;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:60:"https://www.youtube.com/watch?v=7jgRB_pkSbM&feature=youtu.be";s:8:"original";a:2:{i:0;s:68:"[URL='https://www.youtube.com/watch?v=7jgRB_pkSbM&feature=youtu.be']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:43:"https://www.youtube.com/watch?v=7jgRB_pkSbM";}}i:179;s:23:" Easy Allies - 9.0/10:";}}i:2;s:2:" ";i:3;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"-a1x_2NCaPg";}}i:4;s:2:" ";i:5;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"kXp6KQKCozQ";}}i:6;s:2:" ";i:7;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"xsSF8fZVJVM";}}i:8;s:2:" ";i:9;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"NODWNVpB2rM";}}}, 1701116101, 1715188843
    Run Time: 0.001405
  19. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793421, a:1:{i:0;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"31999";}}}, 1701116101, 1715188843
    Run Time: 0.000698
  20. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793435, a:2:{i:0;s:86:"Gamespot всего 8 ставит, меньше чем у первых частей. ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:95:"https://www.gamespot.com/reviews/kingdom-hearts-3-review-no-frowning-no-sad-faces/1900-6417074/";}}}, 1701116101, 1715188843
    Run Time: 0.000316
  21. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793533, a:2:{i:0;s:67:"Edge: Трэвис слегка хуже самолетиков. ";i:1;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:1:{i:0;s:189:" [*]Below – 8 [*]Vane – 3 [*]Ace Combat 7: Skies Unknown – 6 [*]Travis Strikes Again – 5 [*]Book of Demons – 7 [*]Genesis Alpha One – 5 [*]Sunless Skies – 9 [*]Pikuniku – 6 ";}}}, 1701116101, 1715188843
    Run Time: 0.000887
  22. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 793745, a:3:{i:0;s:11:"Wargroove ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"32039";}}i:2;s:92:" *Это, если кто не в курсе, такой Адвансед Ворз клон";}, 1701116101, 1715188843
    Run Time: 0.000763
  23. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 794496, a:2:{i:0;s:18:"Metro Exodus 82 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"32135";}}}, 1701116101, 1715188843
    Run Time: 0.000469
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 794573, a:2:{i:0;s:23:"Far Cry: New Dawn 75 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"32142";}}}, 1701116101, 1715188843
    Run Time: 0.000528
  25. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 794582, a:1:{i:0;s:42:"Ждал от игры большего ))";}, 1701116101, 1715188843
    Run Time: 0.000467
  26. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 794590, a:2:{i:0;s:17:"Crackdown 3 63 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"32146";}}}, 1701116101, 1715188843
    Run Time: 0.000439
  27. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 794592, a:1:{i:0;s:45:"Чуть-чуть не хватило до 69";}, 1701116101, 1715188843
    Run Time: 0.000224
  28. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 794593, a:1:{i:0;s:50:"Не зря столько ждали :nailbiting:";}, 1701116101, 1715188843
    Run Time: 0.000260
  29. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 794597, a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:118:"https://images-ext-2.discordapp.net/external/tH9mf8OZzsiwZqrDsKq1Y9Om10RjQoLVYi5cQKdWUW4/https/i.imgur.com/0urJOr7.png";}}}, 1701116101, 1715188843
    Run Time: 0.000271
  30. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 794757, a:2:{i:0;s:20:"Dirt Rally 2.0 86 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"32174";}}}, 1701116101, 1715188843
    Run Time: 0.000854

Included Files (115, XenForo Classes: 63)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/NextStage/Feature/Listener/Feature.php
  29. library/XenForo/Router.php
  30. library/XenForo/Route/Filter.php
  31. library/XenForo/Route/Interface.php
  32. library/XenForo/Route/ResponseSuffix.php
  33. library/XenForo/Route/Prefix.php
  34. library/XenForo/Route/Prefix/Threads.php
  35. library/XenForo/RouteMatch.php
  36. library/XenForo/ControllerPublic/Thread.php
  37. library/XenForo/ControllerPublic/Abstract.php
  38. library/XenForo/Controller.php
  39. library/NextStage/ThreadRating/Listener/Class.php
  40. library/NextStage/TaigaChat/Listener.php
  41. library/NextStage/XenForo/Listener/XenForo.php
  42. library/Tapatalk/Listener/LoadClassModel.php
  43. library/NextStage/ThreadRating/ControllerPublic/Thread.php
  44. library/NextStage/XenForo/ControllerPublic/XenForo.php
  45. library/NextStage/XenForo/ControllerPublic/Thread.php
  46. library/XenForo/Input.php
  47. library/XenForo/Session.php
  48. library/Zend/Db.php
  49. library/Zend/Db/Adapter/Mysqli.php
  50. library/Zend/Db/Adapter/Abstract.php
  51. library/Zend/Db/Select.php
  52. library/Zend/Db/Expr.php
  53. library/Zend/Db/Profiler.php
  54. library/Zend/Db/Statement/Mysqli.php
  55. library/Zend/Db/Statement.php
  56. library/Zend/Db/Statement/Interface.php
  57. library/XenForo/Helper/Ip.php
  58. library/XenForo/Visitor.php
  59. library/XenForo/Model/User.php
  60. library/Dark/TaigaChat/EventListener/Listener.php
  61. library/Zend/Db/Profiler/Query.php
  62. library/XenForo/Permission.php
  63. library/XenForo/Helper/Php.php
  64. library/XenForo/Phrase.php
  65. library/XenForo/Locale.php
  66. library/XenForo/ControllerHelper/ForumThreadPost.php
  67. library/XenForo/ControllerHelper/Abstract.php
  68. library/XenForo/Model/Thread.php
  69. library/NextStage/ThreadRating/Model/Thread.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Helper/Discussion.php
  73. library/XenForo/Model/Post.php
  74. library/NextStage/Feature/Model/Post.php
  75. library/XenForo/Model/Attachment.php
  76. library/XenForo/Route/Prefix/Attachments.php
  77. library/NextStage/Feature/Model/Feature.php
  78. library/XenForo/Model/Node.php
  79. library/Tapatalk/Model/Node.php
  80. library/XenForo/Route/Prefix/Categories.php
  81. library/XenForo/Route/Prefix/Forums.php
  82. library/XenForo/ControllerResponse/View.php
  83. library/XenForo/ControllerResponse/Abstract.php
  84. library/XenForo/Helper/Cookie.php
  85. library/Tapatalk/Listener/ControllerPostDispatch.php
  86. library/XenForo/ViewRenderer/HtmlPublic.php
  87. library/XenForo/ViewRenderer/Abstract.php
  88. library/XenForo/Template/Public.php
  89. library/XenForo/Template/Abstract.php
  90. library/XenForo/ViewPublic/Thread/View.php
  91. library/XenForo/ViewPublic/Base.php
  92. library/XenForo/View.php
  93. library/XenForo/BbCode/Parser.php
  94. library/XenForo/BbCode/Formatter/Base.php
  95. library/XenForo/ViewPublic/Helper/Message.php
  96. library/XenForo/BbCode/TextWrapper.php
  97. library/XenForo/Route/Prefix/Members.php
  98. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  99. library/NextStage/ThreadRating/Listener/Template.php
  100. library/XenForo/Template/FileHandler.php
  101. library/XenForo/Helper/File.php
  102. internal_data/templates/S.1,L.1,thread_view.php
  103. library/Tapatalk/EventListener/Hook.php
  104. internal_data/templates/S.1,L.1,page_nav.php
  105. library/Tapatalk/Listener/TemplatePostRender.php
  106. library/XenForo/Route/Prefix/Posts.php
  107. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  108. library/XenForo/Model/Avatar.php
  109. internal_data/templates/S.1,L.1,bb_code_tag_spoiler.php
  110. internal_data/templates/S.1,L.1,bb_code_tag_quote.php
  111. internal_data/templates/S.1,L.1,bb_code_tag_attach.php
  112. library/XenForo/Debug.php
  113. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  114. mobiquo/smartbanner/head.inc.php
  115. library/XenForo/ViewRenderer/Json.php