Charcoal Posted December 3, 2006 Posted December 3, 2006 Just how fast is fast hero? (w00t) <{POST_SNAPBACK}> Depends on the level For those that don't know, they are the basic classes for d20 Modern. My project is (hopefully) going to use a rule set based on my own design; unless it gets too hard, or people really, really want d20 Modern (and some of the d20 Future supplemental stuff) ported.
Oracle of Mythos Posted December 3, 2006 Posted December 3, 2006 Thank you Monty, I hope to create a trailer as well in the near future LOL... a hero is fast to be fast, but how smart is he to be smartest? (i have no idea what that means hehehe) Oracle - Lead Admin MYTHOS2: The Legends Return {RP} A Neverwinter Nights 2-Persistent Online World NWN2:M2 Forums "Vi veri universum vivus vici"
Kaftan Barlast Posted December 4, 2006 Posted December 4, 2006 We've begun making the first batch of trial modules to try out the features before beginning our grand project. DISCLAIMER: Do not take what I write seriously unless it is clearly and in no uncertain terms, declared by me to be meant in a serious and non-humoristic manner. If there is no clear indication, asume the post is written in jest. This notification is meant very seriously and its purpouse is to avoid misunderstandings and the consequences thereof. Furthermore; I can not be held accountable for anything I write on these forums since the idea of taking serious responsability for my unserious actions, is an oxymoron in itself. Important: as the following sentence contains many naughty words I warn you not to read it under any circumstances; botty, knickers, wee, erogenous zone, psychiatrist, clitoris, stockings, bosom, poetry reading, dentist, fellatio and the department of agriculture. "I suppose outright stupidity and complete lack of taste could also be considered points of view. "
Andre Pang Posted December 7, 2006 Posted December 7, 2006 Hi Maria, I think I've figured out the alignment restriction flags. Assuming your examples are correct, the breakdown I did of the alignment bits seem right to me. From high-order to low-order, the AlignRestrict bits seem to be: 0x10 = Evil 0x08 = Good 0x04 = Chaotic 0x02 = Lawful 0x01 = Neutral (affected by the AlignRestrictType flag, see below). Note: Those are alignment restrictions. i.e. If you set the AlignRestrict field to be 0x10, that means you cannot select evil characters, so you can only choose neutral or good characters. 0x01 (Neutral) is a bit more complex. That's affected by the AlignRestrictType flags. If you don't care about restricting neutrality in any way, I believe the AlignRestrictType flag serves no purpose. If the Neutral bit is set, here's how the AlignRestrictType flag affects it: 0x02 = Restricts LN, N, CN 0x01 = Restricts NG, N, NE You can also set the AlignRestrictType flag to 0x03, in which case it will affect both axes as you expect; i.e. it will restrict NG, LN, N, CN, NE. It's easiest to visualise this as the standard 3x3 alignment grid: LG NG CG LN N CN LE NE CE Setting any AlignRestrict bit will then restrict an entire horizontal or vertical row of the grid: 0x10 = Evil (invalidates bottom row) 0x08 = Good (invalidates top row) 0x04 = Chaotic (invalidates right column) 0x02 = Lawful (invalidates left column) 0x01/0x01 = Neutral/Restrict Good+Evil (invalidates middle column) 0x01/0x02 = Neutral/Restrict Lawful+Chaotic (invalidates middle row) 0x01/0x03 = Neutral/Restrict G+E+L+C (invalidates middle column and middle row) I've whipped up a Google Spreadsheets document to try to make things easier: Alignment Bits on Google Spreadsheets The sorta dumb thing is that the alignment bitfield actually uses 8 bits right now: (1) evil, (2) good, (3) chaotic, (4) lawful, (5) neutral, (6) neutral restrict LC, (7) neutral restrict GE, ( invert. Since there's only 9 possible alignments, it would be far simpler and take less space to just use 5 bits to store the information, with each bit being a boolean flag for each of the LG/NG/CG/LN/N/CN/LE/NE/CE alignments ). I'm a little puzzled as to why Obsidian/BioWare chose this 8-bit encoding for restricting alignments. Note: in four of your examples (non-evil = 0x10, any chaotic or evil = 0x14, non-good = 0x08, and non-lawful = 0x02), the AlignRestrictType shouldn't have any effect, even though they're set to different values in all four of those cases. Perhaps the game engine requires the AlignRestrictType to be non-zero, or I've interpreted it slightly wrongly. Hope that's slightly useful for someone... now, back to procrastinating to see if I can get these pesky Genasi races enabled... -- % Andre Pang : trust.in.love.to.save <http://www.algorithm.com.au/>
metadigital Posted December 7, 2006 Posted December 7, 2006 Since there's only 9 possible alignments, it would be far simpler and take less space to just use 5 bits to store the information, with each bit being a boolean flag for each of the LG/NG/CG/LN/N/CN/LE/NE/CE alignments ). I'm a little puzzled as to why Obsidian/BioWare chose this 8-bit encoding for restricting alignments. <{POST_SNAPBACK}> Is it stored as a global variable? Maybe it is a hang-over from the Aurora engine? Good information, thanks. OBSCVRVM PER OBSCVRIVS ET IGNOTVM PER IGNOTIVS OPVS ARTIFICEM PROBAT
Diamond Posted December 7, 2006 Posted December 7, 2006 The sorta dumb thing is that the alignment bitfield actually uses 8 bits right now: (1) evil, (2) good, (3) chaotic, (4) lawful, (5) neutral, (6) neutral restrict LC, (7) neutral restrict GE, ( invert. Since there's only 9 possible alignments, it would be far simpler and take less space to just use 5 bits to store the information, with each bit being a boolean flag for each of the LG/NG/CG/LN/N/CN/LE/NE/CE alignments ). I'm a little puzzled as to why Obsidian/BioWare chose this 8-bit encoding for restricting alignments. <{POST_SNAPBACK}> I'm not quite sure I understand you correctly, but wouldn't you use 9 bits if every bit is a bit field for one alignment?
Andre Pang Posted December 7, 2006 Posted December 7, 2006 Uh, very sorry, you're correct Diamond. That was a rather embarassing mistake ). (I'd been so far in binary land that I was thinking "Hmm, 9 alignments; you can squeeze 9 into 5 bits!")
Diamond Posted December 7, 2006 Posted December 7, 2006 You can squeeze it into 4 bits even, yeah. But then you'd be unable to use it as a bit mask to check if an alignment should be restricted.
Andre Pang Posted December 7, 2006 Posted December 7, 2006 Getting slightly back out of binaryville, has anybody done some work on adding the Genasi races into the original campaign? I've been meaning to do some work on them (along with a couple of the other Forgotten Realms races, like Orogs and Fey'ri), but was kinda being lazy and hoping that somebody else had done the work for me ;-). If not, I'm happy to get hacking. (Oddly enough, I did hack up a half-erinyes race for NWN1; I never expected others to have the same tastes as moi. They're just so much more interesting than Succubi.)
Volourn Posted December 7, 2006 Posted December 7, 2006 R00fles! Tileset tab in blueprint window has vanished! HAHAHA! DWARVES IN PROJECT ETERNITY = VOLOURN HAS PLEDGED $250.
Hans Moleman Posted December 8, 2006 Posted December 8, 2006 Hey all, Im trying to edit the drow race to use the succubus outfit, for a charismatic seductive female sorcerer (that was created through an experiment with a drow and the essence of a succubus), who tries to escape her heritage (because of the west harbour incident). Ive been fiddling around with the appearance.2da file; and succeeded in swapping the heads with human ones to use lord badmagics retextured human head to look like the above profile, but i cant get the body to show up... how can i do this? Btw im borrowing a friends copy (getting mine for x-mas) so i dont have a useable cd-key for nwn2 custom content forums in case your wondering why im asking here...
Weiser_Cain Posted December 9, 2006 Posted December 9, 2006 Is there a way to change the model to female in the armor design screen? Yaw devs, Yaw!!! (
jaguars4ever Posted December 9, 2006 Posted December 9, 2006 (edited) R00fles! Tileset tab in blueprint window has vanished! HAHAHA! <{POST_SNAPBACK}> You probably unpinned it. Look at the top right hand corner of your screen: If you see "Blueprints" rotated 90 Edited December 9, 2006 by jaguars4ever
Volourn Posted December 9, 2006 Posted December 9, 2006 "You probably unpinned it. Look at the top right hand corner of your screen: If you see "Blueprints" rotated 90 DWARVES IN PROJECT ETERNITY = VOLOURN HAS PLEDGED $250.
Weiser_Cain Posted December 11, 2006 Posted December 11, 2006 Seems you need a plugin to make female armor without working in the dark. Has anyone attempted to make their own class or prc yet? Yaw devs, Yaw!!! (
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now