Jump to content
⚠ Known Issue: Media on User Profiles ×

WiseMan999

Premium Member
  • Posts

    51
  • Joined

  • Last visited

Nexus Mods Profile

About WiseMan999

Profile Fields

  • Country
    United Kingdom

WiseMan999's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator Rare
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. I apologise for creating a new topic, but I judged that it would be more likely to get attention that way. Think of me what you will :D. Anyway, I've just bought and downloaded NWN1 from GOG.com and got it working. Any advice for a new player?(I'd heard of the game before but the nexus site prompted me to actually try it). I've chosen a fighter because I thought that would probably be the best choice for a newcomer to the game. On another note, any tips on a graphics mod that will allow me to read the text box in the top left corner of the screen. I'm using my native 1920x1080 and the text is so fuzzy it is almost unreadable, I have to strain my eyes to see what it says, I'd prefer to use that window rather than the bottom left one as that is where you actually choose your response, it would be annoying to have to constantly flick between the two. If I have to, I'll move to a smaller resolution but I would really appreciate being able to play it at my native one. Any help would be greatly appreciated. Thank you.
  2. I think Manshooter is right, the way you've put it there you're modding the actor value by magnitude 0, game.getPlayer().Kill() would be more appropiate. Also, "elseif fAAGGHunger <= 10" is true at the same time as "if fAAGGHunger > 1". I think having if fAAGGHunger >1 if fAAGHunger <=10 float fAAGGHunger = fAAGGHunger.Mod(-1) debug.MessageBox("Ah, your stomach beckons for bacon..." else float fAAGGHunger = fAAGGHunger.Mod(-1) might be better.
  3. I've been looking at my own script, and I think I see where we've both made mistakes. We're trying to treat Global Variables as simple numbers when the game engine doesn't. I'm not sure, but I think if you replace "int Property fAAGGHunger = 100" with "GlobalVariable Property fAAGGHunger Auto" (It is a Global Variable right? I think you said so in your last thread) it will help. Then, instead of" fAAGGHunger -= 1" you can put " float fAAGGHunger = fAAGGHunger.Mod(-1)". Then just put "float fAAGGHunger = fAAGGHunger.Mod(100)" in the OnInit event. I will say I'm not 100% on this, so look here for more. As to the ObjectReference, I think what you've put is just the generic term. akActionref should be Game.GetPlayer() I think, as it is supposed to be the reference that acivated the Object. I don't know what you'd put in ObjectReference, and to be honest you might need to use a different type of event than OnActivate. The script runs on the player right? The OnActivate should be run the food I think. Learning Papyrus is harder than I thought :D.
  4. I'll help if I can, I too wish to make a new skill (and cursed Bethesda when I saw that greyed-out box in the Actor Value window). It would simplify many things for my mod. On the other hand, I don't actually know how to "crack" the Skyrim esm, so how exactly do I do that?
  5. When you say it won't let you edit the script, do you mean it comes up with the message "can't open .psc file type" for windows. If so, then right click on the script (if you're going through the Papyrus Script Manager) and select Use Info, then double-click on the script that comes up to bring up a new window. Go to the scripts tab at the end and right click on the script, then select Edit Source. This is tedious I know, so for convenience I copy it to Notepad++.
  6. Don't put Form.UnregisterForUpdateGameTime, just put UnregisterForUpdateGameTime. As a suggestion, I think its actually UnregisterforUpdateGameTime, at least it is that way in the script I'm looking at. EDIT: Also, how long is it supposed to take to reach death? At the moment I think it will take about 25 seconds to die from hunger :D.
  7. I think adding "GlobalVariable Property Hunger Auto" at the start might work. EDIT: wow, 3 ninjas :D. By the way, I think as your script currently stands you'll reach Hunger=1 in about 25 seconds as you update game time every 0.25 seconds - although I'm not sure. Also, are you unregistering for UpdateGameTime every time you get updated? Wouldn't that mean the script will only happen once? I think you might need to register again just under it (again, don;t take my word :D).
  8. The only thing I can think of is that you might need to say "Hunger += 1" instead of "Hunger + 1" (and its opposite Hunger -= 1 of course) as you aren't assigning it a new value. I could be wrong though, I'm fairly new to scripting too :D.
  9. I'm not sure whether or not this should go in the Technical support forum or not, so I'll place it here as I think more people will see this. Basically, whenever I go on the creation kit wiki within ten minutes there's a good chance that my Google Chrome has crashed. I was wondering if anyone had had the same problem and of so what they did about it (if anything). Thanks.
  10. Hi, I've just started using on my laptop and it seems to be working fine apart from two slightly weird problems. When I have the Hi-res textures on the picture seems like it has another picture behind it, as if something is lurking and trying to press through to reality. I figured it might be the hi-res textures so I stopped using them, but now I have a different problem. Light sources are becoming big splodges of red that gradually spread across my screen, possibly it may be to do with glare. My laptop is a month-old with 6GB RAM, 2.4GHz i5 and I run Skyrim on medium. Can anyone help?
  11. Have you loaded the Skyrim.esm? If not, then nothing will show up.
  12. Basically, a few days before the CK came out I started learning Python. So should I finish the (rather long) tutorial and get a better grasp with Python or start using Papyrus? I'm not sure, so I would appreciate any advice on this matter. Thanks.
  13. I assume you mean bongfu. Every member who is banned has a post created in Forum Rules and Strikes by the moderator who banned them explaining why and if necessary providing a reference post. The only exception is if they were banned for having an inappropriate user-name.
  14. I've decided to call it Sin, but I'll have to improve my modelling first before I actually implement it. Thanks for the suggestions though :D.
  15. Here's my updated plan for anyone that wants to look. Also, can anyone think of a good name for the Blood Sword perk and it's upgrade?
×
×
  • Create New...