jffgvz

Newbie
Jun 29, 2018
61
105
Oh, no I can only do about 1-2 hours a day. I have two little ones that take up my time after work.
In that case you are in for a ride bro. It will take you a month, most likely. Give or take another week. And that is IF you play everyday religiously
 

Sancho1969

Message Maven
Modder
Donor
Jan 19, 2020
12,382
49,063
I don't know who this new Zippy character is in this new content... but I already hate his ass :ROFLMAO:
Oh damnit... Zippy is the fucking goat... like literally, as in bahhhh! :ROFLMAO:
Fucker speaks so I'll change his define from "zip" to "zpy"... and change ~97 lines of his Character reference dialogue (that's a lot of goat talkin').
 

mordred93

Well-Known Member
Jul 21, 2017
1,643
2,498
Oh damnit... Zippy is the fucking goat... like literally, as in bahhhh! :ROFLMAO:
Fucker speaks so I'll change his define from "zip" to "zpy"... and change ~97 lines of his Character reference dialogue (that's a lot of goat talkin').
The goat talks a lot of smack !!!
 
  • Haha
Reactions: Sancho1969

Sancho1969

Message Maven
Modder
Donor
Jan 19, 2020
12,382
49,063
I'll be honest I code daily in python and have for the last 3 years and I didn't know 'zip' was a built in function call. Admittedly their ide should have probably flagged it.
It's used to combine dictionaries together. I use it to consolidate the mod's ChoiceGuide internal lists into one dictionary to be indexed and sorted.
TigerWolfe, here's an example of how I use Python's "zip" to stitch together multiple sorted lists into one final dictionary (just as a reference):
Python:
    sKeys = {}
    listKeys = list( combolistsort( k, 1 ) )
    listValues = list( combolist( k, 1 ) )
    sKeys = dict( zip( listKeys, listValues ), **sKeys)
    listKeys = list( combolistsort( k, 2 ) )
    listValues = list( combolist( k, 2 ) )
    sKeys = dict( zip( listKeys, listValues ), **sKeys)
    listKeys = list( combolistsort( k, 3 ) )
    listValues = list( combolist( k, 3 ) )
    sKeys = dict( zip( listKeys, listValues ), **sKeys)
    ...
 

botc76

The Crawling Chaos, Bringer of Strange Joy
Donor
Oct 23, 2016
4,519
13,520

TigerWolfe

Forum Fanatic
Oct 19, 2022
4,368
8,456
It's used to combine dictionaries together. I use it to consolidate the mod's ChoiceGuide internal lists into one dictionary to be indexed and sorted.
Nice, the corporate style guide I'm beholden to avoids the use of dictionaries wherever possible. So that'd explain why I've not used it.
 

TigerWolfe

Forum Fanatic
Oct 19, 2022
4,368
8,456
TigerWolfe, here's an example of how I use Python's "zip" to stitch together multiple sorted lists into one final dictionary (just as a reference):
Python:
    sKeys = {}
    listKeys = list( combolistsort( k, 1 ) )
    listValues = list( combolist( k, 1 ) )
    sKeys = dict( zip( listKeys, listValues ), **sKeys)
    listKeys = list( combolistsort( k, 2 ) )
    listValues = list( combolist( k, 2 ) )
    sKeys = dict( zip( listKeys, listValues ), **sKeys)
    listKeys = list( combolistsort( k, 3 ) )
    listValues = list( combolist( k, 3 ) )
    sKeys = dict( zip( listKeys, listValues ), **sKeys)
    ...
Nifty! Thanks!
 
4.80 star(s) 1,048 Votes