Jump to content

falconfetus8

Supporter
  • Posts

    6
  • Joined

  • Last visited

Nexus Mods Profile

About falconfetus8

falconfetus8's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter

Recent Badges

0

Reputation

  1. Question: why are passwords being stored, even in an encrypted form? Shouldn't you be hashing and salting them instead?
  2. Recently, ads have started autoplaying with sound, and now their images are glitching out so I can't figure out which one is making the sound. Is there anything that can be done about this?
  3. Lots of googling around yielded me no answers. I've got a quest script running, but it isn't responding to any key events. Do key events even work in quest scripts? Is there something else I need to do inside the Creation Kit to make it work? I'm not getting any compiler errors, so I'm really confused about this. Here is my code. The OnInit and OnUpdate events work, but the OnKeyDown event does nothing. Scriptname FALC_CheckpointQuestScript extends Quest Import Input float Property xPos auto hidden float Property yPos auto hidden float Property zPos auto hidden Cell Property checkpointCell auto hidden Event OnInit() Debug.Notification("BONFIRE LIT") SaveCheckpoint() RegisterForSingleUpdate(10) endEvent Event OnUpdate() Debug.Notification("YOU DIED") LoadCheckpoint() endEvent Event OnKeyDown(int keycode) ;Save checkpoint when 'N' key is pressed if (keycode == 49) Debug.Notification("BONFIRE LIT") SaveCheckpoint() endIf ;Load checkpoint when whatever the next key is is pressed if (keycode == 50) Debug.Notification("YOU DIED") LoadCheckpoint() endIf endEvent Function SaveCheckpoint() ;Remember the current position and cell Actor akPlayer = Game.GetPlayer() xPos = akPlayer.GetPositionX() yPos = akPlayer.GetPositionY() zPos = akPlayer.GetPositionZ() checkpointCell = akPlayer.GetParentCell() endFunction Function LoadCheckpoint() ;Return to the saved checkpoint Actor akPlayer = Game.GetPlayer() ;TODO: Change cells ;Change position akPlayer.SetPosition(xPos, yPos, zPos) ;TODO: Resurrect all dead actors endFunction
  4. I'm trying to make a mod that lets dragons spawn even when the player is at level one. Unfortunately, there are just so many scripts in the game that I can't find the one that I need to modify. Does anyone have any tips for me? I'm new to modding and trying to break in.
  5. Hello. Sorry if this already exists, but I've done some extensive searching and couldn't find anything. Could someone make a mod that would allow you to rotate items grabbed with "e"? This would be very useful for people who want to decorate their house, such as myself.
×
×
  • Create New...