472,145 Members | 1,555 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,145 software developers and data experts.

the if-statement that fixes it all, but my computer just skips it.

by now, you have no doupt replied to many of mine and my buddy (børntard)'s questions about our faulty programming concerning the over-complicated mega-script to design your dungeons and dragons roleplaying character.

well, i think i have cracked it. but theres one slight problem i cant seem to get my head wrapped around. i have an IF-statement in my script. well, i have a rediculous ammount actually. but my script skips one of them, and its really irritating because in my eyes, it will fix my problems.

Expand|Select|Wrap|Line Numbers
  1. name=raw_input('What do you want to call your character? ')
  2.  
  3. Strength1 = '' #just defining these so my script doesnt get mad at me and give me an error later
  4. Strength2 = ''
  5.  
  6. for x in range(1,100): #runs the thing a few times, since the potensial for error is relatively big, as you can see in the way too long *if value = value or value2 = value2 thing a bit further down
  7.  
  8.  import random
  9.  
  10.  S1 = random.randint(1, 6)
  11.  S2 = random.randint(1, 6)
  12.  S3 = random.randint(1, 6)
  13.  S4 = random.randint(1, 6)
  14.  
  15.  if S1 < S2 and S1 < S3 and S1 < S4: #rolls a 6 sided dice and removes the one with lowest score, then adds the 3 that rolled highest into a new value called S5. 
  16.      S5 = S2 + S3 + S4
  17.  elif S2 < S1 and S2 < S3 and S2 < S4: 
  18.      S5 = S1 + S3 + S4
  19.  elif S3 < S1 and S3 < S2 and S3 < S4: 
  20.      S5 = S1 + S2 + S4
  21.  elif S4 < S1 and S4 < S3 and S4 < S2: 
  22.      S5 = S1 + S3 + S2
  23.    if S1==S2 or S1==S3 or S1==S4 or S2==S1 or S2==S3 or S2==S4 or S3==S1 or S3==S2 or S3==S4 or S4==S1 or S4==S2 or S4==S3
  24.      print ''
  25.  
  26. print '....... Ability Values .......'
  27. print 'Value 1 = %s ' % S5
  28. print 'Value 2 = %s ' % D5
  29. print 'Value 3 = %s ' % C5
  30. print 'Value 4 = %s ' % I5
  31. print 'Value 5 = %s ' % W5
  32. print 'Value 6 = %s ' % CH5
  33. print '..............................'
  34. print 'You must now choose which of your ability values will be your traits.'
  35. print '..............................'
  36. Strength1=raw_input("Strength affects the ability of characters to lift and carry weights and make effective melee attacks. Please decide which of your ability scores will be your strength score, and type in the corresponding number. ") 
  37.  
  38. if Strength1==1:
  39.     print '........................'
  40.     print 'your strength is now %s.' % S5
  41.     Strength2=S5
  42. elif Strength1==2:
  43.     print '........................'
  44.     print 'your strength is now %s.' % D5
  45.     Strength2=D5
  46. elif Strength1==3:
  47.     print '........................'
  48.     print 'your strength is now %s.' % C5
  49.     Strength2=C5
  50. elif Strength1==4:
  51.     print '........................'
  52.     print 'your strength is now %s.' % I5
  53.     Strength2=I5
  54. elif Strength1==5:
  55.     print '........................'
  56.     print 'your strength is now %s.' % W5
  57.     Strength2=W5
  58. elif Strength1==6:
  59.     print '........................'
  60.     print 'your strength is now %s.' % CH5
  61.     Strength2=CH5
  62.  
  63.         #this is where the problem lies. i dont know why, but my computer doesnt seem to wanna do this if statement. it simply skips it, and its really irritating, because i have a feeling it will all work out if my computer stops thinking "oh, whats this? and if statement? well, that cant be important, lets skip it."
  64.  
  65. print '.............................'
  66. print 'Your strength is now %s' % Strength2
this piece of code is merely a small piece of my big script, but its all basically the same. allow me to explain how i imagine it will happen.

by typing in the correct number in the console, you assign that number to Strength1. then, the if-statement checks Strength1's value, and makes Strength2 the correct size of the character's strength. then it prints the strength. however when i run this script, it simply tells me that my strength is *empty space* :(
Jun 1 '07 #1
3 1137
Smygis
126 100+
Your trying to compare a string with an integer. Thats the problem, you can solve it by putting a
Expand|Select|Wrap|Line Numbers
  1. int()
around the raw_input()

Expand|Select|Wrap|Line Numbers
  1. Strength1 = int(raw_input("Strength affects the ability of characters to lift and carry weights and make effective melee attacks. Please decide which of your ability scores will be your strength score, and type in the corresponding number. "))

You might want to read this thread aswell
http://www.thescripts.com/forum/thread655851.html
Uhm... Is that your friend? BurnTard?
Jun 1 '07 #2
ghostdog74
511 Expert 256MB

Expand|Select|Wrap|Line Numbers
  1. ....
  2. for x in range(1,100): #runs the thing a few times, since the potensial for error is relatively big, as you can see in the way too long *if value = value or value2 = value2 thing a bit further down
  3.  
  4.  import random
  5.  
try to put your import on top of your script to import it once.
Jun 2 '07 #3
Your trying to compare a string with an integer. Thats the problem, you can solve it by putting a
Expand|Select|Wrap|Line Numbers
  1. int()
around the raw_input()

Expand|Select|Wrap|Line Numbers
  1. Strength1 = int(raw_input("Strength affects the ability of characters to lift and carry weights and make effective melee attacks. Please decide which of your ability scores will be your strength score, and type in the corresponding number. "))

You might want to read this thread aswell
http://www.thescripts.com/forum/thread655851.html
Uhm... Is that your friend? BurnTard?
Yup, he's my buddy. I told him the easy way, but he says he has to do this the hard way, to get better at scripting, which I understand.
Jun 2 '07 #4

Post your reply

Sign in to post your reply or Sign up for a free account.

Similar topics

4 posts views Thread by Ryan Lowe | last post: by
9 posts views Thread by Marek Lewczuk | last post: by
35 posts views Thread by David Cleaver | last post: by
73 posts views Thread by Martin Johansen | last post: by
8 posts views Thread by fredda054 | last post: by
reply views Thread by Saiars | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.