Hi,
Trying to understand something in the games dealer scripts. Is this:
Supposed to mean that the text spoken by the dealer will vary from 400 to 440 possible strings in the msg, depending on the result of the roll and other parameters? That's the only logic I can work out from studying the gambling scripts as to why many strings, the winner lines included aren't clearly called by the script?
I understand most of the rest, or I will soon, but can you also tell me why the script is apparently multiplying the dude_is_female macro?
Trying to understand something in the games dealer scripts. Is this:
Code:
// display results
item_caps_adjust(dude_obj, the_result*bet_amt);
dice_reply(400 + (dude_has_important_rep*(dude_is_male + (2*dude_is_female))) + (10*the_result));
play_dice_options
dice_option(440 + night, Node999, 001);
Supposed to mean that the text spoken by the dealer will vary from 400 to 440 possible strings in the msg, depending on the result of the roll and other parameters? That's the only logic I can work out from studying the gambling scripts as to why many strings, the winner lines included aren't clearly called by the script?
I understand most of the rest, or I will soon, but can you also tell me why the script is apparently multiplying the dude_is_female macro?