Int Property InUse Auto Int Property ExperienceGainedMinimum Auto Int Property TooTired Auto Int Property SecondstoPass Auto Perk Property TRTiredPerk Auto Message Property TRTooTiredMsg Auto Message Property TRNotExhaustedMsg Auto Quest Property TRTiredQuest Auto
That moment when you think "Yeah, I'll just test this out while I eat some pizza" and then a massive 70MPH car wreck happens directly in front of your house and when you finally return to your desk your character is level 57 lol. If it weren't for my neighbor being parked in front of my house this guy would've flown right through our front porch. Car Crash Video 03-10-2022 _____________________________
Spoiler:
Show
Spoiler:
Show
Mod works wonderfully even when left alone for several hours so thank you for yet another great mod Zorkaz
Spoiler:
Show
The reckless driver was injured and bleeding a lot, NO one else was injured thankfully. Both cars were total losses, with my neighbor having no choice but to surrender her car to our police impound for auction or scrapping. (Update 3-25-2022) The driver was actually the owner of the truck and police know exactly who he is, he has 4 OWIs and an arrest warrant out from January 2022, they haven't been able to make contact with him yet though.
I know it's a bit necro but yeah, siqueiradaniel believe me I wasn't expecting this either lol. Dude still hasn't been arrested, now has 6 OWI warrants, the police know exactly where he lives but he doesn't answer his door when they knock so the police do nothing :( Zero justice for my neighbor or any of the other people who have been his victims in crashes.
Holy s#*!! This is just like my local subreddit! Glad you and others are ok, but f*#@ that guy! Sounds like the cops in the larger city next door to me. There was this dude posting videos committing crimes on the road for months and the cops knew all about him and everything and they wouldn't arrest him until HE CALLED THE COPS ON SOMEONE ELSE! Out on bail the next day of course doing the same thing in another vehicle (and asking for money online too!). So much trash out there. What a f*#@ing world. I hope the dude that almost drove into your house gets what's coming to him and doesn't hurt anyone!
I would love to download ALOT of your mods but i dont like using ESLs and i have only so much space. Have you ever considered an ALL-IN-ONE? (possibly a few of them by category since not everyone wants all of them like i do lol)? And its been a while for FO4 for me but what about ESPFE/ESL-FLAGGED? I saw alot of that on the Skyrim side and have even started seeing some cropping up on the Fallout 4 side lately? Not a criticism, quite the opposite, I Love your work!!!!!!!!!!!!!!!!!!
correct but ESLs can be problematic if you have a long load order, since they technically load before any other ESP mods where as ESPFE (a.k.a. esl-flagged esp) load on the "FE" line at the end of the load order so they dont interfere with the earlier loaded ESPs. However alot of mods cant be made into ESPFE and i am no expert so i dont know if that can be done with this mod or not
You could solve the issue with renaming it into an .esp (ESL flagged ESP that is) In terms of loading time, ESLs can improve it, because most objects in it are not peristent. Though that matter is about placed objects, like in a quest mod.
I have already made merged packs in the past and had nothing but additional trouble with it, so I'll leave it at that
wait... are you telling me in order to make a file an esl-flagged esp... all you have to do is change an ESL file's EXTENTION in windows file explorer from modname.esl to modname.esp ????? IF so WOW. that would be awesome. Its of course possible that I totally misunderstood lol. Thanks EDIT: no I must be confused bc the way I understand it an ESL-flagged mod IS an ESP and NOT an ESL. It is simply made to LOOK like and ESL to the mod manager by being a merged file on the FE hexadecimal mod load line. I hate knowing just enough to think I know something. I hope I am not totally embarrassing myself here. I'm just a little lost lol
well technicly your right but in some mod managers (for example vortex),you can flag the mod as esl, (for vortex) go to plugins look at the flags if there is a feather shape you can mark it as ESP-FE and double click the plugin than on the right side scroll down until you see "flags" section if it says culd be light or something like that than scroll down until you see a yellow box called "mark as light" click it and done its now an ESP-Flagged esl
i understand that. We were talking about in just plain ol Windows without going thru a mod manager or other mod specific program. Can you change the extention file name in WINDOWS from .esl to.esp and it will do the same thing. That was the question. Thank you tho :)
Oh and do you plan to add a push-up mat like in that older mod of yours? It was nice animation and its also funny to see Mama Murphy doing pushups to get those gains.
Wait, didn't you do this before? I remember having something like this in my download history...so this is the new version then? Okay, I'll give it a whirl later when I do a new game then.
Yes, and when I tried it I would immediately CTD when loading the game because the mod required that mining resource mod and it was apparently highly problematic.
Hopefully this one is completely rewritten and not dependent on an external mod.
lol, thats weird. I literally use the old Training push ups mod rn and Ive never had any problems. I didnt even know that Zorkaz removed it 2 weeks ago. Should I uninstall it if I want to get this mod, too? Or its gonna cause a conflict? Since the mod is removed idk how to uninstall - do I have to remove all the training mats i have put?
Grand idea. Maybe add a few more options such as AP drain, limits of XP gain daily, physical debuffs if you workout too much. Perhaps in survival it can make you thirsty far quicker, hungry and tired. Perhaps an MCM to change gain amount as well.
35 comments
After 25 turns you get only half the exp. Wait a minute and you will get the normal amount again
Scriptname TRTrainandExperienceScr extends ObjectReference
Int Property InUse Auto
Int Property ExperienceGainedMinimum Auto
Int Property TooTired Auto
Int Property SecondstoPass Auto
Perk Property TRTiredPerk Auto
Message Property TRTooTiredMsg Auto
Message Property TRNotExhaustedMsg Auto
Quest Property TRTiredQuest Auto
Event OnActivate (ObjectReference AkActionRef)
If AKActionRef == Game.getplayer()
TRTiredQuest.reset()
TRTiredQuest.start()
InUse = 1
StartTimer (SecondstoPass , 10)
Endif
EndEvent
Event OnTimer (Int AiTimerID)
If AiTimerID == 10
If InUse == 1
If TooTired > 25
Game.Getplayer().AddPerk(TRTiredPerk)
StartTimer (60, 25)
Endif
If TRTiredQuest.isrunning()
If Game.Getplayer().Hasperk (TRTiredPerk) == False
Game.RewardPlayerXP(ExperienceGainedMinimum*2)
TooTired = TooTired + 1
Else
Game.RewardPlayerXP(ExperienceGainedMinimum)
TRTooTiredMsg.show()
Endif
Endif
StartTimer (3, 10)
Endif
Elseif AiTimerID == 25
Game.Getplayer().RemovePerk(TRTiredPerk)
TRNotExhaustedMsg.show()
TooTired = 0
Endif
EndEvent
Event OnExitFurniture(ObjectReference akActionRef)
If AkActionRef == Game.Getplayer()
TRTiredQuest.stop()
InUse = 0
Endif
EndEvent
Car Crash Video 03-10-2022
_____________________________
Mod works wonderfully even when left alone for several hours so thank you for yet another great mod Zorkaz
‘Reckless’ blue pickup driver linked to infamous Instagram account arrested, identified - Reddit
So yea...trying this mod now! xD
Edit:
Redownload and Reinstall fixed it! Thanks for such an awesome mod!
Btw,it would be cool if you add a boxing training,like fast sack or punching bag!
Keep up the good work man!
In terms of loading time, ESLs can improve it, because most objects in it are not peristent.
Though that matter is about placed objects, like in a quest mod.
I have already made merged packs in the past and had nothing but additional trouble with it, so I'll leave it at that
EDIT: no I must be confused bc the way I understand it an ESL-flagged mod IS an ESP and NOT an ESL. It is simply made to LOOK like and ESL to the mod manager by being a merged file on the FE hexadecimal mod load line. I hate knowing just enough to think I know something. I hope I am not totally embarrassing myself here. I'm just a little lost lol
BTW, did you accidentally leave the mod category under Ammo?
2. No. This got fixed, thanks
Hopefully this one is completely rewritten and not dependent on an external mod.