Re: [Tutor] GameTracker help

2012-02-25 Thread Mark Lawrence
On 25/02/2012 15:37, Joel Goldstick wrote: On Sat, Feb 25, 2012 at 5:57 AM, Mike Nickey wrote: I think I found the issue. It seems that the UserOppSkillLvl wasn't passing the integer version of this variable back. Changing line 97 from return UserOppSkillLvl to return int(UserOppSkillLv

Re: [Tutor] GameTracker help

2012-02-25 Thread Joel Goldstick
On Sat, Feb 25, 2012 at 5:57 AM, Mike Nickey wrote: > I think I found the issue. It seems that the UserOppSkillLvl wasn't > passing the integer version of this variable back. > Changing line 97 from >    return UserOppSkillLvl > to >    return int(UserOppSkillLvl) >  seems to have helped. > > Any

Re: [Tutor] GameTracker help

2012-02-25 Thread Mike Nickey
I think I found the issue. It seems that the UserOppSkillLvl wasn't passing the integer version of this variable back. Changing line 97 from return UserOppSkillLvl to return int(UserOppSkillLvl) seems to have helped. Any suggestions on how to implement the UserSkillLvl section so it's not

Re: [Tutor] GameTracker help

2012-02-25 Thread Joel Goldstick
On Sat, Feb 25, 2012 at 5:07 AM, Mike Nickey wrote: > Hey all, > > I'm trying to wok on a game tracker for my friends. What I have here > partly works but there are areas that I want to change and some areas > that are just not working for me. > > The areas that I am having difficulty with are the

[Tutor] GameTracker help

2012-02-25 Thread Mike Nickey
Hey all, I'm trying to wok on a game tracker for my friends. What I have here partly works but there are areas that I want to change and some areas that are just not working for me. The areas that I am having difficulty with are the def pointsNeeded and oppPointsNeeded. What is strange to me is t