Jump to content

Would anyone be willing to make a mod that teleports you to a random cell when you exit the turotial sewer?


Guest deleted2027229

Recommended Posts

Guest deleted2027229

And by random cell I mean literally any possible cell in the game, shivering isles, oblivion plane etc.. I have such mods for Morrowind and Skyrim but alas none for Oblivion. There are some alternate start mods but starting locales are too few and backstory-driven. Would anyone be willing to make this mod or give me instructions on how to do it because I have no idea how to make a mod like this..

Link to comment
Share on other sites

I have not made any guide... ;) I guide you here. If I had a guide already made, I would published it here 2 days ago.

 

Make a list of all cells you want to be teleported to and add them here:

Link to comment
Share on other sites

Guest deleted2027229

Is there an easy way to gather all cells in the game into a list? I am not familiar how to do this. I mean literally every single cell in the game as a possible starting location, from someone's basement to the top of a sigil stone tower. Let no cell be exempt.

Edited by WanderRA
Link to comment
Share on other sites

A script has a limit in size of 2Mb but we solve that and maybe we need tosplit it up in several subfunction, well at least 2 so then we will have 3 scripts. Learning to script is what we will do here now. :D

What you will do is to import that list into Excel or any Spreadcheet, like the one on Google Drive as an example. Delete the column 1-4 and 6 except for column 4 as it is the NameID of the cells we will use and also do a search and replace and get rid of all """"""""" and all " " " and ... Well there is a lot of """"" :wink: . You will do the job and we eat popcorn and cheer you up in the progress.

So when column 4 is clean, we stay in the Spreadsheet program as that is easiest to use when we handle so much data. Keep the Cell ID's at column 4 and add this to column 3 and all way down, for each row. Add it to one cell and grab the lower right corner of that cell and drag down and you will have unlimitied copies.:

] := 

At column 2 you add a 0 and drag it dow so you get:

0
1
2
3
4
5
6

and so on all way down. In Ecel you drag the right lower corner. In Google Spreadsheet you need to hold down CTRL when you drag or you will get 0 at every row. These numbers will be the key number for each element in a database, an array that we will create.
At row one you type:

Let MyCellDataBaseARR[

and drag it down all the way, So row 1 to 3 will now look like:

Let MyCellDataBaseARR[      0      ] :=        CellIDName01
Let MyCellDataBaseARR[      1      ] :=        CellIDName02
Let MyCellDataBaseARR[      2      ] :=        CellIDName03

and contnue like that all way down. Right? We will get 3 tabs when we later copy this into a Notapad or any texteditor and then we get rid of those tabs with Search and Replace. Just send areply when you are done.

Edited by Pellape
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...