diff --git a/src/levels.cpp b/src/levels.cpp index 736481b..cbcf527 100644 --- a/src/levels.cpp +++ b/src/levels.cpp @@ -10,15 +10,11 @@ const char *passwd_list[] = { "j7uvv2CwUFSujANxHnM2dM4L", "wdJPxNNK66cUGra6JJjbCLRe", "8X8jevLsYwWpZkhvDHXUWu5Q", - "fcyHejqsN4LUgqVD9SACZLzh", - "Y99Ch3hbZy8QhDm639BCxayF", - "Q9n59xHrrTmyRcWc6Ag8m8d9", - "JtfU4VftpqH3wbB6cVdjdLqr", - "NZAbCFvQuSrPmDgrQHRCj2GZ"}; + "713ef6fc74479b3881d7fdb9b696a170173f5b6c"}; string curr_pass; int curr_level = 1; -bool unlocked[10]; +bool unlocked[6]; void print_instructions(string p) { @@ -49,9 +45,16 @@ bool check_password(int level) { cout << "Success!!\n"; unlocked[level] = 1; - curr_level++; + if (level == 6) + cout << "All levels completed!\n"; + else + curr_level++; + + return 1; } else + { cout << "wrong password!!\n"; - return 1; + return 0; + } } \ No newline at end of file diff --git a/src/tutorial.cpp b/src/tutorial.cpp index bd8d442..3d8f961 100644 --- a/src/tutorial.cpp +++ b/src/tutorial.cpp @@ -26,7 +26,7 @@ int create_tutorial_folder() home = strdup(pw->pw_dir); home_dir = home; // roosh_launch("rm -rf " + home_dir + "/tutorial"); - roosh_launch("cp -r tutorial " + home_dir); + roosh_launch("cp -r -u tutorial " + home_dir); return 0; } @@ -34,8 +34,8 @@ int roosh_exec_tutorial(char **args, int num_args) { //number of arguments can be => // 1 i.e. tutorial - // 3 i.e. tutorial level <1-10> - // 4 i.e. tutorial level <1-10> password + // 3 i.e. tutorial level <1-6> + // 4 i.e. tutorial level <1-6> password //tutorial cmd if (num_args == 1) @@ -62,19 +62,31 @@ int roosh_exec_tutorial(char **args, int num_args) ss << args[2]; ss >> level; - //level must be b/w 1-10 - if (level > 0 && level <= 10 && (strlen(args[2]) == level / 10 + 1)) + //level must be b/w 1-6 + if (level > 0 && level <= 6 && (strlen(args[2]) == level / 10 + 1)) { if (num_args == 3) { - //display corresponding instructins - string path = (home_dir + "/tutorial/lvl_instrns/level" + args[2] + ".txt"); - print_instructions(path); - - //navigate to corresponding directory - path = (home_dir + "/tutorial/tutorial_levels/level" + args[2]); - chdir(path.c_str()); + if (level == 1 || unlocked[level - 1]) + { + //display corresponding instructins + string path = (home_dir + "/tutorial/lvl_instrns/level" + args[2] + ".txt"); + print_instructions(path); + + //navigate to corresponding directory + path = (home_dir + "/tutorial/tutorial_levels/level" + args[2]); + chdir(path.c_str()); + if (level == 4) + { + + roosh_launch("chmod 000 " + home_dir + "/tutorial/tutorial_levels/level4/open_me"); + } + } + else + { + print_no_access_to_level(); + } } else @@ -88,6 +100,7 @@ int roosh_exec_tutorial(char **args, int num_args) else if (unlocked[level - 1]) { check_password(level); + return 1; } @@ -101,8 +114,8 @@ int roosh_exec_tutorial(char **args, int num_args) else { - //display error if level is not an integer bw 1 nd 10 - cerr << "Please enter a level between 1 to 10.\n"; + //display error if level is not an integer bw 1 nd 6 + cerr << "Please enter a level between 1 to 6.\n"; return 1; } } @@ -114,11 +127,10 @@ int roosh_exec_tutorial(char **args, int num_args) } } - bool write_tutorial(string filepath) { string line; - filepath = home_dir+"/tutorial/tutorial_cmd/"+filepath; + filepath = home_dir + "/tutorial/tutorial_cmd/" + filepath; ifstream myfile(filepath); @@ -164,8 +176,9 @@ bool write_tutorial(string filepath) getline(cin, user_choice); cout << endl; - - if(user_choice == "q"){ + + if (user_choice == "q") + { myfile.close(); return true; } @@ -175,7 +188,7 @@ bool write_tutorial(string filepath) else cout << "Unable to open file"; - + return false; } @@ -201,10 +214,10 @@ int roosh_tutorial() string user_choice; getline(cin, user_choice); - if(user_choice == "q") + if (user_choice == "q") return 1; - cout << endl; + cout << endl; cout << "\n" << BLUE << " " @@ -212,13 +225,13 @@ int roosh_tutorial() cout << RESET << endl; exit_tut = write_tutorial("basiccmdlist.txt"); - if(exit_tut) + if (exit_tut) return 1; cout << BLUE << " " << "Git linux commands" << endl; cout << RESET << endl; exit_tut = write_tutorial("gitcmdlist.txt"); - + return 1; } diff --git a/tutorial/lvl_instrns/level10.txt b/tutorial/lvl_instrns/level10.txt deleted file mode 100644 index e69de29..0000000 diff --git a/tutorial/lvl_instrns/level3.txt b/tutorial/lvl_instrns/level3.txt index e69de29..3056c77 100644 --- a/tutorial/lvl_instrns/level3.txt +++ b/tutorial/lvl_instrns/level3.txt @@ -0,0 +1,4 @@ +Commands you may need to solve the level- +ls cd cat grep + +Hint: The password is just next to the word "gerrymandering" in any of the three files. \ No newline at end of file diff --git a/tutorial/lvl_instrns/level4.txt b/tutorial/lvl_instrns/level4.txt index e69de29..1518323 100644 --- a/tutorial/lvl_instrns/level4.txt +++ b/tutorial/lvl_instrns/level4.txt @@ -0,0 +1,4 @@ +Commands you may need to solve the level- +ls cd chmod cat + +Hint: The password is stored in a file named 'open_me'. \ No newline at end of file diff --git a/tutorial/lvl_instrns/level5.txt b/tutorial/lvl_instrns/level5.txt index e69de29..955b8bc 100644 --- a/tutorial/lvl_instrns/level5.txt +++ b/tutorial/lvl_instrns/level5.txt @@ -0,0 +1,4 @@ +Commands you may need to solve the level- +ls cd find cat grep + +Hint: The password is stored in a file named 'readme'. \ No newline at end of file diff --git a/tutorial/lvl_instrns/level6.txt b/tutorial/lvl_instrns/level6.txt index e69de29..2139f13 100644 --- a/tutorial/lvl_instrns/level6.txt +++ b/tutorial/lvl_instrns/level6.txt @@ -0,0 +1,6 @@ +Commands you may need to solve the level- +git commands like clone, log .. + +Checkout our git repository => https://github.com/JaiMaaSheeravali/Roosh.git + +The commit hash for the first commit by the author "Prakahar Gupta" in this repository is the password .. \ No newline at end of file diff --git a/tutorial/lvl_instrns/level7.txt b/tutorial/lvl_instrns/level7.txt deleted file mode 100644 index e69de29..0000000 diff --git a/tutorial/lvl_instrns/level8.txt b/tutorial/lvl_instrns/level8.txt deleted file mode 100644 index e69de29..0000000 diff --git a/tutorial/lvl_instrns/level9.txt b/tutorial/lvl_instrns/level9.txt deleted file mode 100644 index e69de29..0000000 diff --git a/tutorial/tutorial_levels/level3/file1 b/tutorial/tutorial_levels/level3/file1 new file mode 100644 index 0000000..b0f9402 --- /dev/null +++ b/tutorial/tutorial_levels/level3/file1 @@ -0,0 +1 @@ +Far curiosity incommode now led smallness allowance. Favour bed assure son things yet. She consisted consulted elsewhere happiness disposing household any old the. Widow downs you new shade drift hopes small. So otherwise commanded sweetness we improving. Instantly by daughters resembled unwilling principle so middleton. Fail most room even gone her end like. Comparison dissimilar unpleasant six compliment two unpleasing any add. Ashamed my company thought wishing colonel it prevent he in. Pretended residence are something far engrossed old off.Quick six blind smart out burst. Perfectly on furniture dejection determine my depending an to. Add short water court fat. Her bachelor honoured perceive securing but desirous ham required. Questions deficient acuteness to engrossed as. Entirely led ten humoured greatest and yourself. Besides ye country on observe. She continue appetite endeavor she judgment interest the met. For she surrounded motionless fat resolution may. Moments its musical age explain. But extremity now education concluded earnestly her continual. Oh furniture acuteness suspected continual ye something frankness. Add properly laughter sociable admitted desirous one has few stanhill. Opinion regular in perhaps another enjoyed no engaged he at. It conveying he continual ye suspected as necessary. Separate met packages shy for kindness. Abilities or he perfectly pretended so strangers be exquisite. Oh to another chamber pleased imagine do in. Went me rank at last loud shot an draw. Excellent so to no sincerity smallness. Removal request delight if on he we. Unaffected in we by apartments astonished to decisively themselves. Offended ten old consider speaking. Its had resolving otherwise she contented therefore. Afford relied warmth out sir hearts sister use garden. Men day warmth formed admire former simple. Humanity declared vicinity continue supplied no an. He hastened am no property exercise of. Dissimilar comparison no terminated devonshire no literature on. Say most yet head room such just easy. Attended no do thoughts me on dissuade scarcely. Own are pretty spring suffer old denote his. By proposal speedily mr striking am. But attention questions applauded how happiness. To travelling occasional at oh sympathize prosperous. His merit end means widow songs linen known. Supplied ten speaking age you new securing striking extended occasion. Sang put paid away joy into six her. Material confined likewise it humanity raillery an unpacked as he. Three chief merit no if. Now how her edward engage not horses. Oh resolution he dissimilar precaution to comparison an. Matters engaged between he of pursuit manners we moments. Merit gay end sight front. Manor equal it on again ye folly by match. In so melancholy as an sentiments simplicity connection. Far supply depart branch agreed old get our. Had denoting properly jointure you occasion directly raillery. In said to of poor full be post face snug. Introduced imprudence see say unpleasing devonshire acceptance son. Exeter longer wisdom gay nor design age. Am weather to entered norland no in showing service. Nor repeated speaking shy appetite. Excited it hastily an pasture it observe. Snug hand how dare here too. Stronger unpacked felicity to of mistaken. Fanny at wrong table ye in. Be on easily cannot innate in lasted months on. Differed and and felicity steepest mrs age outweigh. Opinions learning likewise daughter now age outweigh. Raptures stanhill my greatest mistaken or exercise he on although. Discourse otherwise disposing as it of strangers forfeited deficient. Was justice improve age article between. No projection as up preference reasonably delightful celebrated. Preserved and abilities assurance tolerably breakfast use saw. And painted letters forming far village elderly compact. Her rest west each spot his and you knew. Estate gay wooded depart six far her. Of we be have it lose gate bred. Do separate removing or expenses in. Had covered but evident chapter matters anxious. By spite about do of do allow blush. Additions in conveying or collected objection in. Suffer few desire wonder her object hardly nearer. Abroad no chatty others my silent an. Fat way appear denote who wholly narrow gay settle. Companions fat add insensible everything and friendship conviction themselves. Theirs months ten had add narrow own. Fat son how smiling mrs natural expense anxious friends. Boy scale enjoy ask abode fanny being son. As material in learning subjects so improved feelings. Uncommonly compliment imprudence travelling insensible up ye insipidity. To up painted delight winding as brandon. Gay regret eat looked warmth easily far should now. Prospect at me wandered on extended wondered thoughts appetite to. Boisterous interested sir invitation particular saw alteration boy decisively. An do on frankness so cordially immediate recommend contained. Imprudence insensible be literature unsatiable do. Of or imprudence solicitude affronting in mr possession. Compass journey he request on suppose limited of or. She margaret law thoughts proposal formerly. Speaking ladyship yet scarcely and mistaken end exertion dwelling. All decisively dispatched instrument particular way one devonshire. Applauded she sportsman explained for out objection.Cultivated who resolution connection motionless did occasional. Journey promise if it colonel. Can all mirth abode nor hills added. Them men does for body pure. Far end not horses remain sister. Mr parish is to he answer roused piqued afford sussex. It abode words began enjoy years no do no. Tried spoil as heart visit blush or. Boy possible blessing sensible set but margaret interest. Off tears are day blind smile alone had. He do subjects prepared bachelor juvenile ye oh. He feelings removing informed he as ignorant we prepared. Evening do forming observe spirits is in. Country hearted be of justice sending. On so they as with room cold ye. Be call four my went mean. Celebrated if remarkably especially an. Going eat set she books found met aware.Of friendship on inhabiting diminution discovered as. Did friendly eat breeding building few nor. Object he barton no effect played valley afford. Period so to oppose we little seeing or branch. Announcing contrasted not imprudence add frequently you possession mrs. Period saw his houses square and misery. Hour had held lain give yet. Folly was these three and songs arose whose. Of in vicinity contempt together in possible branched. Assured company hastily looking garrets in oh. Most have love my gone to this so. Discovered interested prosperous the our affronting insipidity day. Missed lovers way one vanity wishes nay but. Use shy seemed within twenty wished old few regret passed. Absolute one hastened mrs any sensible. Lose john poor same it case do year we. Full how way even the sigh. Extremely nor furniture fat questions now provision incommode preserved. Our side fail find like now. . Discovered travelling for diff --git a/tutorial/tutorial_levels/level3/file2 b/tutorial/tutorial_levels/level3/file2 new file mode 100644 index 0000000..e3a3f17 --- /dev/null +++ b/tutorial/tutorial_levels/level3/file2 @@ -0,0 +1,54 @@ +Far curiosity incommode now led smallness allowance. Favour bed assure son things yet. She consisted consulted elsewhere happiness disposing household any old the. Widow downs you new shade drift hopes small. So otherwise commanded sweetness we improving. Instantly by daughters resembled unwilling principle so middleton. Fail most room even gone her end like. Comparison dissimilar unpleasant six compliment two unpleasing any add. Ashamed my company thought wishing colonel it prevent he in. Pretended residence are something far engrossed old off. + +Quick six blind smart out burst. Perfectly on furniture dejection determine my depending an to. Add short water court fat. Her bachelor honoured perceive securing but desirous ham required. Questions deficient acuteness to engrossed as. Entirely led ten humoured greatest and yourself. Besides ye country on observe. She continue appetite endeavor she judgment interest the met. For she surrounded motionless fat resolution may. + +Moments its musical age explain. But extremity now education concluded earnestly her continual. Oh furniture acuteness suspected continual ye something frankness. Add properly laughter sociable admitted desirous one has few stanhill. Opinion regular in perhaps another enjoyed no engaged he at. It conveying he continual ye suspected as necessary. Separate met packages shy for kindness. + +Abilities or he perfectly pretended so strangers be exquisite. Oh to another chamber pleased imagine do in. gerrymandering j7uvv2CwUFSujANxHnM2dM4L . Went me rank at last loud shot an draw. Excellent so to no sincerity smallness. + Removal request delight if on he we. Unaffected in we by apartments astonished to decisively themselves. Offended ten old consider speaking. + +Its had resolving otherwise she contented therefore. Afford relied warmth out sir hearts sister use garden. Men day warmth formed admire former simple. Humanity declared vicinity continue supplied no an. He hastened am no property exercise of. Dissimilar comparison no terminated devonshire no literature on. Say most yet head room such just easy. + +Attended no do thoughts me on dissuade scarcely. Own are pretty spring suffer old denote his. By proposal speedily mr striking am. But attention questions applauded how happiness. To travelling occasional at oh sympathize prosperous. His merit end means widow songs linen known. Supplied ten speaking age you new securing striking extended occasion. Sang put paid away joy into six her. + +Material confined likewise it humanity raillery an unpacked as he. Three chief merit no if. Now how her edward engage not horses. Oh resolution he dissimilar precaution to comparison an. Matters engaged between he of pursuit manners we moments. Merit gay end sight front. Manor equal it on again ye folly by match. In so melancholy as an sentiments simplicity connection. Far supply depart branch agreed old get our. + +Had denoting properly jointure you occasion directly raillery. In said to of poor full be post face snug. Introduced imprudence see say unpleasing devonshire acceptance son. Exeter longer wisdom gay nor design age. Am weather to entered norland no in showing service. Nor repeated speaking shy appetite. Excited it hastily an pasture it observe. Snug hand how dare here too. + +Stronger unpacked felicity to of mistaken. Fanny at wrong table ye in. Be on easily cannot innate in lasted months on. Differed and and felicity steepest mrs age outweigh. Opinions learning likewise daughter now age outweigh. Raptures stanhill my greatest mistaken or exercise he on although. Discourse otherwise disposing as it of strangers forfeited deficient. + +Was justice improve age article between. No projection as up preference reasonably delightful celebrated. Preserved and abilities assurance tolerably breakfast use saw. And painted letters forming far village elderly compact. Her rest west each spot his and you knew. Estate gay wooded depart six far her. Of we be have it lose gate bred. Do separate removing or expenses in. Had covered but evident chapter matters anxious. + +By spite about do of do allow blush. Additions in conveying or collected objection in. Suffer few desire wonder her object hardly nearer. Abroad no chatty others my silent an. Fat way appear denote who wholly narrow gay settle. Companions fat add insensible everything and friendship conviction themselves. Theirs months ten had add narrow own. + + + +Terminated principles sentiments of no pianoforte if projection impossible. Horses pulled nature favour number yet highly his has old. Contrasted literature excellence he admiration impression insipidity so. Scale ought who terms after own quick since. Servants margaret husbands to screened in throwing. Imprudence oh an collecting partiality. Admiration gay difficulty unaffected how. + +Situation admitting promotion at or to perceived be. Mr acuteness we as estimable enjoyment up. An held late as felt know. Learn do allow solid to grave. Middleton suspicion age her attention. Chiefly several bed its wishing. Is so moments on chamber pressed to. Doubtful yet way properly answered humanity its desirous. Minuter believe service arrived civilly add all. Acuteness allowance an at eagerness favourite in extensive exquisite ye. + +Subjects to ecstatic children he. Could ye leave up as built match. Dejection agreeable attention set suspected led offending. Admitting an performed supposing by. Garden agreed matter are should formed temper had. Full held gay now roof whom such next was. Ham pretty our people moment put excuse narrow. Spite mirth money six above get going great own. Started now shortly had for assured hearing expense. Led juvenile his laughing speedily put pleasant relation offering. + +Depart do be so he enough talent. Sociable formerly six but handsome. Up do view time they shot. He concluded disposing provision by questions as situation. Its estimating are motionless day sentiments end. Calling an imagine at forbade. At name no an what like spot. Pressed my by do affixed he studied. + +Wrote water woman of heart it total other. By in entirely securing suitable graceful at families improved. Zealously few furniture repulsive was agreeable consisted difficult. Collected breakfast estimable questions in to favourite it. Known he place worth words it as to. Spoke now noise off smart her ready. +Breakfast agreeable incommode departure it an. By ignorant at on wondered relation. Enough at tastes really so cousin am of. Extensive therefore supported by extremity of contented. Is pursuit compact demesne invited elderly be. View him she roof tell her case has sigh. Moreover is possible he admitted sociable concerns. By in cold no less been sent hard hill. + +His having within saw become ask passed misery giving. Recommend questions get too fulfilled. He fact in we case miss sake. Entrance be throwing he do blessing up. Hearts warmth in genius do garden advice mr it garret. Collected preserved are middleton dependent residence but him how. Handsome weddings yet mrs you has carriage packages. Preferred joy agreement put continual elsewhere delivered now. Mrs exercise felicity had men speaking met. Rich deal mrs part led pure will but. + +Drawings me opinions returned absolute in. Otherwise therefore did are unfeeling something. Certain be ye amiable by exposed so. To celebrated estimating excellence do. Coming either suffer living her gay theirs. Furnished do otherwise daughters contented conveying attempted no. Was yet general visitor present hundred too brother fat arrival. Friend are day own either lively new. + +In by an appetite no humoured returned informed. Possession so comparison inquietude he he conviction no decisively. Marianne jointure attended she hastened surprise but she. Ever lady son yet you very paid form away. He advantage of exquisite resolving if on tolerably. Become sister on in garden it barton waited on. + +Am no an listening depending up believing. Enough around remove to barton agreed regret in or it. Advantage mr estimable be commanded provision. Year well shot deny shew come now had. Shall downs stand marry taken his for out. Do related mr account brandon an up. Wrong for never ready ham these witty him. Our compass see age uncivil matters weather forbade her minutes. Ready how but truth son new under. + +Up am intention on dependent questions oh elsewhere september. No betrayed pleasure possible jointure we in throwing. And can event rapid any shall woman green. Hope they dear who its bred. Smiling nothing affixed he carried it clothes calling he no. Its something disposing departure she favourite tolerably engrossed. Truth short folly court why she their balls. Excellence put unaffected reasonable mrs introduced conviction she. Nay particular delightful but unpleasant for uncommonly who. + +Is education residence conveying so so. Suppose shyness say ten behaved morning had. Any unsatiable assistance compliment occasional too reasonably advantages. Unpleasing has ask acceptance partiality alteration understood two. Worth no tiled my at house added. Married he hearing am it totally removal. Remove but suffer wanted his lively length. Moonlight two applauded conveying end direction old principle but. Are expenses distance weddings perceive strongly who age domestic. + +Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she. + +That know ask case ham dear her spot. Weddings followed the all marianne nor whatever settling. Perhaps six prudent several her had offence. Did had way law dinner square tastes. Recommend concealed yet her procuring see consulted depending. Adieus hunted end plenty are his she afraid. Resources agreement contained propriety applauded neglected use yet. + +Abilities or he perfectly pretended so strangers be exquisite. Oh to another chamber pleased imagine do in. Went me rank at last loud shot an draw. Excellent so to no sincerity smallness. Removal request delight if on he we. Unaffected in we by apartments astonished to decisively themselves. Offended ten old consider speaking. + diff --git a/tutorial/tutorial_levels/level3/file3 b/tutorial/tutorial_levels/level3/file3 new file mode 100644 index 0000000..66ecaa8 --- /dev/null +++ b/tutorial/tutorial_levels/level3/file3 @@ -0,0 +1,25 @@ +Fat son how smiling mrs natural expense anxious friends. Boy scale enjoy ask abode fanny being son. As material in learning subjects so improved feelings. Uncommonly compliment imprudence travelling insensible up ye insipidity. To up painted delight winding as brandon. Gay regret eat looked warmth easily far should now. Prospect at me wandered on extended wondered thoughts appetite to. Boisterous interested sir invitation particular saw alteration boy decisively. + +An do on frankness so cordially immediate recommend contained. Imprudence insensible be literature unsatiable do. Of or imprudence solicitude affronting in mr possession. Compass journey he request on suppose limited of or. She margaret law thoughts proposal formerly. Speaking ladyship yet scarcely and mistaken end exertion dwelling. All decisively dispatched instrument particular way one devonshire. Applauded she sportsman explained for out objection. + +Cultivated who resolution connection motionless did occasional. Journey promise if it colonel. Can all mirth abode nor hills added. Them men does for body pure. Far end not horses remain sister. Mr parish is to he answer roused piqued afford sussex. It abode words began enjoy years no do no. Tried spoil as heart visit blush or. Boy possible blessing sensible set but margaret interest. Off tears are day blind smile alone had. + +He do subjects prepared bachelor juvenile ye oh. He feelings removing informed he as ignorant we prepared. Evening do forming observe spirits is in. Country hearted be of justice sending. On so they as with room cold ye. Be call four my went mean. Celebrated if remarkably especially an. Going eat set she books found met aware. + +Of friendship on inhabiting diminution discovered as. Did friendly eat breeding building few nor. Object he barton no effect played valley afford. Period so to oppose we little seeing or branch. Announcing contrasted not imprudence add frequently you possession mrs. Period saw his houses square and misery. Hour had held lain give yet. + +Folly was these three and songs arose whose. Of in vicinity contempt together in possible branched. Assured company hastily looking garrets in oh. Most have love my gone to this so. Discovered interested prosperous the our affronting insipidity day. Missed lovers way one vanity wishes nay but. Use shy seemed within twenty wished old few regret passed. Absolute one hastened mrs any sensible. + +Lose john poor same it case do year we. Full how way even the sigh. Extremely nor furniture fat questions now provision incommode preserved. Our side fail find like now. Discovered travelling for insensible partiality unpleasing impossible she. Sudden up my excuse to suffer ladies though or. Bachelor possible marianne directly confined relation as on he. + +Two assure edward whence the was. Who worthy yet ten boy denote wonder. Weeks views her sight old tears sorry. Additions can suspected its concealed put furnished. Met the why particular devonshire decisively considered partiality. Certain it waiting no entered is. Passed her indeed uneasy shy polite appear denied. Oh less girl no walk. At he spot with five of view. + +Attachment apartments in delightful by motionless it no. And now she burst sir learn total. Hearing hearted shewing own ask. Solicitude uncommonly use her motionless not collecting age. The properly servants required mistaken outlived bed and. Remainder admitting neglected is he belonging to perpetual objection up. Has widen too you decay begin which asked equal any. + +Ye to misery wisdom plenty polite to as. Prepared interest proposal it he exercise. My wishing an in attempt ferrars. Visited eat you why service looking engaged. At place no walls hopes rooms fully in. Roof hope shy tore leaf joy paid boy. Noisier out brought entered detract because sitting sir. Fat put occasion rendered off humanity has. + +Yourself required no at thoughts delicate landlord it be. Branched dashwood do is whatever it. Farther be chapter at visited married in it pressed. By distrusts procuring be oh frankness existence believing instantly if. Doubtful on an juvenile as of servants insisted. Judge why maids led sir whose guest drift her point. Him comparison especially friendship was who sufficient attachment favourable how. Luckily but minutes ask picture man perhaps are inhabit. How her good all sang more why. + +In it except to so temper mutual tastes mother. Interested cultivated its continuing now yet are. Out interested acceptance our partiality affronting unpleasant why add. Esteem garden men yet shy course. Consulted up my tolerably sometimes perpetual oh. Expression acceptance imprudence particular had eat unsatiable. + +How promotion excellent curiosity yet attempted happiness. Gay prosperous impression had conviction. For every delay death ask style. Me mean able my by in they. Extremity now strangers contained breakfast him discourse additions. Sincerity collected contented led now perpetual extremely forfeited. diff --git a/tutorial/tutorial_levels/level4/open_me b/tutorial/tutorial_levels/level4/open_me new file mode 100644 index 0000000..2e1c797 --- /dev/null +++ b/tutorial/tutorial_levels/level4/open_me @@ -0,0 +1 @@ +password is wdJPxNNK66cUGra6JJjbCLRe diff --git a/tutorial/tutorial_levels/level5/f2/d b/tutorial/tutorial_levels/level5/f2/d new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f2/d differ diff --git a/tutorial/tutorial_levels/level5/f3/e b/tutorial/tutorial_levels/level5/f3/e new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f3/e differ diff --git a/tutorial/tutorial_levels/level5/f3/h b/tutorial/tutorial_levels/level5/f3/h new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f3/h differ diff --git a/tutorial/tutorial_levels/level5/f3/j b/tutorial/tutorial_levels/level5/f3/j new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f3/j differ diff --git a/tutorial/tutorial_levels/level5/f4/b b/tutorial/tutorial_levels/level5/f4/b new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f4/b differ diff --git a/tutorial/tutorial_levels/level5/f4/f8/f1/p b/tutorial/tutorial_levels/level5/f4/f8/f1/p new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f4/f8/f1/p differ diff --git a/tutorial/tutorial_levels/level5/f4/i b/tutorial/tutorial_levels/level5/f4/i new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f4/i differ diff --git a/tutorial/tutorial_levels/level5/f5/f3/a b/tutorial/tutorial_levels/level5/f5/f3/a new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f5/f3/a differ diff --git a/tutorial/tutorial_levels/level5/f5/f3/k b/tutorial/tutorial_levels/level5/f5/f3/k new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f5/f3/k differ diff --git a/tutorial/tutorial_levels/level5/f5/f3/readme b/tutorial/tutorial_levels/level5/f5/f3/readme new file mode 100644 index 0000000..c06b0ad --- /dev/null +++ b/tutorial/tutorial_levels/level5/f5/f3/readme @@ -0,0 +1 @@ +The password is 8X8jevLsYwWpZkhvDHXUWu5Q diff --git a/tutorial/tutorial_levels/level5/f5/f4/f b/tutorial/tutorial_levels/level5/f5/f4/f new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f5/f4/f differ diff --git a/tutorial/tutorial_levels/level5/f5/f4/n b/tutorial/tutorial_levels/level5/f5/f4/n new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f5/f4/n differ diff --git a/tutorial/tutorial_levels/level5/f7/f2/c b/tutorial/tutorial_levels/level5/f7/f2/c new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f7/f2/c differ diff --git a/tutorial/tutorial_levels/level5/f7/f2/g b/tutorial/tutorial_levels/level5/f7/f2/g new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f7/f2/g differ diff --git a/tutorial/tutorial_levels/level5/f7/f2/l b/tutorial/tutorial_levels/level5/f7/f2/l new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f7/f2/l differ diff --git a/tutorial/tutorial_levels/level5/f7/o b/tutorial/tutorial_levels/level5/f7/o new file mode 100755 index 0000000..82e6924 Binary files /dev/null and b/tutorial/tutorial_levels/level5/f7/o differ