another bug in patch2

Users who are viewing this thread

Ettore

Veteran
I too found the fief bug I found the 2 Lords quest bugged too. I got quest , gave 7000 golds to friend lord ( he asked that) gave 7000 to enemy lord and quest was bugged . So i tried to repeat after to have given 700 yo mine Lords and enemy Lord i retuned to firend Lord and gave 1500 more ( he asked so)  I heard music of end quest  ana i went to guild master: QUEST NOT ENDED again AND SURELY BUGGED.
 
Sorry, I am unfamiliar with this quest.  Can you describe it further (or anyone else)?

What quest has you giving 7K to another lord?
 
I have never gotten this quest.  Not sure what about SoD would break it though.  But 'tis plausible, certainly.
 
As far as I can tell neither me or Mordechai couldn't possibly change anything that could affect this quest.
And please post bugs in respective version/variants thread. Now after reorganizing subforum we need more discipline under the sticky line.

Cheers
 
With all due respect, I would prefer that discussions of un-confirmed bugs  happen down here, and when they're resolved to a clear and repeatable bug, then they should be added to the appropriate sticky.  That way, the 10-30 post discussion doesn't have to clutter the sticky, just a single "This is a bug" post need be placed there. ;)
 
Mordachai said:
With all due respect, I would prefer that discussions of un-confirmed bugs  happen down here, and when they're resolved to a clear and repeatable bug, then they should be added to the appropriate sticky.  That way, the 10-30 post discussion doesn't have to clutter the sticky, just a single "This is a bug" post need be placed there. ;)
Well. Ok. We will have to be extra carefull while codding though. If we make too many mistakes we will have bug threads flood all the other discussion under the sticky line ;)
 
vonmistont said:
will have to be extra carefull while codding though. If we make too many mistakes we will have bug threads flood all the other discussion under the sticky line ;)

almost completely off-topic:  is it hard to write python? that is he language you have to write to mod M&B right?
Im currently learning Java, how is python compared to that?
 
The game has its own language, which is generally (and informally) referred to as MS (module system) by the M&B modding community.

It is compiled by a set of programs written in python.  Hence folks often think that MS is python.  Its not.  Its its own thing, but because the compiler system is written in Python, some of the same syntactical systems are used for the MS source code.  It doesn't hurt to know python, for sure, and its possible to extend the MS compiler using python, whereas its impossible to extend MS since once compiled, its executed by M&B engine, which we cannot extend.  This is also why folks sometimes get confused about the extendability of M&B - you can't just write new python scripts for it - they're not available in a mod - only compiled MS code is, hence impossible to use python during the game itself.

Knowing enough to write MS code is fairly easy - trivial really if you have any background in CS whatsoever.  Its a scripting language more akin to scheme, so not really at all like Java (no objects, not classes, not even any string manipulation per se in MS, just tuples, tuples, and more tuples which can handle integers, integer identifiers (they refer to objects in the game engine by number), and some very simple string-registers that are your only string interface (and there is a very simple yet elegant set of operations supported).  But no cutting, concatenating, counting, etc.  No character dereferencing.  Only whole strings or symbol replacement (similar to C's ptrintf() facility).

if you're curious, you can head over to http://forums.taleworlds.com/index.php#c5 and find any post by Jik, look at his signature for links to his updated tutorial, and within a few hours of reading you could be coding your own mods or mod-kits. 8-)
 
doesnt sound so bad writing MS, the only problem is that you cant extend what you want, but that would have been putting on ourselves a bit too much work I think anyway.
Thx for the great info, think I'll check that tutorial out once I get some time. (My exams are getting closer and closer)

edit: btw, when I learn well how to write MS I will be very glad if I could help the mod in any way.
 
Back
Top Bottom