|
Answer Snippets (Read the full thread at enworld):
- Kamikaze Midget....
DCs have a range of 23-26.
|
|
People vary greatly in opinion when it comes to saves. Some people think saving throws add even more time to already lengthy battles and prefer to have them be set in advance as defenses, while others prefer the excitement of leaving your saving throw...
Started by Ellington on
, 15 posts
by 9 people.
Answer Snippets (Read the full thread at enworld):
Do you propose to give every monster "Reflex as saving throw" and "Reflex "Reflex as saving....
They did the reverse this could possibly work.
That assumes the average roll and makes it static.
Or 11 + your saving throw.
|
|
Immortal Resilience At-Will
Trigger: Lolth is subjected to an effect that a save can end.
Effect (No Action): Lolth makes a saving throw against the effect.
Supposedly you can make any number of "No Actions" per round, correct? Does that mean Lolth can...
Started by pippenainteasy on
, 8 posts
by 4 people.
Answer Snippets (Read the full thread at enworld):
It allows you to perform a process days) Tiamat's stat block... .
In the case?
I suppose not, as the saving throw don't end the condition.
A Death Saving Throw can allow someone to spend a surge, thus ending the Dieing condition.
|
Ask your Facebook Friends
|
On Thu, 25 Dec 2008 02:32:53 +0000, Keith Davies <keith.davies@kjdavies.org
Merry Christmas, Everyone.
Enjoy. Thoughts, questions, comments are welcome.
Keith
----------------------------------------------------------------------
Recalibrating...
Started by Keith Davies on
, 22 posts
by 7 people.
Answer Snippets (Read the full thread at omgili):
50% sounds good,....
A high Wisdom protects against, but be careful not to nerf saving throw DCs to
the point saving throws are always made.
Scores in Dexterity and Wisdom sometimes give saving
throw bonuses.
|
|
First of all, a disclaimer: I have experience in other languages, but am still learning the subtleties of C#
On to the problem... I am looking at some code, which uses the try/catch blocks in a way that concerns me. When a parsing routine is called, rather...
Started by Noah on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Just ....
Throw (rather than catch useful exception, handle the error).
Catching an exception, just to throw it again is just a pointless waste of time-by-zero exception; check to see if the divisor is zero beforehand).
Can deal with them.
|
|
When is it appropriate to use a ThrowHelper method instead of throwing directly?
void MyMethod() { ... //throw new ArgumentNullException("paramName"); ThrowArgumentNullException("paramName"); ... } void ThrowArgumentNullException(string paramName) { throw...
Started by smv on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The DRY principle and the rule of 3 guides when I would wrap that in a method... .
I can throw approach is to throw directly from the exceptional code branch.
I always try to throw my own exceptions for the mere purpose of customization.
|
|
So I have a large 2d array that i serialize and base64_encode and throw into a database. On a different page I pull the array out and when I base64_decode the serialized array i can echo it out and it definitely looks valid.
However, if i try to unserialize...
Started by thirsty93 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I would suggest saving the dom tree as XML to the database and loading comment this isn't your problem, but to save space in your database don't base64 encode the data, just.
That reference and problems ensue.
|
|
I have a problem with saving data to stream with a ClientDataSet.
I put data in the ClientDataSet and try to:
... var strmBENU: TMemoryStream; implementation ... TForm1.Button1Click(Sender: TObject); begin ClientDataSet1.SaveToStream(strmBENU); end; ....
Started by pr0wl on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try this:
TForm1.Button1Click(Sender: TObject); var strmBENU: TMemoryStream; begin strmBENU := TMemoryStream.Create; try ClientDataSet1.SaveToStream(strmBENU... .
Have you instantiated strmBENU ?
Probably the stream is not created .
Looks like a NULL reference.
|
|
I have a string property that has a maximum length requirement because the data is linked to a database. What exception should I throw if the caller tries to set a string exceeding this length?
For example, this C# code:
public string MyProperty { get...
Started by lc on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Rather I would allow a string of any length and then have a seperate "Validate" method on the class that is called ... .
I wouldn't throw an exception at all.
} set { if (condition == true) { throw new for.
PropertyA { get { return //etc...
|
|
Here is a sample of the first row:
link,Title,Description,Keywords
It is made from an excel workbook, I tried saving in all CSV formats (window, ms-dos, and comma delimited list) I even tried saving in 2 txt file formats (window, ms-dos)
k... here is ...
Started by PylonsN00b on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Note that most SQL databases have....
You have a syntax error in your SQL-statement.
Dalkes comment above dropped the coin for me:
You are reading from a CSV file, and taking that data and inserting in an SQL database, evidently, although you did not say so .
|