Difference between revisions of "Questions"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>TheImperialDragon
imported>Qazaaq
m (no more questions message)
 
(244 intermediate revisions by 36 users not shown)
Line 1: Line 1:
== 3rd Party Applications ==
__NOEDITSECTION__<div class="usermessage">
How might I place script variables into a memory location and be able to access that memory address from outside the oblivion engine (with a external program)?
<h2>Attention: No new questions allowed!</h2>
 
As a result from the discussion on the [http://www.bethsoft.com/bgsforums/index.php?showforum=24 Construction Set Forum] no new questions pages are allowed on the Wiki. Questions can be asked on the [http://www.bethsoft.com/bgsforums/index.php?showforum=24 Construction Set Forum] or the [http://niftools.sourceforge.net/forum/ NifTools Forums]. For further information or discussion please see [http://www.bethsoft.com/bgsforums/index.php?showtopic=795927 this thread] on the forums.
If that is not possible, is there documentation on any way to use 3rd party applications to extend the features in the oblivion game engine?
</div>
 
:While I'm sure this is possible, no one knows how, yet, on both counts. Sure too is that Bethesda will not help you. I'm also quite sure some people are working on it, considering the popularity of 3rd party apps for Morrowind. FPS Optimizer, MWSE, and MGE are possibilities that I think are pretty likely (the first for its popularity, the second and third because their authors are still active in the TES community, though they are currently working on other things). --[[User:DragoonWraith|DragoonWraith]] 11:10, 26 May 2006 (EDT)
 
== Creating a new Soul Gem Soul Class==
I was simply curious as to how one might be able to edit the size of Soul Gem Souls. The options available in th CS range from None to Grand. However, I have noticed that a max of 1600 points for enchanting your own items is far to little to make most want to truly do it. So, I would like to make larger sizes of souls available and attempt to scale them in rarity as well as needed souls within the game. Does anyone know how to edit these settings and create a new Soul size? -noexcusepunk
 
:I don't know of any way of creating new soul levels, but I know how to make the level worth more enchanting points.  Go into the game settings menu (found in the Gameplay Tab) and go to the setting "iSoulLevelValueGrand" and enter whatever numeric value you want grand soul gems to be.  You can also set the other soul levels too.  [[User:TheImperialDragon|TheImperialDragon]] 23:03, 7 June 2006 (EDT)
 
== Creating a designated area on normal ground to use Placeatme ==
 
I am working on a mod that will allow you to use one item to place another item on the ground in front of you.  Because of the way I am using this, I want to restrict this from happening anywhere but my deisgnated areas.  Designated areas will be a slightly normal looking piece of ground. 
 
Can anyone offer any insight on how I could script this?  If a player is on that ground then allow it, if they are not, give them a message? --[[User:Brainspackle|Brainspackle]] 13:02, 8 April 2006 (EDT)
 
 
Sadly, there's no programmatical way of restricting it to a specific terrain type (because there's no way for scripters to detect what kind of terrain the player is standing on).  You can, however, ensure that the player is within range of a specific object:
 
You would need a global variable (or quest variable), and two different scripts.  The first script would be attached to the object you want to use, and would set the global variable to 0, then check on the next frame to see if that global variable has been set to 1.  The second script would be attached to the range-checking objects, which would simply set the global variable to 1 if the PC was within range of them (using the [[GetDistance]] function).  If the variable remains zero, then the player isn't close enough to any of the range-checking objects, but if the variable is reset to 1 after being set to 0, then the player is close enough.  Then you would just place the range checking objects throughout the designated area, ensuring that all of the points in the designated area are covered within at least one range-checker's radius.
 
Another way is to use hard-coded coordinates, by ensuring the player's coordinates are within specific X and Y coordinates by using the [[GetPos]] function.  This is, of course, a lot less adaptable, but could be a lot easier if you just have one or two designated areas on the map.
 
People had the same problem in Morrowind, by the way. =)
 
--[[User:JT|JT]] 16:50, 27 May 2006 (EDT)
 
 
[[Omzy]]  You could create a script for a SubSpace that sets a script value to 1 if the player has his x,y coordinates in the square around the center of the subspace. This could provide a good CS visual for you. Just be careful not to make your SubSpaces interfere with other actor's SubSpaces. [[Omzy]]
 
==changing game settings by scripting==
Is there any way to change game settings (FPCbasemagickamult for instance) by scripts? '''User runegui'''
No.[[User:Talkie Toaster|Talkie Toaster]] 15:17, 19 June 2006 (EDT)
 
==AI Handling==
How many different levels of AI handling are there? That is, the difference between how AI functions when the player is near the actor, far from the actor, waiting, fast travelling? What AI functions are allowed or not allowed depending on the level of AI handling? --[[User:DrGamut|DrGamut]]
 
 
[[Omzy]] This won't answer your question, but might help. There is an EvaluatePackage (evp) function that can be used at any time as long as the actor has a reference variable available. This is used to update the actor's actions from any script anywhere. Check out its usage in MS39 script (Nirnroot quest). The line is SinderionRef.evp. [[Omzy]]
 
==Custom Classes==
I've got a little question. Ever since I got the game, I've been obsessing over custom classes, as I did with Daggerfall.. and even Morrowind. But what has startled me this time is the string limiter for Custom Class names... It's set at 10. I couldn't clone the 'Witchhunte' class if I wanted to... let alone make a 'Necromance...' I realize that I could go into the CS and craft my Classes that way... but I'd rather know how to go into the CS and extend this string-limiter. If this is possible, will someone let me know? If not... expect a few new class mods, haha. [[User:Genesis999]]
 
==Bow Damage==
I'm wondering.. If i want to increase the damage that all bows do.. How would i do that?? I found a mod that was supposed to do that but i dont think it worked.. Any help would be great thanks [[User:Zsazoo]]
 
The most straightforward way to do this would be to edit every bow in the game manually to do increased damage.  Just open the CS and navigate to the weapons heading in your [[Object Window]] and look for all bows.  This is the sort of change that would very likely conflict with other mods, however, and because of that it may be better to create a new set of your increased damage bows and have a vendor sell them.  Of course, if you're not planning on distributing this mod, then I wouldn't worry about that too much. [[User:JBurgess|JBurgess]] 00:38, 9 April 2006 (EDT)
 
[[Omzy]] Not sure if this would work, but its an idea. For an actor, you could make a script that does this type of thing:
<pre>
ScriptName ActorScript
 
short charUsingBow
 
Begin OnPackageChange (Or other one-time condition like OnStartCombat)
    if GetWeaponSkillType 3  ;(Checks if actor is using marksman skill)
          Set charUsingBow to 1
    else
          Set charUsingBow to 0
    endif
End
 
short oldStrength
short strengthChanged
 
Begin GameMode
    if charUsingBow == 1
          Set oldStrength to GetActorValue strength
          SetActorValue strength (oldStrength + 50)
          Set strengthChanged to 1
    else
          if strengthChanged == 1
              SetActorValue strength (oldStrength)
              Set strengthChanged to 0
          endif
    endif
End </pre> [[Omzy]]
 
== Reset Cell ==
Is there a way to reset a cell using script other than waiting 3 days for it to autoreset?
--[[User:IMP|IMP]] 11:17, 3 April 2006
 
:RevertWorld may be the command you're looking for, but I haven't tested it yet. (That is, if it's anything like Reset Actors in MW[[User:Talkie Toaster|Talkie Toaster]] 15:53, 14 April 2006 (EDT)
 
::Try the [[ResetInterior]] command.  It may do what you're trying to do. [[User:TheImperialDragon|TheImperialDragon]] 17:58, 1 June 2006 (EDT)
 
== Blade & Blunt ==
 
My brother and I want to make a mod that would make Blade and Blunt weapons act differently.  Unfortunately, I can see no scripting functions which would aid in this and although I've checked the settings page a couple times, it seems that any useful variables affect both Blade and Blunt.  The only way I can think of at the moment would be to make enchantments and apply it to every Blade and Blunt weapon in the game, which would cause many other problems in the process. 
 
Is there any way around this?  Or if not, would it be possible to update the CS to advance its functionality?
 
--[[User:ZantarV|ZantarV]]
 
 
You can use [[GetWeaponSkillType]] to determine what type of weapon the player has equipped.
 
== Scripting Question ==
Hey, I didn't see any discussion or question page, so I guess I can ask this here.  I want to make it so if the player walks into a very large area, they will be given the option to go to a seperate worldspace and in that worldspace be at the exact same coordinates.  Is it possible to set variables to the player's X, Y, and Z coordinates, load a seperate worldspace, and set the player's coordinates to those variables?  If this is not possible, is it possible to do so over a very large area, like not with markers and things? [[User:Sload|Sload]] 18:25, 3 April 2006 (EDT)
 
 
Should work this way:
 
Scriptname GotoAnotherWorld
  float x
  float y
  float z
  float zRot
begin gamemode
  If WhatevverMustHappen == 1
    set x to player.getpos x
    set y to player.getpos y
    set z to player.getpos z
    set zRot to player.getangle z 
    player.PosWorld x, y, z, zRot,AnotherWorld
  endif
  end
--[[User:JOG|JOG]] 11:11, 12 April 2006 (EDT)
 
== Inventory Reference ==
I've been looking all over the place but I can't seem to find any way to reference what is in the player's inventory without knowing the specific refs to begin with. As a compromise, is there a way to return the ref for what the player has equiped or is wielding? [[User:Skrath|Skrath]] 06:06, 4 April 2006 (EDT)
 
I have a similar problem.  I want to get the reference of an object dropped by the player/actor for a script for that same object.  The only way I can see doing this is by using GetSelf inside an onDrop block, but getSelf does not work on items that are placeable in inventory.  Is there another way to do this?
[[User:Teenk|Teenk]]
 
== Throwing items dealing damage. How? ==
 
I friend of mine have been thinking about a new spell or skill or just something that could be used to enhance the game. Like in HL2 they have the gravgun which enable you to throw items at your enemies at an incredible rate; dealing a lot of damage. And now he got this idea why not have some kind effect in Oblivion?
 
What I mean is being able to "throw" or "shot" items at the enemy and deal damage.
How can you make that posible? Do I have to start rewriting the havok script or is there premade options that enable any item to deal damage on creatures and characters when thrown? If i have to work with scripting can I copy the effect in HL2 havok system or can I use the same script that arrows use while shooting a bow or crossbow?
 
--[[User:AKH_Arazand|AKH|Arazand]]
 
Since traps (using physics) cause damage this probably shouldnt be a problem.[[User:Skjalg|Skjalg]]
 
: That is true but, I've already tried that it didn't work. The items simply fell to the ground dealing no damage what so ever. And to be able to use the trap function when ever and where ever by player characters this is my problem. Since throwing items deal no damage on NPC's and only traps do how can I make players able to turn items into traps with in the game it self making it them able to deal damage that way, anywhere at anytime.
 
:--[[User:AKH_Arazand|AKH|Arazand]]
 
--[[User:Omzy]]
 
Here's two alternative approaches you might toy with:
 
Make a spell that has a graphic of the item instead of a particle effect. Launch the spell at a quick speed so it doesn't look like the item is floating.
 
Make a weapon called "Throw Items" that simulates the effect of a Bow but has the graphic of a hand throwing instead of a bow being plucked. Make the items have the same ability as an arrow to be shot from this weapon and follow the same physics as an arrow.
 
How you would do either of these, I have no clue. By aspiring to this task, I assume you know more about scripting and physics engines than I do.
 
:--[[User:Omzy]]
 
== Merging Plugins ==
 
Have you published any program which you can use to merge the different plugins you have? Isnt this necessary for a team of people who want to work on a mod together?
[[User:Gerrie|Gerrie]] 22:49, 4 April 2006 (EDT)
:Tes4's introduction of FormIds, while greatly improving mod stability, do so at a high price -- the ability to (easily) merge mods -- and even to communicate between mods. (E.g., two esps can no longer communicate through a shared global.) More info: [http://www.uesp.net/wiki/Tes4Mod:FormId Uesp: FormId] and [http://www.uesp.net/wiki/Tes4Mod:Mod_Integration Uesp: Mod Integration]. --[[User:Wrye|Wrye]] 23:50, 6 April 2006 (EDT)
::Concerning communication between mods through global variables I have posted an idea for a [http://www.elderscrolls.com/forums/index.php?showtopic=338880&st=20&p=5472268&# potential workaround] on Wrye's thread on the TESCS forum. --[[User:Xebeth|xebeth]] 06:19, 8 April 2006 (EDT)
:ScripterRon has released his Mod Merger. I have not tried it, but from communication with him, I believe that it's doing the right things. For links to more info (including other mod utilities), see [http://www.uesp.net/wiki/Tes4Mod:Programmers UESP:Tes4 Programmers]. --[[User:Wrye|Wrye]] 17:36, 17 April 2006 (EDT)
 
== Twitching the soulgems ==
 
Hi everyone,
 
I was looking to change the enchantements created by the enchantment center, I've already boosted up the charge of the grand soulgem, the charge of a grand soul, I need yet to modify the enchantement automatically created. Nothing better than an example :
 
I have a grand soulgem charged at 2000 (instead of 1600), a grand soul charged at 170 (instead of 85) and i still can't create a fortify intelligence greater than 10.
I've tryed changing the enchantement called EnAppFortifyIntelligenceGrand but that didn't work.
 
And that's where I turn to you guys...
 
Dj23
 
 
:Try going into 'Gameplay->Magic Effects' each different effect has a 'Base Cost'          and a 'Constant Effect Enchantment Factor'.  Increasing either of these numbers will allow you to put higher enchantments on your items (it's pretty wierd that increasing the cost increases the amount of enchantment, you'd think it would be inversed).  'Base Cost' will affect spell making and casting as well.  Not really a tweak to the soulgems but I think it does what you want? - [[User:Chair5768|Chair5768]]
 
 
 
::How did you edit the attributes of the soul gem? I can't figure out how to change the amount it can be charged, or the charge of a single soul. i.e., you have a grand soul gem charged at 2000 and a grand soul at 170. How do I do that?
::Thanks!
::darthbith
 
== Island house ==
 
Hi im working on my small island house/dungeon mod and since the island is so far out to sea i dont want to keep casting waterwalk or try to script a ring to tele me back and forward i was wondering how to create a fast travel point if anyone could help me on this it would sure be nice of you --(unattributed user)
 
 
:Easy!  Just place a MapMarker object on the island, rotate it to where you want the player to be facing when they Fast Travel there, then double-click on it.  This creates a new reference.  First of all, fill out your reference name (you will probably call it something like "[YourInitials][YourPlugin]MapMarker").  Then, under the tab that says "Marker Data", click the checkbox, and fill out the necessary data. --[[User:JT|JT]] 17:44, 27 May 2006 (EDT)
 
== Cleaning up a plug-in ==
 
Seems to me there is no way to delete any of the objects you create. I've made a lot of stuff for my mod that isn't used anymore and I would like to get rid of it. Also, I somehow accidently modified some of the horses, so now my mod is not compatible with Call Steed + Saddlebags. How can I fix this?
 
-- Answer --
Open TES:CS, then when you're selecting your mod in the data file list, click details.  Go and find the reference that you no longer want to be associated with your mod.  Select it, and press delete.  Accept the box saying it will be ignored.  Now go into your mod, make any change to any aspect so you can save it, then save.  The Ignored reference will no longer be part of your mod.
-Tandem
 
 
[[User:JBurgess|JBurgess]] 23:01, 6 April 2006 (EDT) You might want to add this to the Solutions category.
 
== Audio Settings for Dialogue Tutorial Video ==
I have a video tutorial made for correctly setting your .wav and .mp3 files to work with TES:CS, and how to link that to a character/dialogue route.  The link is
http://feinam.20megsfree.com/Oblivion/Misc/DiagTut.zip
I just don't know really where to put it in this wiki.  Could someone please add it for me?  3 ~
-Tandem
<br><br>[[User:JBurgess|JBurgess]] 22:55, 6 April 2006 (EDT) Try the Tutorials Category on the main page - I haven't looked at your work yet but it sounds useful, and more people will find it there.
<br><br>I went ahead and created a page for you in the Tutorials section.  I would also recommend uploading your file to this Wiki and linking it from here.  --[[User:Brainspackle|Brainspackle]] 04:00, 8 April 2006 (EDT)
 
== A not animated moving gate ==
 
I've been trying to make a gate, that would move when activated. So I've come across a problem. My question is, can "MoveTo" be used in this manner:
 
mySelf.MoveTo mySelf, 1, 0, 0
 
This should move the activator(the gate) 1 point into the positive direction of vector X. But it doesn't. Any clues, anyone?
 
--[[User:Lenko|Lenko]] 09:01, 7 April 2006 (EDT)
 
Ok I've tried alot, and since nothing worked I presume that static objects/activators cannot be moved with a script. However the player and most likely other actors can be moved with this command. (Not sure about the items)
 
--[[User:Lenko|Lenko]] 07:39, 8 April 2006 (EDT)
 
:Try using setPos instead of moveTo since u'r just moving one axis.  Also, I found moveTo very limited anyway.
 
:--[[User:Teenk|Teenk]]
 
== Skill checking script ==
 
I'd like to create a script that triggers some actions when a player casts a certain spell depending on that players "something" skill level. I have tried some things but none seemed to work, any suggestions? Maybe I haven't been using the good script type so tell me what you think... Thank you in advance.
 
Ex: When a player would cast a custom made power-type spell there would be a text message depending on his sneak skill level and wouldn't be able to have the spell take effect if his skill level is below 95.
 
[[User:Hawkes|Hawkes]]
 
:--[[User:Kkuhlmann|Kkuhlmann]] 13:28, 8 April 2006 (EDT): You'll want to use a scripted spell effect. Some kind soul has put together a nice tutorial on scripted spells: [[My_First_Spell]]
 
== If problems ==
 
Each time a put an if condition in a script, CS tells me there's an "End without matching Beging" error, I even copy/pasted parts from other scripts to make sure syntax was O.K. Why?
 
Here's one of my scripts I have tried to create in wich CS sees an error (It takes part when the player opens a book) :
 
<pre>
      ScriptName EOLreinbook
 
      short read
 
      begin onActivate
 
      if read == 0
      activate
      set read to 1
      ;add the spell zzreinsab in player's spell list
      else
      activate
      end if
      end
</pre>
[[User:Hawkes|Hawkes]]
 
 
::try "endif" as one word ;-) [[User:Mrflippy|Mrflippy]] 04:03, 8 April 2006 (EDT)
 
== Lockable Container/Door Tutorial ==
 
Moved to [[How to make lockable doors & containers]]. --[[User:Kkuhlmann|Kkuhlmann]] 13:24, 8 April 2006 (EDT)
 
 
==Render Window Broken==
So I'm  working on my first dungeon after doing some spells and when I attempt to drag and drop pieces of the dungeon kit, nothing shows up. This could have something to do with the fact that the render window seems to be blank (grey background), and does not seem to have a render space loaded. Anyone know a fix for this? [[User:Issofir|Issofir]]
 
Have you made a new cell, and loaded it? When the cell is loaded, the background is black, grey means it's not loaded. --[[User:Lenko|Lenko]] 08:16, 9 April 2006 (EDT)
 
Okay well what I do is this: I start up the CS, load the Oblivion.esm, found a random dungeon cell and duplicated it, renamed it and deleted all of the objects out of it and I think this is where the problem is because I can find a created cell, and load objects from that cell and they work.
[[User:Issofir|Issofir]] 15:25, 9 April 2006 (EDT)
 
== Getting GetSitting function to work ==
 
What's wrong with this script to get the "ISLSecretary" to sit?
 
 
<pre>
ScriptName ISLsecretarysit
 
begin Gamemode
if ( GetDistance player < 50 )
if ( getsitting == 0 )
set ISLsecretary.GetSitting to 3
endif
    endif
end
</pre>
[[User:Treleth|Treleth]] 00:00, 10 April 2006 (EDT)
 
:--[[User:Kkuhlmann|Kkuhlmann]] 08:38, 10 April 2006 (EDT): That's not how you get an NPC to sit. You can't set the value of a function -- GetSetting is a function that tells you whether the NPC is sitting or not. You can't use it to make the actor do anything. You need to create a package targeting a chair to get an NPC to sit in it (there are a number of ways that will work: Find or Travel targeting a specific (persistent) chair is probably the simplest).
 
== Exterior Cell Location ==
 
I'm making a new city, and I made a new exterior cell, and it ends up beside a ruin, so when I flattened the land to make the city, it flattened the land beside the ruin totally messing it up, the thing is, I can't see the city from outside the walls. Basically there are 2 questions here
 
1.How do I choose the location of an exterior cell?
-and-
2.How do I fix the affected cells?
[[User:Treleth|Treleth]] 00:04, 10 April 2006 (EDT)
 
-[[Omzy]]
For the first question, You shouldn't create new exterior cells. Instead, modify existing exterior cells so that you know exactly where everything will be in the game. How do you select an exterior cell to modify? Go into the game and turn the console options that tell you your coordinate location and find a spot on the map that only has trees or bare landscape. Then go into the CS and find the Wilderness (x, y) cell depending on the coordinates you found in game and use that one. For the second question, well I think the first answer says it all. Just reload the Oblivion.esm in the CS and modify the existing cell to make it flat (do not mess with the edges of the cell). Somehow you're gonna need to transport your city from the old cell to the new one. Good luck figuring that one out =P
 
== Changing player start position ==
Where do you specify the start position of the player? <br>It's a rather simple question but I can't seem to find an answer.<br>
--[[User:Trotim|Trotim]]
 
:I don't know if its the thing you mean, but the first lines of the Oblivion_default and Oblivion ini files start like this:
 
  [General]
  SStartingCell=
 
  SStartingCellY=
  SStartingCellX=
  SStartingWorld=
 
:I haven't tried it so it may not work...
:--[[User:Hawkes|Hawkes]]
 
::I know those lines, but I wanted to know if it's possible to do without having to let the player modify the .ini... so is it?
::--[[User:Trotim|Trotim]]
 
== Black Soul Gems, Azura Style! ==
I'm thinking of doing a little black necromancer plug-in, and the core concept I wish to use is the re-usable Black Soul Gem. (Plus it would be pretty handy by itself)<br>
I'm wondering if someone has a sample, or if you can point me to the re-usable part? I cannot seem to locate anything relating to allowing/dis-allowing the re-use of Azura's Star.
 
PS: I hope I edited this right.<br>
- - [[User:Xnilson|Xero Nilson]]
 
According to [[Soul_Gem|Soul Gem]] both Azura's Star and Black Soul gems are hardcoded into the game. There may be a work around but it probaly won't be easy.
--[[User:Nate1054|Nate1054]] 14:04, 23 April 2006 (EDT)
 
Would this workaround work around?: Say the item is called the Gem of Worms (or something). When this item is in your inventory, and empty, it adds a black soul gem to your inventory. When the game detects that you have one empty black soul gem less, and one filled black soul gem more, it removes both this filled black soul gem, and the empty Gem of Worms, and adds a filled Gem of Worms. When the Gem of Worms is emptied, the game adds another empty black soul gem to your inventory.
-- [[User:Lumpy|Lumpy]]
 
==Remove Armor Spell==
 
I want to make a spell that would have the target only un-equip armor.  I've tried the Remove item thing but that completely removes all of their inventory.  How would I just have them remove their armor? 
 
I dont want to remove weapons or such things.  Just have them un-equip their armor. I want to make slightly easier kills while still having to dodge blows that do damage(unlike if they dont have any weapon) as well as being able to get their items after they die.  Help!!!!!!
 
 
- - [[Zeratul]]
 
You could use removeitem, then add it again on death. Have you tried doing something like Armour_name.unequip?
 
Of course, the problem with those two is finding out what items the NPC has in their inventory, without checking for every piece of armour in the game. So it is possible, but might be very clumsy.--[[User:Evrae|Evrae]] 15:19, 27 May 2006 (EDT)
 
How would i add the items back on death if they arent there anymore?  could you tell 
me how to do that?  can you use * for anything in a script?  i could go *.unequip, so   
ill try that.  [Zeratul]
 
 
--[[Omzy]]
 
You could create a new package that has armor unequipped for duration of an hour with the "must complete" option checked and use a spell effect script that uses the AddScriptPackage command. Since the calling actor will be the one hit with the spell, the spell's target will run the package. Will the npc keep the armor off during the fight? Not sure, but this is one avenue to pursue if you want to experiment.
 
;[[Omzy]]
 
==Get Current Bounty==
Is there a way to get the current bounty, there is nothing about it under [[GetPCMiscStat]], I also tried [[GetActorValue]] Bounty which didn't work, unless I am just doing something wrong.
 
--[[User:Nate1054|Nate1054]] 18:03, 22 April 2006 (EDT)
 
player.[[GetCrimeGold]]
:--[[User:DragoonWraith|DragoonWraith]] 14:04, 14 May 2006 (EDT)
 
==Quest Scripting Question==
I have a problem with my quest script. Most is copied from the Nirnroot Quest...
I need it pretty much to output Daydone == 1 after one day, so my quest works...
I have little experience in scripting, but I am not too bad, yet this one has just stopped me from continuing...
Here is my script
<pre>
scriptname CQMeetClintonioScript
 
short DayDone
float CurrentDay
float CurrentTime
 
begin gamemode
 
;Wait a day to talk to Clintonio
 
if ( GetStage CQMeetClintonio == 30 ) && ( CurrentDay == 0 )
set CurrentDay to GameDaysPassed
set CurrentTime to GameHour
endif
 
if ( GetStage CQMeetClintonio == 30 ) && ( DayDone == 0 )
if GameDaysPassed == ( CurrentDay + 1 )
if GameHour >= CurrentTime
set DayDone to 1
endif
elseif GameDaysPassed > ( CurrentDay + 1 )
set DayDone to 1
endif
endif
 
if ( Getstage CQMeetClintonio ==30 ) && (DayDone == 1 )
clintonioref.additem weapsilvershortsword 1
clintonioref.additem pickaxe01 5
clintonioref.additem tg11elvenhelmet 1
endif
 
end </pre>
 
--[[User:Clintonio|Clintonio]] 4:08, 23 April 2006 (GMT)
 
 
--[[Omzy]]
I don't see the problem with that script; In fact, i'm going to try it on my own mod because I have a part where you must wait two days. The only thing that I see being problematic is the last part. You need to set DayDone to 0 in the last if/endif block after you add the items or they will continually be added each frame of the game forever until the stage changes. Or you could change the quest stage there.
 
(update)As for the script just plain not working, I'm having the same problem. Thanks for the code, though.
 
[[Omzy]]
 
 
:Hmm...  Maybe the game is continually setting Gamehour to CurrentTime?  Perhaps you could introduce a variable that is set to 1 after the game notes when the quest started?  maybe something like this?
<pre>
scriptname CQMeetClintonioScript
 
short DoOnce
short DayDone
float CurrentDay
float CurrentTime
 
begin gamemode
 
;Put a Return if the stage is already greater than 30 here
 
;Wait a day to talk to Clintonio
 
if ( GetStage CQMeetClintonio == 30 ) && ( CurrentDay == 0 )
if ( DoOnce == 0 )
set CurrentDay to GameDaysPassed
set CurrentTime to GameHour
set DoOnce to 1
endif
endif
 
if ( GetStage CQMeetClintonio == 30 ) && ( DayDone == 0 )
if GameDaysPassed == ( CurrentDay + 1 )
if GameHour >= CurrentTime
set DayDone to 1
endif
elseif GameDaysPassed > ( CurrentDay + 1 )
set DayDone to 1
endif
endif
 
if ( Getstage CQMeetClintonio ==30 ) && (DayDone == 1 )
clintonioref.additem weapsilvershortsword 1
clintonioref.additem pickaxe01 5
clintonioref.additem tg11elvenhelmet 1
;and whatever command that sets the stage to == 40 would go here.
endif
 
end </pre>
 
:I don't know if this'll work, but let me know how it goes. [[User:TheImperialDragon|TheImperialDragon]] 22:33, 7 June 2006 (EDT)
 
 
--[[Omzy]]
 
I've been working on mine and i finally got it to work. I don't know why this works and the other script doesn't, but i'll post mine exactly:
 
<pre>
ScriptName VoduniusNucciusQuestScript
 
short stage
 
float CurrentDay
float CurrentTime
short twoDaysDone
 
Begin GameMode
 
        SetStage VoduniusNucciusQuest stage
 
if stage == 21
if CurrentDay == 0
set CurrentDay to GameDaysPassed
set CurrentTime to GameHour
endif
endif
 
if stage == 21
if twoDaysDone == 0
if GameDaysPassed == ( CurrentDay + 2 )
if GameHour >= CurrentTime
set twoDaysDone to 1
endif
elseif GameDaysPassed > ( CurrentDay + 2 )
set twoDaysDone to 1
endif
endif
endif
 
if stage == 22
StopQuest VoduniusNucciusQuest
endif
End
</pre>
 
*I don't reccommend using the "stage" variable in your script. I need it for a rare circumstance in my quest topic result scripts.  
The change is that instead of <pre>
              if (stage == 21) && (twodaysdone == 0)
                  stuff
              endif </pre>
I used <pre>
              if stage == 21
      if twoDaysDone == 0
                          stuff
                      endif
              endif
</pre>
The &&, even though it works in the Nirnroot script, somehow didn't do it for me. Tell me if it changes things, and perhaps why...
 
Also, TheImperialDragon, the local variable CurrentDay in his script is reset within the same block as the code for the CurrentTime variable. By changing that variable, the condition will not allow modification of either variable more than once...UNLESS the GameDaysPassed variable is 0 (first day?), which is unlikely if the stage of the quest is 30.
 
 
:I didn't change the variable - or did I? Well, the intention was that the game check the time as soon as step 1 of the quest is completed.  When the time is one day after the ''snapshot'', the game starts step 2 of the quest.  The DoOnce command was so that when the game checks the time, it doesn't do so every frame, that is to say, set step 1's beginning time every frame.
 
:Well anyway, your script works so there's not much point in debating mine anymore.  I had a look at the article [[If]], and it would seem that there is no immediate difference between the two variants you used.  Perhaps this is just a bug in the software?  I can't explain why the scripting system would see a difference between them... [[User:TheImperialDragon|The Imperial Dragon]] 23:53, 7 June 2006 (EDT)
 
::When you use parentheses (which you usually don't need to) you need to put spaces around them.
 
  if ( stage == 21 ) && ( twodaysdone == 0 )
    stuff
  endif
::--[[User:JOG|JOG]] 13:23, 15 June 2006 (EDT)
 
== Destroying/Removing Item/Object Created by PlaceAtMe Function ==
Is there an equivalent of PlaceAtMe function that will remove/destroy an item/object?  I've been searching for this but all I've found is a way to disable placed item.
 
[[User:Teenk|Teenk]]
:--[[User:Mrflippy|Mrflippy]] 04:16, 30 April 2006 (EDT): Disable is what you want to use. Read more [[User_talk:Ashileedo#disable|here]].
 
== How does an object finds out in which cell it is placed, using a script attached to the object? ==
The purpous is simple. Lets say I have a chest that should consider by itself via a script if it is placed in a player owned cell, and if so should react accordingly.
After looking at all the Cell functions only one looks promising and that is [[IsCellOwner]]. However this function need the cell id as the first parameter, what means that the object script calling it would need to know in which cell the object is placed. Unfortunately there seems to be no function to get the cell id of the cell the object is in, and therefore the forementioned function does not do the job.<br>
<br>
Have I missed something or is it simply not possible?<br>
If this can not be achieved, does any of you know a way around this?<br>
<br>
[[User:XiDragon|XiDragon]] 15:02, 29 April 2006 (GMT+1)
 
Use "player.IsInMyOwnedCell == 1 && mycontainer.GetInSameCell player == 1". -- [[User:Nezroy|Nezroy]] 15:58, 18 May 2006 (EDT)
 
== Changing What Attributes Do? ==
I've been playing with the idea of making a couple small changes to Oblivion, but can't make any headway. Initially, I wanted to change the way Willpower works; perhaps have it give a bonus to my spells (akin to the way that Strength/Endurance helps melee characters). What I thought would be a simple, 5 minute test has consumed my entire day.
Maybe I missed something obvious, but I can't see any way to change what the attributes do. Am I attempting to mess with something that's out of the CS's reach?
 
[[User:Tamin|Tamin]] 20:24, 8 May 2006 (EDT)
 
[[Omzy]] Make a script for the player for the stat that increases the value of their spellcasting skills. For example, if my willpower increases by 1, all my skills like Destruction, Illusion, etc.. will increase by 3. In this way, those that focus on developing willpower will gain more magical ability faster. To see how much willpower has changed make sure the script knows the willpower before leveling and after leveling and find the difference. Then just AdvancePCSkill skillName (changeInStat * 3). How would you call such a script? Thats the hard part. You could attach it to an object called a Mages Stone (or words to that effect) and make sure this item is equipped before processing. This would make for an interesting mod. You could also attach it to a quest that starts at the beginning of the game and never ends (not nearly as cool).
 
(update)Actually, as I've learned more about global scripts, they are nearly as cool.--[[User:Omzy|Omzy]] 13:12, 15 June 2006 (EDT)
 
== Accessing NPC Inventory onActivate ==
I need to use a script to access the inventory of a mannequin NPC that is fixed in place. Any mannequin or companion mods I've looked at use a separate container object for the NPC, but surely there's not a separate container for each NPC in the game. What is the script command for onActivate that would open the NPC like a container?
 
[[User:Omegacron|Omegacron]]
 
Actually, all Actors (at least the Player and other humanoid actors) are countainers.  (Or at least can pretend to be containers).  Think about when you pickpocket an NPC. --[[User:Tegid|Tegid]] 14:22, 18 May 2006 (EDT)
 
I have yet to find a way to activate an NPC's inventory directly. Not only is pickpocket a good example, but also when you're looting a dead corpse. For a mannequin it would be particularly handy because you could see what they actually have equipped currently (just like when looting a corpse you can see which items are equipped). It'd be nice to figure out a way to do this... -- [[User:Nezroy|Nezroy]] 15:55, 18 May 2006 (EDT)
 
== How do I know which packages and factions a summoned creature has? ==
 
I am looking to create a spell that summons 2 - 3 monsters that act as summoned creatures. I have found that I need to use the right packages, or this creature acts like a wild one, and not a follower. I have yet to find the right package, and do not know if I need to alter its factions, so it does not get attacked, or start attacking random civilians.
 
--[[User:Pntm|Pntm]] 21:42, 18 May 2006
 
== Can a script be used to rotate an object clockwise on the Z axis to create a constant spinning effect? ==
 
(This question has been moved to the Solutions page).
 
--[[User:Omegacron|Omegacron]] 11:06, 30 May 2006
 
 
 
==Problem Modifying Plugins with another Plugin==
 
I am creating a simple mod that connects all of the houses I've downloaded with teleport doors.  I placed a door in each house, and then I connected them with teleporters in another cell.  The problem is that every time I place a teleport in a house from a plugin, the TES Editor creates a duplicate cell just for the teleport, saying that the cell is no longer unique.  I've narrowed it down to conflicts between plugins because the teleporter I placed in Rosenthorn Hall (a stock Oblivion house) works just fine.  My plugin loads after the others, so I don't think it's a load order problem.
 
Please, how do I modify other plugins using my own? --[[User:Wahh|Wahh]]
 
:You can't. Oblivion's mod isolation specifically prevents this. -- [[User:Nezroy|Nezroy]] 15:02, 25 May 2006 (EDT)
 
==How real is the find package==
I am not sure how 'real' the find package is in regards to the game world.
 
According to the wiki if a find command is run on an object the item will be activated, causing it to be picked up.
 
If you look at "M'aiq the Liar" (ID:Maiqtheliar) his AI list has only 3 elements.
*A find command to collect 20 callipers per search
*Two travel commands
If the callipers are really being collected, why don't they end up littering his inventory? Why doesn't he end up over-burdened? There are no AI commands for selling of these objects, or putting them down anywhere.
 
I was trying to make a quest in which a character goes around the gameworld in search of a type of item which the player must then steal from him. But the character does not seem to keep the items he 'picks up'.
 
I would like to hear others opinions of this package and ways to fix my problem. Thank you.[[User:Decoup|Decoup]] 20:33, 27 May 2006 (EDT)
 
: In my experience, it does work, but it only works within the location of the package. NPCs won't go through doors to find items, so if you place an NPC with a Find Weapons package outside the door to a blacksmith's shop, he will search outside in the radius given, but will not enter the shop. If no valid items exist within that area, he will do nothing or default to wandering. As far as I've seen, if the items are found, they ARE placed in his inventory. I haven't looked at Maiq's packages specifically, but I imagine there just aren't any calipers in the areas he explores. Try using the console to place a set near on the ground near him; he will most likely pick them up. Side note: NPCs won't pick up items you drop from your own inventory, because they are considered 'owned' by you. This applies even to characters who would normally steal from other NPCs. [[User:Scruggs|Scruggs]] 09:13, 28 May 2006 (EDT)
 
==Resurrect Crash==
I have made a simple spell to resurrect an NPC but it does when I use it the game crashes. It is an on touch spell with the following script attached.
<pre>
scriptname DCRessurect
 
Begin ScriptEffectStart
resurrect
End
</pre>
I don't understand why it does not work.[[User:Decoup|Decoup]] 20:36, 27 May 2006 (EDT)
 
:The resurrect command, to my knowledge, is not actually meant for use, only for testing, since (at least, it did, in Morrowind), it completely resets the NPC's inventory. I wouldn't be surprised if it didn't work at all in a script...
 
:I'd suggest looking at the Staff of Worms's enchantment's script. It revives things somehow, no? --[[User:DragoonWraith|DragoonWraith]] 22:28, 27 May 2006 (EDT)
 
::The staff of worms uses the spell Reanimate. This spell makes them get up and walk around but they are not alive. Their eyes are black and you can't talk to them. Their AI commands don't take effect either.
 
::The resurrect command simple brings the actor back to life in their normal state so that they can continue to function in the game as they did before death. This way they can go back to selling me mead or repairing my items.<br>
::The resurrect command does work. It is used is 22 scripts in the game. They are listed at:<br> http://cs.elderscrolls.com/constwiki/index.php/List_of_function_appearances_in_scripts#Resurrect<br>
::I just don't know why I can't use it.[[User:Decoup|Decoup]] 23:16, 27 May 2006 (EDT)
 
:::Ah, OK. I didn't realize that Reanimate was one of the default spell effects. That's kind of dumb, but understood.
 
:::And yes, those scripts do use it... so Resurrect has been given a lot more potency than it had in Morrowind. That's good, anyway. Well, how about this:
ref Self
Begin ScriptEffectStart
  set Self to GetSelf
  Self.Resurrect
End
:::When I looked at those scripts, they all seemed to provide a specific target, so maybe that will make the script happy. The other possibilities are that Magic Scripts aren't meant to go on dead actors (though I doubt this, since I'm currently doing it in a mod I'm working on - but [and this is interesting] killing an enemy triggered the ScriptEffectFinish portion of my script, even though the script at least seemed to continue to work on the enemy's corpse), or else resurrect doesn't work on magic scripts (that seems [to me] like a bizarre limitation, but who knows?). --[[User:DragoonWraith|DragoonWraith]] 23:37, 27 May 2006 (EDT)
 
<B>Problem Solved</B><br>
I tried using the getself method before posting. Like many of the commands in this language not including a target applies the command to the calling object/actor. It turns out that the crash stopped when I added the optional flag. So my script is now
<pre>
Begin ScriptEffectStart
  Resurrect 1
End
</pre>
I have updated the description of the command on the wiki with a small note that the optional flag may be required in some instances to prevent the crash. But thanks for trying to help anyway.[[User:Decoup|Decoup]] 23:42, 27 May 2006 (EDT)
 
:Yeah, I'd noticed you updating the other article, good work! And I know that not supplying a reference implies that it's on the calling actor, but you never know. Good work figuring it out. --[[User:DragoonWraith|DragoonWraith]] 23:46, 27 May 2006 (EDT)
 
==Determine Enemy==
 
I can't find a command that will tell you if an npc is an enemy of another. For example the [[GetCombatTarget]] function tells you who the npc is in combat with. What if you just want to know if an npc is the players enemy, or if npc a considers npc b to be an enemy.
 
I am specifically looking for a command that will tell you if the character will attack the player on sight. There is another command called [[GetShouldAttack]] but this does not indicate if they are an enemy, just if they are currently capable of making an attack and can see the character.[[User:Decoup|Decoup]] 20:45, 27 May 2006 (EDT)
 
:I ''think'' you could use this:
if ( GetDisposition player < GetActorValue Aggression )
:I haven't actually tested this, but a script I've been working on by addiktive (the Danger Sense mod) uses that, and I assume it works... it certainly returns the correct value for enemies who cannot detect me, I assume that if they cannot detect me, then they do not have me as their combat target. --[[User:DragoonWraith|DragoonWraith]] 22:32, 27 May 2006 (EDT)
 
==Sheathing Weapons==
 
I cant seem to find the script command to remove thigns from your inventory when you sheath your weapon.
 
IE i am trying to write a alternative bound weapon script I am wanting the script to act just like the bond items liek when you sheath your weapons they disappear from your inventory and such and have a time limit on them as well to where they are remvoed from your inventory when the spell expires.
 
:[[User:DragoonWraith|<font face="Oblivion,Daedric" size=3>D</font>ragoon <font face="Oblivion,Daedric" size=3>W</font>raith]] [[User_talk:DragoonWraith|<font face="Oblivion,Daedric" size=2>TALK</font>]] 11:37, 31 May 2006 (EDT): Use player.[[IsWeaponOut]] == 0 to determine that the player does not have their weapon out.
 
 
==Specific Pathing Question==
 
Lets say I have interior cell 1 and ineterior cell 2. They are linked by 2 doors. A and B. I have NPC Fred. He is scripted to travel between the cells. For story reasons I only want him to choose door B. Again for story reasons I only want door A to be used by the player. Because the luck of the draw, Fred always chooses door A. 
 
I have tried many things to get him not to use door A, but have not had any luck. Removing the pathfinding just gets him to walk into a wall endlessly. Locking the door does not seem to help. Making the owner of the door the Player doesn't seem to phase him.
 
[[User:Vuohi|Vuohi]] 16:03, 1 June 2006 (EDT)
 
:I believe I have the answer. You need to use path finding, but only create the paths to door B. also make sure the ai paths don't run too close to door A or the character may move to the closest point then leave the path and head straight for the door. I also suggest that you use the blue pathnodes because they take priority. See [[Pathing_and_Playtesting]] for more information.[[User:Decoup|Decoup]] 22:23, 6 June 2006 (EDT)
 
::I have a slightly different approach.  You can use a [[SubSpace]] zone so that the NPC regonises that he/she should only use that door.  See the article for specifics on how they work.  Anyway, either one of these methods (mine or Decoup's) have potential, so give them both a try. [[User:TheImperialDragon|TheImperialDragon]] 22:41, 6 June 2006 (EDT)
 
=='F' key crashes TESCS==
 
This appears to happen fairly randomly, but certain objects such as dungeon blocks and blood decals crash the game when 'dropped' using the F key. Could anyone suggest why?
 
:No clue, and I'd reccomend you sign your comments in the future. One other thing I've noticed is that trying to edit too many NPCs in a row (I'm talking hundreds), causes the CS to say it failed to create a new tab, and if you still try to edit more NPCs, it crashes. --[[User:MaXiMiUS|MaXiMiUS]] 00:20, 8 June 2006 (EDT)
 
:This happens when non-havok'ed objects (dungeon-tiles for example) fall a long distance (500+ units) usually because there is nothing below them. My workaround is to use "T" first and drag them over existing tiles before letting them fall down.--[[User:JOG|JOG]] 08:10, 11 June 2006 (EDT)
 
==Is something wrong with my CS or not==
 
I don't know if all users are effected by this or just me, but the findin the CS 'Edit' 'Find...' does not do anything. 'Find Text' works fine, but find does nothing at all. Is it just me, and is there a solution.
 
I also noticed that when I open CS before I open any moduals there are some opbejcts already in the Object Window.
*2 spells, DefaultMarksmanParalyzeSpell and DefaultPlayerSpell
*3 effect shaders, effectAbsorb, effectReflect and LifeDetected
*Some items in the misc, and clothing catagories
*2 containers
 
Could this be related and does anyone else have the same problem?
 
[[Omzy]] When I open my CS i have some random items in there too, not sure about the find option though.
 
Thanks for the help. Can someone please tell me if their find button works? In the morrowind CS my find button is functional and displays a list of objects which I can search for. Does anyone have a functioning find button in Oblivion CS?[[User:Decoup|Decoup]] 05:11, 9 June 2006 (EDT)
 
Come on guys. Its a simple question. Can anyone please just open the CS and click 'Edit' 'Find...' and tell me if a window pops-up or not. I just want to know if I am the only one working without a find command.
 
:No, Edit/Find doesn't work, it was pretty pointless in Morrowind (opened a list of objects and when you selected one opened the render window at the first place where that object was placed.) And it's completely disfunctional in Oblivion, guess they just forgot to remove the menu-entry. the "Use Info" Option in the Object Window's context menu is much more useful than Edit/Find ever was.--[[User:JOG|JOG]] 08:03, 11 June 2006 (EDT)
 
::Well, considering that it has been days since you asked if anyone has a functioning ''Find'' button, I doubt anybody has got it working yet, unless they've made modifications to the program itself.  As for me, yes I've got the same problem.  I would just ignore it. [[User:TheImperialDragon|The Imperial Dragon]] 12:55, 11 June 2006 (EDT)
 
::As above. (WaerLoga) (EDT)
 
==Revert changes in an esp file to base/master file state==
 
Hi,
 
I would like to ask, if say you accidentally delete a critical path in a storyline cell (anvil fighter's guild!) but didn't realise it until the next time you open the mod to work on it further..
 
Is there any way you can revert the cell to its original format as per the master file?
 
I thought that if the .esp file was in ascii format, one could just open it and remove the lines that describe the errorneous change.. but unfortunately its in binary format.
 
Any suggestions/help would be appreciated!
 
 
:I know how to fix something like this (and you don't even have to redo any work from after the mistake!).  open the loading window, load your plug-in  When your plug-in is loaded, click on the load folder again, highlight your plug-in, and click on the ''Details...'' button.  Now, find your mistake in this data and delete it (set it to be ignored).  You should be able to do this anytime you make a mistake with the CS. [[User:TheImperialDragon|The Imperial Dragon]] 22:39, 8 June 2006 (EDT)
 
==Causing NPC/Creatures to mimic an action the player takes==
 
hey, [[El`derina]] here.  I was wondering how i would cause a creature or NPC to play attack animations at the same time the Player does... i see no function for IsAttacking or something like that and no blocktypes either that would assist in this.
Thanks in advance if anyone can fiqure this out.
 
[[Omzy]] Do you mean you want the npc to be a mirror image of the player's animations? That might be difficult. There is a function for combat-> IsInCombat. Of course, if you wanted two npc's to "fight" without hurting each other, like for training, you could create a training package that makes each actor play their combat idles during the package and set the package to run whenever you want with conditions or the AddScriptPackage function. You might also write a script for a certain actor that makes him run the script when the player is near and is in combat.
 
[[El`derina]]  No, not quite.... im working on wolfform for my mod. what i need is for the wolf to play its attack animation whenever the player attacks- problem is that the only possible way to detect this that i know of is having the player equiped with an enchanted weapon that sets a global varible for my other scripts to run off of whenever the player hits something... and that wont even make it work all the time since you'd HAVE to have a monster there to hit it. what i need is an alternative way to detect if the animation is playing for the player, or if a keyboard stroke was made to attack/block. so far i have everything but this one thing working- may have to make it a travel form only if i cant find a way around this
 
As for now, there is no way to find the current animation playing. I've spent hours and hours trying to figure out when the player is blocking. I even set up a collision box that travels with the player so that when the player blocks, the shield moves into the collision box and the shield's OnCollision block runs. None of it worked. It appears that an object involved in animation does not execute its own code and does not really involve itself in the physics system, only when it's on the ground. I put in the wishlist a request for some animation functions. There are a lot of cool things to be done if this feature is implemented. --[[User:Omzy|Omzy]] 11:10, 19 June 2006 (EDT)
 
 
I read somewhere, (maybe Scripting for Dummies by GhanBuriGhan), to use sound files to determine what the PC is doing. Check out the Sentient Weapon mod, as that weapon speaks and gives appropriate vocal reactions to enemies, (it knows what RACE it's hitting, down to specific DAEDRA, "I'll rip all your legs off insect!" for Spider Daedra and "Bad kitty!" for Khajiit, type of thing).    (WaerLoga -22 June) (EDT)
 
==Raising or lowering the water level using a script?==
 
Is there any way I can have the water level change by using a script, like in ''Morrowind, Tribunal''?  I couldn't find any functions that might do this... [[User:TheImperialDragon|The Imperial Dragon]] 22:23, 9 June 2006 (EDT)
 
Alright, anybody remember going against the Black Dart Gang, and pulled the torch on the wall, and the water level rising to drown every enemy in the area?  How would I do that in ''Oblivion''? [[User:TheImperialDragon|The Imperial Dragon]] 13:01, 11 June 2006 (EDT)
 
Any ideas at all are very welcome... [[User:TheImperialDragon|The Imperial Dragon]] 18:58, 12 June 2006 (EDT)
 
:I am not quite sure where I saw this, but something in my memory tells me that there is  an option somewhere in the construction set for a cell to change if the water is at normal height or not.--[[User:Omzy|Omzy]] 19:47, 12 June 2006 (EDT)
 
:No way to change the Waterlevel in scripts. You can define the waterlevel for each [[Exterior_cells|cell]] in the cs, but you can't change it. Drowning traps can be realized, though a bit awkwardly: instead of the water move the dungeon tiles (cf. elevator).--[[User:JOG|JOG]] 17:15, 13 June 2006 (EDT)
 
:Sink the dungeon! Brilliant! What about walls closing in on PC?  (WaerLoga)  (EDT)
 
::Not a bad idea, actually... [[User:TheImperialDragon|The Imperial Dragon]] 00:15, 22 June 2006 (EDT)
 
::Except this is what the Bethesda game designers already did in their games... [[User:TheImperialDragon|The Imperial Dragon]] 00:27, 22 June 2006 (EDT)
 
==Stopping Levelled Lists from spawning NPCs at night?==
 
I can't seem to stop levelled lists from spawning NPCs at night. I only want these NPCs to spawn during certain hours of the day, and disabling them from the NPCs script is ineffective (dozens upon dozens of disabled NPCs). I've tried attaching a script to the levelled lists that should force them to disable during the night, but the NPCs continue to spawn, any ideas? --[[User:MaXiMiUS|MaXiMiUS]] 14:19, 11 June 2006 (EDT)
 
:How about you make a script that spawns the enemies on a special marker (using PlaceAtMe) instead of the leveled list, and using RandomPercent, and make it so that it has a Return command during the night?  You'd have to make a special marker though, and do a lot of scripting...  [[User:TheImperialDragon|The Imperial Dragon]] 14:39, 11 June 2006 (EDT)
 
::Because there's already 1540 levelled lists placed? ;) --[[User:MaXiMiUS|MaXiMiUS]] 17:39, 11 June 2006 (EDT)
 
:::Ah, I see what you mean... These are the bandits/marauders all over Cyrodil I guess? What are you trying to do? [[User:TheImperialDragon|The Imperial Dragon]] 18:03, 11 June 2006 (EDT)
 
::::Randomized travellers between towns, on roads. Thing is, I don't want any new ones to spawn at night, only during day. --[[User:MaXiMiUS|MaXiMiUS]] 18:04, 11 June 2006 (EDT)
 
:::Hmm, is there any way to change the odds of a leveled list generating an enemy, similar to how the game changes the types of enemies you encounter in quest dungeons (ex: Dark Brotherhood quest-> the dungeon you find Roderic and kill him is usually a marauder lair except while the quest is active)? [[User:TheImperialDragon|The Imperial Dragon]] 18:11, 11 June 2006 (EDT)
 
::Probably not, maybe it just enables a disabled NPC? :-/ --[[User:MaXiMiUS|MaXiMiUS]] 18:15, 11 June 2006 (EDT)
 
:::Then what happens to the marauders who usually populate the dungeon? [[User:TheImperialDragon|The Imperial Dragon]] 18:18, 11 June 2006 (EDT)
 
::::Disabled? But that wouldn't make sense! That is exactly what I tried to do, and it did not work! O.o' --[[User:MaXiMiUS|MaXiMiUS]] 18:20, 11 June 2006 (EDT)
 
 
:Could you post your script code?--[[User:Omzy|Omzy]] 18:59, 11 June 2006 (EDT)
 
::I think I've got the solution, just a sec... [[User:TheImperialDragon|The Imperial Dragon]] 19:03, 11 June 2006 (EDT)
 
::Where to start?  I think you have to use a global script to disable the lists by giving one of the lists an Editor Reference ID, then disable the list by typing the ID.  Have a look at FortSutchinterior.  At the base of the stairs going into the dungeon is a marker.  Double click on it and you'll see that its Reference ID is ''Dark07DisableMeEmilREF''.  This ID gets disabled in the quest Dark07Medicine stage 10, so it is a reasonable to assume that because no other reference has such an ID, the game assumes that each list is to be disabled.  The reason disabling the Editor ID wouldn't work is probably because that is not how References are treated in the game, for example, ''JanusHassildor'' is placed into the world and called ''JanusHassildorREF''.  It works in Fort Sutch because the lists have a reference ID.  Such is the way of Sutch (sorry for the really bad pun). [[User:TheImperialDragon|The Imperial Dragon]] 19:11, 11 June 2006 (EDT)
 
:::Hmm, but would there be a way to disable all of them without having over a thousand persistant references? Perhaps some sort of global-check in their script that could stop them from spawning anything? --[[User:MaXiMiUS|MaXiMiUS]] 19:33, 11 June 2006 (EDT)
 
begin GameMode
if ( GameHour >= 19.5 || GameHour < 6.75 ) && GetDisabled == 0
Disable
elseif GetDisabled
Enable
endif
end
--[[User:MaXiMiUS|MaXiMiUS]] 19:46, 11 June 2006 (EDT)
 
After reading my own code, I think I spotted how I messed up. Can't test it now, though! --[[User:MaXiMiUS|MaXiMiUS]] 19:48, 11 June 2006 (EDT)
 
:Nope, it doesn't work properly, and having that many levelled lists with scripts running is a massive FPS hit. I dropped 15FPS, down to 3! *scratches idea* --[[User:MaXiMiUS|MaXiMiUS]] 22:48, 12 June 2006 (EDT)
 
== Getting the spellID of a spell casted on the player ==
 
Any ideas? There has to be a solution somewhere.--[[User:Omzy|Omzy]] 15:17, 12 June 2006 (EDT)
 
You should sign your comments, and technically there is. You can attach scripts to the Player NPC, and they will actually run. Just do some IsSpellTarget checks on the player. No idea how we'd go about with multiple scripts on the player and conflicting plugins though.. --[[User:MaXiMiUS|MaXiMiUS]] 12:44, 12 June 2006 (EDT)
 
Sorry for not signing the comment above, completely slipped my mind--[[User:Omzy|Omzy]] 15:17, 12 June 2006 (EDT)
 
Using IsSpellTarget not only requires the ID of the spell within the command itself, but only returns whether or not the player is being affected by the specified spell. I suppose I could write if/then statements for every single spell, but that would be very time consuming, as there are some few hundred spells. Also, this would only allow my mod to work for spells that are already created. I'm thinking of using an OnMagicEffectHit block with no specified spellID, but I've been stumped at what kind of code I would need to put inside to find the spellID. --[[User:Omzy|Omzy]] 15:27, 12 June 2006 (EDT)
 
*I'm still learning myself, but I'm pretty sure there is no way to get a collection of all the spells effecting the player at any given moment (since in 99% of such cases you would be testing it against a specific spell anyway). I'm wondering what you are trying to do generally. There may be some other way to achieve what you are after without getting a list of all the spells affecting the player. What's the end result you are after? [[User:Jduvall|Jduvall]] 20:03, 12 June 2006 (EDT)
 
 
:Well, for now this is a secret project, but for this specific aspect, I need to determine the id of the spell that is casted on the player at the moment it hits. So, basically, I need the id of the spell at the ScriptEffectStart block. I've been pondering whether I should add a script block to every castable spell in the ScriptEffectStart that sets a global variable to a specific number that corresponds with the spell. That would be incredibly time consuming, but I could pay my little brother =P
 
:See WaerLoga's reply to :"Causing NPC/Creatures to mimic an action the player takes" above            (WaerLoga 22 June)      (EDT)
 
== Getting keystrokes ==
 
Is there a way to see if an actor presses the button for a specific command? For example, if the actor presses the block button?
 
I'm not sure, but you could check the article [[Key input]].  I'm not sure if it'll be any help, but it has a similar goal to this one. [[User:TheImperialDragon|The Imperial Dragon]] 22:14, 12 June 2006 (EDT)
 
That article confirmed my fears. Apparently, there is no way to detect when the player presses their block button. I need an alternate method of doing this. I really think there might be a way by determining which animations the player is doing, like blockidle.kf, but does anyone know how to control these? Or even better, apply a script when a specific idle or animation plays.--[[User:Omzy|Omzy]] 23:53, 12 June 2006 (EDT)
 
== Detecting if a NPC is moving of their own free will? ==
 
For something I'm trying to work on, it would be very useful to tell if the NPC is moving on their own. I need to be able to differentiate between movement, and standing still/getting pushed around. I'm thinking of using GetPos commands for this, but I'm not entirely sure how I should go about it. --[[User:MaXiMiUS|MaXiMiUS]] 23:29, 12 June 2006 (EDT)
 
== Shader effect "PC Hitted" ==
 
If I want to use through script the graphical effect of the hit being, as I must make? As an example when it is taken the sigil stone I seal but I have not understood a lot to us in the scipt.
 
:You could probably use a trap (with low or no damage for only the effect).--[[User:Omzy|Omzy]] 12:36, 13 June 2006 (EDT)
 
::[[TriggerHitShader]]--[[User:JOG|JOG]] 17:00, 13 June 2006 (EDT)
 
== What happens with Travel packages? ==
 
If a NPC has multiple travel packages, and none of them have conditions, what do they do once they reach location A? Idle around a bit, then move on to location B, then once they reach location B, head back to location A as it is at the top of their list, or do they keep going through the list? I'm trying to find a way to have NPCs just walk from one location, to the next, to the next, to the next, until they get all the way back to their original location. This COULD use variables set in the NPCs script, but that would be excessively inefficient, because their starting location is random, for one, and two, there is dozens of NPCs involved. --[[User:MaXiMiUS|MaXiMiUS]] 18:29, 13 June 2006 (EDT)
 
:Well, I figured out the solution to my own problem. I just have the packages as "Must Reach Destination", and if they're in the same cell as the marker they were heading towards, randomly tell them to head to a new marker with EVP. --[[User:MaXiMiUS|MaXiMiUS]] 18:44, 14 June 2006 (EDT)
 
== Item scaling questions.. ==
If a NPC is level 1, and the player is level 50, does the NPC get level 1 equipment, or level 50 equipment? Also: is there a reasonable way to scale a NPC via a script to the players level? Examples would be helpful, I'm trying to make a merchant that can sell stuff and still scale up with the player. --[[User:MaXiMiUS|MaXiMiUS]] 15:38, 15 June 2006 (EDT)
 
:For the first question, the Leveled items are correspondant to the player, think of how regular containers work, so the NPC would have level 50 items.
 
:As for using a script to adjust the NPC's level, you'd probably have to set every stat for the NPC via a script.  I'll look for an example.  Perhaps it would be easier to just make a leveled list?
 
:A possible work around is to have a bodyguard escort the merchant, but if this is the same mod you were making earlier (Stopping NPCs from spawning at night), I don't know how you'd go about it. [[User:TheImperialDragon|The Imperial Dragon]] 16:21, 15 June 2006 (EDT)
 
Here's one example of a script that uses [[ModAV]] or [[ModActorValue]]...
 
 
<pre>
 
; BetTeam 1 is Blue, BetTeam 2 is Yellow
;------controls luck affecting combatant health----
 
if ArenaSpectator.Lucky == 0
if ArenaSpectator.BetTeam == 1
if player.getav Luck >= 50 && player.getav Luck < 60
ModAV Health 5
set ArenaSpectator.Lucky to 1
endif
endif
endif
 
 
if ArenaSpectator.Lucky == 0
if ArenaSpectator.BetTeam == 1
if player.getav Luck >= 60 && player.getav Luck < 70
ModAV Health 10
set ArenaSpectator.Lucky to 1
endif
endif
endif
 
if ArenaSpectator.Lucky == 0
if ArenaSpectator.BetTeam == 1
if player.getav Luck >= 70 && player.getav Luck < 80
ModAV Health 15
set ArenaSpectator.Lucky to 1
endif
endif
endif
 
if ArenaSpectator.Lucky == 0
if ArenaSpectator.BetTeam == 1
if player.getav Luck >= 80 && player.getav Luck < 90
ModAV Health 20
set ArenaSpectator.Lucky to 1
endif
endif
endif
 
 
if ArenaSpectator.Lucky == 0
if ArenaSpectator.BetTeam == 1
if player.getav Luck >= 90 && player.getav Luck < 99
ModAV Health 25
set ArenaSpectator.Lucky to 1
endif
endif
endif
 
if ArenaSpectator.Lucky == 0
if ArenaSpectator.BetTeam == 1
if player.getav Luck == 100
ModAV Health 30
set ArenaSpectator.Lucky to 1
endif
endif
endif
 
 
 
End
 
</pre>
 
The actor value is the value of a stat or variable on the NPC.
 
You could use the [[SetActorValue]] function to set the main skills of your NPC depending on the level of the player.  For example:  If you make a script that modifies the NPC's stats every five levels, you'd want to attach it to each NPC and it'd go something like this:
 
<pre>
 
short DoOnce
short NewLevel
short level
 
if NewLevel == 0
Set level to ( GetLevel player )
set DoOnce to 0
endif
 
If DoOnce == 1
Return
Endif
 
if ( player.getlevel >= 5 ) && ( player.getlevel <= 10 )
SetActorValue Health 100
;rest of stats
set DoOnce to 1
endif
 
if ( player.getlevel >= 10 ) && ( player.getlevel <= 15 )
SetActorValue Health 150
;rest of stats
set DoOnce to 1
endif
 
;etc...
 
</pre>
 
Along with a variable (NewLevel) that gets reset after every time the player levels up.[[User:TheImperialDragon|The Imperial Dragon]] 16:53, 15 June 2006 (EDT)
 
:I think I'll use this code. --[[User:MaXiMiUS|MaXiMiUS]] 19:06, 15 June 2006 (EDT)
 
<pre> if player.GetLevel > GetLevel
;level scaling
if GetIsClass Commoner || GetIsClass Ostler
Set Level2 to Player.GetLevel
elseif GetIsClass Scout
Set Level2 to Player.GetLevel + 1
elseif GetIsClass Warrior
Set Level2 to Player.GetLevel + 2
endif
SetLevel Level2
Set Level to GetRandomPercent + Level2
SetAV Strength Level
Set Level to GetRandomPercent + Level2
SetAV Intelligence Level
Set Level to GetRandomPercent + Level2
SetAV Willpower Level
Set Level to GetRandomPercent + Level2
SetAV Agility Level
Set Level to GetRandomPercent + Level2
SetAV Luck Level
Set Level to GetRandomPercent + Level2
SetAV Speed Level
Set Level to GetRandomPercent + Level2
SetAV Endurance Level
Set Level to ( GetRandomPercent / 2 ) + ( Level2 * ( GetRandomPercent / 10 ) )
SetAV Health Level
Set Level to ( GetRandomPercent * 2 ) + ( Level2 * ( GetRandomPercent / 10 ) )
SetAV Fatigue Level
Set Level to GetRandomPercent + ( Level2 * ( GetRandomPercent / 10 ) )
SetAV Magicka Level
endif</pre>
 
Don't forget to set the skills too. [[User:TheImperialDragon|The Imperial Dragon]] 20:18, 15 June 2006 (EDT)
 
:Couldn't you just click the box that says "PC Level Offset" to "-1", and fill his inventory or merchant chest with items from Leveled Lists? Or am I answering the wrong wuestion?    (WaerLoga 22 June)  (EDT)
 
Not for an NPC whose class doesn't usually sell stuff. [[User:TheImperialDragon|The Imperial Dragon]] 00:25, 22 June 2006 (EDT)
 
== Reskinning Interchangeable Models on NPCs/Horses ==
 
I'm noticing with NPC's and horses that the CS has a basic skeleton with several supplimental parts (like a potato head doll). I want to change the .NIF file associations of the various interchangeable parts to my own retextured .NIFs which I have already created, but I don't see any option to do so through the construction kit (at least not as apparent as for item/skeleton meshes). So how can this be done?
 
:You need to put those files into the same folder as the skeleton, then you can choose them in the "ModelList" in the creature's stats. (Look at the goblins for a good example.--[[User:JOG|JOG]] 11:22, 20 June 2006 (EDT)
 
:Or rename the texture file with NifSkope, the texture path is idicated with a purple flower.  (WaerLoga 22 June)  (EDT)
 
== Making an object STATIC ==
 
How do you make an Object, for example an armour item,  STATIC, so that the PC cannot interact with it?              (WaerLoga)
 
I'm not sure about static, but you can make it so that the player cannot pick the item up either two ways:
 
1. Creating a new static object: Download either [[TES4BSA]] or [[BSA COMMANDER]] to unpack the BSA files. Next, to simply create a new static object and apply whatever mesh you want it to take the form of.  The player won't be able to pick the object up, but will be able to move it around via the "Z" key.
 
2. Via a script: Create a new script that you place on the object so that when the player attempts to pick it up, nothing happens.
 
<pre>
scn StaticScript
 
Begin OnActivate
  Return
End
</pre>
 
 
If you wanted it so that the object cannot be moved at all, you could always use collision boxes around the object. [[User:TheImperialDragon|The Imperial Dragon]] 03:29, 21 June 2006 (EDT)
 
(EDIT)I found that by copying NIFs and DDS files, (armour, weapons & body parts), into the ARCHITECTURE folders for the MESHES & TEXTURES, and renaming them, I could (with CS) place the objects wherever I liked in the world, ie floating in the air, and when I look at it them in-game it's perfect, (for example: an zombie head wearing a helmet stuck to a wall by an arrow). Perfect; they have no physics applied to them so they don't split apart and fall to the ground, but they have no collision boxes, so how do I give a group of objects, like the helmet, head and arrow, one collision box around the group?        (WaerLoga)
 
Within each Nif that has collision is a bhkCollisionObject (i think). I believe that by bringing up the Block Details menu on this, you can toggle some options like Mass, Friction, etc to make the object have collision without movement. When I completely deleted the bhkCollisionObject branches from one nif, the object ceased to have any collision or physics but displayed properly in game, as expected. Sounds like you need to mess with the physics and keep the collision. If your object doesn't have collision by default there is a tutorial called [[Custom Weapons with Nifskope]] that might help you to add some. --[[User:Omzy|Omzy]] 23:54, 21 June 2006 (EDT)
 
You can scale a collision box by holding the S key and moving the mouse.  If you need to, you can use more than one to fill the area you need blocked. [[User:TheImperialDragon|The Imperial Dragon]] 00:18, 22 June 2006 (EDT)
 
(EDIT)In the CS? How do I do that (I have version 1.0.303 do I need to upgrade?) I am only beginning to learn NifSkope. The point I'm trying to make is that a zombie head cannot wear a helmet in-game, but you can take a zombie head in the CS and put a helmet on it, simply meshing it with the head as Collision is turned off, but when you turn on Collision the helmet sperates from the head and both fall to the ground. Not so when I copied and renamed the objects into the ARCHITECTURE folder and created  new zombie head & helmet in CS OBJECTS-STATIC-ARCHITECTURE section and gave them renamed NIF and DDS files of original ZombieHead01 and LegionHelmet. Now that they are STATIC objects they are meshed together in-game, the zombiehead 'appears' to be wearing the Legion Helmet, and both 'appear' stuck to a wall by an arrow, with a Headless Zombie wandering around nearby. But in-game I can walk straight through these objects, as they have no Collision. So what I need to know is how to create a collision box, preferably in the CS, around this group of objects so's one Collision box contains all three objects, and I can collide with the objects but not interact with them, such as you can't interact with other STATIC architecture objects, like a fence or Kvatch Head-on-a-pike. I just want to create scenery pieces by meshing together objects from CS. So, One Collision Box around 3 Objects, how??? (WaerLoga)
 
The Imperial Dragon has the easiest way, providing you don't need to move the objects. Just go to WorldObjects -> Static -> CollisionBox01 and scale it to fit around your items. --[[User:Omzy|Omzy]] 01:01, 22 June 2006 (EDT)
 
 
Or even ''through'' the items, if it isn't being affected by the physics system (If you need to). [[User:TheImperialDragon|The Imperial Dragon]] 01:08, 22 June 2006 (EDT)
 
== How to make a topic and place it in the Questions category ==
 
I know this might seem like a stupid question for a lot of you, but I'm very new to the wiki thing and I don't know how to make a new topic to put into the "Category:Questions" page. The reason I need to do this is because I don't want to fill this page up too much since I have a couple pages of code to paste. I'm sure someone will answer this quickly =P --[[User:Omzy|Omzy]] 23:46, 21 June 2006 (EDT)
 
Put <nowiki>[[Category:Questions]]</nowiki> at the end of the article you want to add to the section.  Now, to make a new article, just make a link to a page that doesn't exist and click Preview.  The link will take you to a blank page named whatever you named the link (ex: <nowiki>[[My Question]]</nowiki>).  Just don't click on save, and it doesn't matter which page you preview, but it is probably best to use your talk page.  Don't worry, it may not seem like it, but I am relatively new here as well, 'bout three/four weeks. [[User:TheImperialDragon|The Imperial Dragon]] 00:12, 22 June 2006 (EDT)
 
Thanks a bunch! --[[User:Omzy|Omzy]] 00:49, 22 June 2006 (EDT)

Latest revision as of 10:39, 3 February 2008

Attention: No new questions allowed!

As a result from the discussion on the Construction Set Forum no new questions pages are allowed on the Wiki. Questions can be asked on the Construction Set Forum or the NifTools Forums. For further information or discussion please see this thread on the forums.