Wizard101 Quests in Order (Pt 1/4) (2024)

By PinkFairyy

25m

500 Questions

0 Plays0 Plays

0 Plays

Give Quiz Kudos

Give Quiz Kudos

-

")$objective.click(() => {window.onClickObjective(reckoningQuestObjective.quest_number, reckoningQuestObjective.objective_number, reckoningQuestObjective.quest_id, reckoningQuestObjective.objective_id, $objective);});if (!window.mweb) {$j('#snark').hide();$objective.insertAfter($j('#gameOverMsg'));} else if (is_flagship_app_view) {$j('#snark').html();$objective.appendTo($j('#snark'));} else {$objective.appendTo($j('#reckoning .stats-wrapper'));}} else if (showSnark) {var snark = getSnark(userPct);var attachSnarkModalListener = false;if (snark !== '') {snark = ""+snark+"";if (!window.mweb) {if (false) {attachSnarkModalListener = true;snark += "";} else {snark += "";}}} else {$j('#snark').hide();}$j('#snark').html(snark);if(attachSnarkModalListener){ $j('#hide-snark-open-confirmation-modal').on('click', function () { var modalArgs = {title: 'Hide These Messages?',message: 'Are you sure you want to hide post-quiz messages?', onYes: function(remodal){ $j.ajax({ type: "GET", url: "/ajax/user_settings.php", data: {s: 0}, success: function(response) { if (response.success) { $j('#snark').hide(); remodal.close(); } else { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }, error: function(response) { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }); } }; SporcleLib.Modal._openConfirmationModal(modalArgs); }); }} else {$j('#snark').hide();}// Update get reckoning with playlist infovar playlistData;if (mweb) {playlistData = typeof window.playlist === 'object' && window.playlist.hasOwnProperty('games') ? window.playlist : null;} else {playlistData = window.Sporcle.gameData.playlist ? window.Sporcle.gameData.playlist.vm.data : null;}if (playlistData) {playlistReckoning(playlistData, userPct, false && !stopwatch);}$j('#playGameBar').addClass('reckoning');$j('#reckonBox').show();if (mweb) {/* mobile games only */$j('#reckoning-numright').html(numRight);$j('#reckoning-time').html(displayTime(timerSecs));if (stopwatch) {$j('#reckoning-time-title').text("Stopwatch");$j('#reckoning-time, #reckoning-score').addClass('timePast');}var checkToOpenFlorinPlayGoalModal = () => {if (userPct == 0) {return;}if (!florinsPlayGoalData) {return;}var openModal = false;if (florinsPlayGoalData.reward_claimable) {openModal = true;} else if (florinsPlayGoalData.curr_streak + 1 == florinsPlayGoalData.goal_days && florinsPlayGoalData.plays_today == 0) {// First play of the day, this should complete their play goalopenModal = true;}if (openModal) { window.SporcleLib.Modal.openFlorinPlayGoalModal({ // Fudge these values to be at the goal, since we haven't necessarily logged this play yet and it might be the 7th curr_streak : florinsPlayGoalData.goal_days, reward_claimable : true, plays_today : florinsPlayGoalData.plays_today + 1, goal_days : florinsPlayGoalData.goal_days, reward_amount : florinsPlayGoalData.reward_amount, })}}if (is_flagship_app_view) {let animations = window.animations;let hapticType = 'success';let completeMsg;let animConfig = {animationData : animations.checkmark,loop : true,playSegments : [[0, 30], [31, 75]]};if (userPct == 1) {animConfig.animationData = animations.perfectScore;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Perfect Score!";} else if (timerSecs == 0) {hapticType = 'error';animConfig.animationData = animations.outOfTime;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Out of Time!";} else if (_spks && !didGiveUp) {hapticType = 'error';animConfig.animationData = animations.bomb;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "You Hit a Mine!";}window.SporcleLib.Modal.openModalFromTpl($j('#post-game-modal-tpl').html(), {show_loading : false,onInit : (modal) => {let $modal = modal.$modal; $modal.attr('id', 'postGameModal'); postGameAnim = lottie.loadAnimation({container : $modal.find('#postGameIcon')[0],animationData : animConfig.animationData,loop : animConfig.loop,autoplay : false});$modal.find('.modal-close').on('click', () => {window.continuePostQuiz();}); $modal.find('#completeMsg').html(completeMsg); $modal.find('#postPct').html(roundPercentScore(userPct));$modal.find('#postCorrect').html($j('#reckoning-score').text());if (snark) {$modal.find('#snark').html(snark);} else {$modal.find('#snark').hide();}setTimeout(() => {postGameAnim.playSegments(animConfig.playSegments, true);// if (hapticType) {// setTimeout(() => {// window.SporcleApp.api.playHaptic(hapticType);// }, 150);// }}, 150);},onClose : () => {checkToOpenFlorinPlayGoalModal();}});} else {checkToOpenFlorinPlayGoalModal();}}$j('#playGameBox').empty().hide();$j('#postGameBox').show();}function toggleshow() {showans = !showans;}function roundPercentScore(pctScore) {return _.round(100 * pctScore);}function updateBadge(userPct) {var earned = false;if (quizBadge && userPct > 0) { if (quizBadge.criteria && quizBadge.criteria.length) { var requiredCount = quizBadge.criteria.length; var earnedCount = 0; //Loop through possible badge criteria to see if we earned them quizBadge.criteria.forEach(function (criterion) { var comparison = parseInt(criterion.compare); if(criterion.name === 'percent'){ if ((comparison === 0 && userPct === parseFloat(criterion.value)) || //'0' means percent needs to equal (comparison === 1 && userPct > parseFloat(criterion.value)) || //'1' means percent needs to be greater than (comparison === -1 && userPct < parseFloat(criterion.value)) //'-1' means percent needs to be less than (at the time of writing, no badge exists like this) ) { earnedCount++; } } else if (criterion.name === 'month'){ var d = new Date(); //getMonth() starts at 0 if((d.getMonth() + 1 == criterion.value && comparison === 0) || (d.getMonth() + 1 > criterion.value && comparison === 1) || (d.getMonth() + 1 < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day'){ var d = new Date(); if((d.getDate() == criterion.value && comparison === 0) || (d.getDate() > criterion.value && comparison === 1) || (d.getDate() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day_of_the_week'){ var d = new Date(); if((d.getDay() == criterion.value && comparison === 0) || (d.getDay() > criterion.value && comparison === 1) || (d.getDay() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'avg_percent' && typeof averageScore !== 'undefined') {var roundedUserPct = _.round(userPct, 2); //matches backend precision in badge trackervar roundedAvgPct = _.round(averageScore, 2);if((roundedUserPct == roundedAvgPct && comparison === 0) || (roundedUserPct > roundedAvgPct && comparison === 1) || (roundedUserPct < roundedAvgPct && comparison === -1) ){ earnedCount++; } }}); earned = earnedCount == requiredCount;} else {earned = true;}} if (earned) {quizBadge.condition_earned = true;quizBadge.achieved_count++; var spliceIndex = null;_(quizBadge.remaining_conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {spliceIndex = index;}});_(quizBadge.conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {condition.earned = true;}});if (spliceIndex !== null) {quizBadge.remaining_conditions.splice(spliceIndex, 1); quizBadge.condition_earned_date = (new Date()).toLocaleDateString(undefined, { year: 'numeric', month: 'long', day: 'numeric' });; }if (quizBadge.remaining_conditions.length === 0 ) {if (quizBadge.badge_earned && quizBadge.levelable) {quizBadge.achieved_count = 0;quizBadge.level++;var currDate = new Date();quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();} else {quizBadge.badge_earned = true;var currDate = new Date();quizBadge.earned_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();if (quizBadge.levelable) {quizBadge.level = 1;quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();quizBadge.achieved_count = 0;}}}if (badgeTooltip) {badgeTooltip.deactivate();}if (badgeTooltipRightRail) {badgeTooltipRightRail.deactivate();}var template = _.template($j('#quiz-badge-template').html());if (window.mweb) {$j('#main-wrapper .quiz-badge').replaceWith($j(template(quizBadge)));} else {quizBadge.tooltip_trigger_id = 'quiz-badge-art';$j('#main-quiz-content .quiz-badge').replaceWith($j(template(quizBadge)));quizBadge.tooltip_trigger_id = 'quiz-badge-art-right-rail';$j('#right-rail .quiz-badge').replaceWith($j(template(quizBadge)));if (!quizBadge.badge_earned) {if (window.setupUnearnedBadgeTooltip) {window.setupUnearnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupUnearnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);} else {var conditionsTemp = _.template($j('#badge-conditions-template').html());var tooltipHtml = $j(conditionsTemp(quizBadge));const badgeTooltipOptions = { //this should match /sporcle-ui/tooltips/functionalTooltipstarget : true,tipJoint : 'bottom middle',showOn : 'mouseover',hideTriggers : ['target','tip'],stemLength : 8,stemBase : 12,hideOn : 'mouseout',removeElementsOnHide : true,background : 'white',borderColor : '#d8d8d8',borderWidth : 1,shadowOffset : [3,3],shadowBlur : 10,showEffect : 'slide',showEffectDuration : 0.1,hideEffectDuration : 0.3,className : 'badge-tooltip',shadowColor : 'rgba(0,0,0,0.25)'};badgeTooltip = new Opentip('#quiz-badge-art', tooltipHtml.html(), badgeTooltipOptions);badgeTooltipRightRail = new Opentip('#quiz-badge-art-right-rail', tooltipHtml.html(), badgeTooltipOptions);}} else {if (window.setupEarnedBadgeTooltip) {window.setupEarnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupEarnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);}}}}}function showHintTooltip(x, y, hint) {$hint = $j('#hintTooltip');if ($hint.length == 0) {$hint = $j('

' +'

' +'

' +'

' +'

' +'

').appendTo($j('body'));}if (hint) {var $afterContainer = $hint.find('.afterContainer');var $after = $hint.find('.after');// Set to max width before resize$afterContainer.css({width: '120px'});$hint.show();// Set tooltip text to hint$after.html(hint);// Get width of tooltip with textvar width = Math.ceil($after[0].offsetWidth) + 1;var leftShift = 0;if (mweb) {// Make sure the tooltip doesn't go off either side of the screenvar leftBound = 51;var rightBound = $j('body').width() - 71;var buf = 11;// Shift based on width of textvar shiftLimit = Math.max(width/2 - 20, 0);if (x < leftBound) {// Too close to left edge of screenleftShift = -shiftLimit;x = Math.max(x, buf);} else if (x > rightBound) {// Too close to right edge of screenleftShift = shiftLimit;x = Math.min(x, $j('body').width() - buf);}}// Set the position of the hint$hint.css({left: x + 'px',top: y + 'px',});// Set outer container size and position$afterContainer.css({width: width + 'px',left: '-' + ((width / 2) + leftShift) + 'px'});} else {$hint.hide();}}function getRandomColor() {var r = Math.round(Math.random() * 255);var g = Math.round(Math.random() * 255);var b = Math.round(Math.random() * 255);return 'rgb(' + r + ',' + g + ',' + b + ')';}function hintTooltipIsDisplayed() {return $j('#hintTooltip').is(':visible');}function getCurrentHintText() {return $j('#hintTooltip .afterContainer .after').text();}async function runStartCode(stopwatch) {if (typeof gamePageIsLoaded != "undefined" && gamePageIsLoaded) {if (window.startTriggered) {return;} else {window.startTriggered = true;}if (typeof stopwatch !== 'undefined') {if (stopwatch) {window.selectTimerSetting('stopwatch');} else {window.selectTimerSetting('timer');}}startGame(1500);callSPHooks('postStart');}}function callSPHooks(name) {if (typeof _spHooks != 'undefined') {var hlen = _spHooks[name].length;for (var i = 0; i < hlen; i++) {_spHooks[name][i]();}}}

0/500

Quiz is untimed. Quiz plays in practice mode will not be counted towards challenge completion or badge progress.

25:00

Giver of QuestQuest Name
Merle Ambrose
Private Connelly
Ceren Nightchant
Ceren Nightchant
Lady Oriel
Lady Oriel
Ceren Nightchant
Ceren Nightchant
Merle Ambrose
Merle Ambrose
Sergeant Muldoon
Sergeant Muldoon
Artur Gryphonbane
Artur Gryphonbane
Duncan Grimwater
Duncan Grimwater
Blad Raveneye
Blad Raveneye
Duncan Grimwater
Suzie Gryphonbane
Artur Gryphonbane
Sergeant Muldoon
Nolan Stormgate
Nolan Stormgate
Nolan Stormgate
Electra StormCloud
Romulus
Sergeant Muldoon
Private Quinn
Lizzo FireSpitter
Gretta Darkkettle
Gretta Darkkettle
Gretta Darkkettle
Gretta Darkkettle
Sergeant Muldoon
Daisy Willowmancer
Daisy Willowmancer
Merle Ambrose
Merle Ambrose
Sergeant Major Talbot
Professor Winthrop
Professor Winthrop
Professor Winthrop
Professor Winthrop
Assistant Danforth
Assistant Danforth
Assistant Danforth
Assistant Danforth
Professor Winthrop
Lieutenant Standish
Lieutenant Standish
Lieutenant Standish
Lieutenant Standish
Professor Winthrop
Professor Winthrop
Sergeant Major Talbot
Alhazred
Shalek the Wise
Rami
Rami
Rami
General Khaba
General Khaba
General Khaba
General Khaba
General Khaba
General Khaba
General Khaba
General Khaba
General Khaba
Shalek the Wise
Ako
Ako
Arena Master
Arena Master
Arena Master
Arena Master
Arena Master
Arena Master
Arena Master
Arena Master
Arena Master
Khai Amahte the Great
Shalek the Wise
Shalek the Wise
Shalek the Wise
Sergeant Major Talbot
Ghost of Krokohtep
Ghost of Krokohtep
Ghost of Krokohtep
Ghost of Krokohtep
Ghost of Krokohtep
Sergeant Major Talbot
Private Kinchley
Clancy Pembroke
Mayor Pimsbury
Sherlock Bones
Ms. Conrail
Ms. Conrail
Ms. Conrail
Ms. Conrail
Ms. Conrail
Sherlock Bones
Ms. Marphely
Ms. Marphely
William Pugsby
William Pugsby
William Pugsby
Ms. Marphely
Ms. Marphely
Sherlock Bones
Sherlock Bones
Sherlock Bones
Watson
Officer Ness
Watson
Sergeant Steeg
Sergeant Steeg
Sergeant Steeg
Sergeant Steeg
Sergeant Steeg
Sergeant Steeg
Sergeant Steeg
Sergeant Steeg
Watson
Watson
Clancy Pembroke
Clancy Pembroke
Sherlock Bones
Sherlock Bones
Merle Ambrose
Su Lee
Noboru Akitame
Lo Pang
Noboru Akitame
Noboru Akitame
Jade Champion
Tan Keng
Shojiro Gama
Shojiro Gama
Shojiro Gama
Shojiro Gama
Shojiro Gama
Shojiro Gama
Sanisai f*ckido
Sanisai f*ckido
Shai Fung
Shai Fung
Shai Fung
Shai Fung
Sanisai f*ckido
Sanisai f*ckido
Sanisai f*ckido
Sanisai f*ckido
Shojiro Gama
Shojiro Gama
Tan Keng
Sun Hing
Din Ho
Din Ho
Din Ho
Din Ho
Din Ho
Din Ho
Din Ho
Din Ho
Sun Hing
Giver of QuestQuest Name
Tu Luk Kwo
Khin-Pao
Khin-Pao
Khin-Pao
Tu Luk Kwo
Tu Luk Kwo
Woo Ping
Woo Ping
Tu Luk Kwo
Tu Luk Kwo
Sesshu Nedaki
Sesshu Nedaki
Sesshu Nedaki
Sesshu Nedaki
Sesshu Nedaki
Tu Luk Kwo
Sun Hing
Sun Hing
Tan Keng
Hideo Kebo
Ichiro Kebo
Ichiro Kebo
Ichiro Kebo
Ichiro Kebo
Ichiro Kebo
Ichiro Kebo
Ichiro Kebo
Hideo Kebo
Ken Shui
Ken Shui
Ken Shui
Ken Shui
Xihong Bi
Xihong Bi
Ken Shui
Ken Shui
Hideo Kebo
Tan Keng
Emperor Yoshihito
Merle Ambrose
Cyrus Drake
Milos Bookwyrm
Milos Bookwyrm
Zarathax
Zarathax
Zarathax
Zarathax
Zarathax
Zarathax
Zarathax
Zarathax
Milos Bookwyrm
Laszlo Starblade
Zanna Fireflower
Zanna Fireflower
Laszlo Starblade
Halina Warhawk
Halina Warhawk
Laszlo Starblade
Mavra Flamewing
Laszlo Starblade
Laszlo Starblade
Sandor Spearcaller
Laszlo Starblade
Laszlo Starblade
Milos Bookwyrm
Belia Windgazer
Edrik Scatterglow
Edrik Scatterglow
Edrik Scatterglow
Belia Windgazer
Edrik Scatterglow
Edrik Scatterglow
Belia Windgazer
Belia Windgazer
Laszlo Starblade
Laszlo Starblade
Cyrus Drake
Cyrus Drake
Crystal Guide
Castamir Silverdrake
Castamir Silverdrake
Castamir Silverdrake
Castamir Silverdrake
Kimerith Windhammer
Castamir Silverdrake
Castamir Silverdrake
Kimerith Windhammer
Castamir Silverdrake
Crystal Guide
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Zanetta Stormbreaker
Milos Bookwyrm
Cyrus Drake
Cyrus Drake
Ashley
Ashley
Zarek Pickmaster
Zarek Pickmaster
Zarek Pickmaster
Milaka Jewelbender
Milaka Jewelbender
Milaka Jewelbender
Milaka Jewelbender
Milaka Jewelbender
Milaka Jewelbender
Ashley
Ashley
Castamir Silverdrake
Ancient Matriarch
Ancient Matriarch
Ancient Matriarch
Ancient Matriarch
Ancient Matriarch
Castamir Silverdrake
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Vidor Drakesmith
Ancient Matriarch
Ashley
Merle Ambrose
Edith Benchley
Dalton Prescott
Dalton Prescott
Dalton Prescott
Dalton Prescott
Rutherford West
Rutherford West
Dalton Prescott
Rupert Fleming
Rupert Fleming
Rupert Fleming
Rupert Fleming
Rupert Fleming
Rupert Fleming
Dalton Prescott
Edith Benchley
Thornton Lewis
Thornton Lewis
Thornton Lewis
Thornton Lewis
Thornton Lewis
Thornton Lewis
Thornton Lewis
Thornton Lewis
The Archivist
The Archivist
Thornton Lewis
Edith Benchley
Giver of QuestQuest Name
Pierce Stanson
Pierce Stanson
Pierce Stanson
Pierce Stanson
Tupa Taua
Tupa Taua
Tupa Taua
Tupa Taua
Coruscade
Coruscade
Coruscade
Coruscade
Edith Benchley
Leland Hawkins
Leland Hawkins
Leland Hawkins
Leland Hawkins
Karolak Nightspinner
Karolak Nightspinner
Leland Hawkins
Vassek Shadowspite
Vassek Shadowspite
Leland Hawkins
The Archivist
The Archivist
Edith Benchley
Edith Benchley
Piper Melville
Piper Melville
Piper Melville
Piper Melville
Engineer Montgomery
Engineer Montgomery
Engineer Montgomery
Engineer Montgomery
Engineer Montgomery
Engineer Montgomery
Engineer Montgomery
Engineer Montgomery
Engineer Montgomery
Edith Benchley
Nestor
Nestor
Nestor
Nestor
Nestor
Senator Xanthus
Senator Xanthus
Senator Xanthus
Thurston Plunkett
Lieutenant Dafoe
Lieutenant Dafoe
Lieutenant Dafoe
Lieutenant Dafoe
Queen Calypso
Queen Calypso
Thurston Plunkett
Edith Benchley
Edith Benchley
Merle Ambrose
Dalia Falmea
Sir Reginald Baxby
Inyanga Whitestripes
Lethu Blunthoof
Koyate Ghostmane
Koyate Ghostmane
Lethu Blunthoof
Inyanga Whitestripes
Rasik Pridefall
Kakenya Brokenfang
Kakenya Brokenfang
Unathi Nightrunner
Unathi Nightrunner
Vir Goodheart
Vir Goodheart
Inyanga Whitestripes
Lethu Blunthoof
Tik-Tik Snaketongue
Tik-Tik Snaketongue
Olemeeli Thornpaw
Olemeeli Thornpaw
Olemeeli Thornpaw
Tik-Tik Snaketongue
Kakuta Darkmane
Kakuta Darkmane
Kakuta Darkmane
Eden Windforest
Captain Bheki Blackhoof
Captain Bheki Blackhoof
Captain Bheki Blackhoof
Captain Bheki Blackhoof
Eden Windforest
Eden Windforest
Kakuta Darkmane
Tik-Tik Snaketongue
Tik-Tik Snaketongue
Inyanga Whitestripes
Inyanga Whitestripes
Queen Tanei Ghostmane
Inyanga Whitestripes
Inyanga Whitestripes
Inyanga Whitestripes
Queen Tanei Ghostmane
Esop Thornpaw
Esop Thornpaw
Queen Tanei Ghostmane
Captain Bheki Blackhoof
Captain Bheki Blackhoof
Captain Bheki Blackhoof
Sizanni Sunrunner
Sizanni Sunrunner
Sizanni Sunrunner
Sizanni Sunrunner
Sizanni Sunrunner
Sizanni Sunrunner
Tse-Tse Snaketail
Tse-Tse Snaketail
Sizanni Sunrunner
Sizanni Sunrunner
Sizanni Sunrunner
Sizanni Sunrunner
Sizanni Sunrunner
Sizanni Sunrunner
Amahle Autumnrain
Amahle Autumnrain
Amahle Autumnrain
Amahle Autumnrain
Themba Truestrider
Amahle Autumnrain
Shaka Zebu
Amahle Autumnrain
Hannibal Onetusk
Esop Thornpaw
Esop Thornpaw
Hannibal Onetusk
Hannibal Onetusk
Hannibal Onetusk
Amar Sharptusk
Amar Sharptusk
Aryanah Silvertusk
Hathi Irontrunk
Hathi Irontrunk
Hathi Irontrunk
Hathi Irontrunk
Lail Brighteyes
Aryanah Silvertusk
Hathi Irontrunk
Hathi Irontrunk
Hathi Irontrunk
Tala Snakesquasher
Tala Snakesquasher
Hannibal Onetusk
Hannibal Onetusk
Sobaka
Sobaka
Sobaka
Sobaka
Sobaka
Sobaka
Hathi Irontrunk
Hathi Irontrunk
Vir Goodheart
Vir Goodheart
Vir Goodheart
Aryanah Silvertusk
Aryanah Silvertusk
Wizard101 Quests in Order (Pt 1/4) (2024)
Top Articles
Latest Posts
Article information

Author: Lilliana Bartoletti

Last Updated:

Views: 6168

Rating: 4.2 / 5 (53 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Lilliana Bartoletti

Birthday: 1999-11-18

Address: 58866 Tricia Spurs, North Melvinberg, HI 91346-3774

Phone: +50616620367928

Job: Real-Estate Liaison

Hobby: Graffiti, Astronomy, Handball, Magic, Origami, Fashion, Foreign language learning

Introduction: My name is Lilliana Bartoletti, I am a adventurous, pleasant, shiny, beautiful, handsome, zealous, tasty person who loves writing and wants to share my knowledge and understanding with you.