View Single Post
  #97  
Old October 6th, 2008, 03:55 PM
cleveland's Avatar

cleveland cleveland is offline
Captain
 
Join Date: Oct 2007
Location: guess - and you'll be wrong
Posts: 834
Thanks: 33
Thanked 187 Times in 66 Posts
cleveland is on a distinguished road
Default Re: Conceptual Balance 1.3, updated documentation

While updating the CBM Forging References, I found two small s.

The first is with the Evening Star. It is not working as intended due to 2 misspellings of the word "effect". Currently, the erroneous code is:

Code:
#selectitem "Evening Star"
#constlevel 2
#end

#selectweapon 304
#secondaryefect 0
#end

#selectweapon 304
#secondaryefectalways 305
#end
The second is with the 2-handed Bane Blade. It is still a Construction-2 item, though presumably should be a Construction-0 item like its 1-handed brother. This is because they're both called "Bane Blade" and the game only mods the first, 1-handed version.

--------------

Both s can easily be corrected by appending your CBcomplete_1.3.dm file with the following code:

Code:
#selectweapon 304
#secondaryeffect 0
#end

#selectweapon 304
#secondaryeffectalways 305
#end

#selectitem 30
#constlevel 0
#end
Reply With Quote