Aller au contenu

Photo

Three Quick Questions


  • Veuillez vous connecter pour répondre
Aucune réponse à ce sujet

#1
Simon.Omega

Simon.Omega
  • Members
  • 70 messages
I am an old school C guy turned Python. And the las NSS scripts I wrote where for persisten worlds at the realease of NWN1... So be easy on me LOL. :)

One) Anything I search for on the forums (anything) comes back with no results, and has done so for the past two days.

Two) Friends gave me an idea to get my feet wet again by making an extention module that allowws the use of Blood Dragon armor from the get go. Reading through "Single Player" it looks as if I could add additional Attribute points thusly:
float   curPoints = GetCreatureProperty(paMainCharacter, PROPERTY_SIMPLE_ATTRIBUTE_POINTS) + 38.0;
SetCreatureProperty(paMainCharacter, PROPERTY_SIMPLE_ATTRIBUTE_POINTS, curPoints);
The code compiles, but dose notihng when triggered. paMainCharacter = GetHero().

Three) Is there a site other than the wiki (seems to be missing alot of advanced topics) for scripting and item development? I ask becasue I have questions it can't answer like:
Are enchanted Items randomly generated (example: enchanted Dagger [Dose about +4])? If so are my items suseptable to being enchanted? And is there a falg to controll this? How do you find out the level requierments of your items with out loading them ingame?