Page 14 of 20
Re: Shandalar Clone

Posted:
08 Sep 2010, 03:41
by friarsol
It seems like you killed Mediafire Dennis. I guess I'll have to wait until we get the next one up on a different upload service to check it out.
Re: Shandalar Clone

Posted:
08 Sep 2010, 03:57
by timmermac
Is there a guide to how much XP is required to level?
Re: Shandalar Clone

Posted:
08 Sep 2010, 04:09
by Rob Cashwalker
I just uploaded the file again, see if it's working now
http://www.mediafire.com/?yuxhtxq99wpxnaq
Re: Shandalar Clone

Posted:
08 Sep 2010, 04:11
by lord of 13
Not inclined to work for me.
Re: Shandalar Clone

Posted:
08 Sep 2010, 04:22
by timmermac
Mediafire does not respond.
Re: Shandalar Clone

Posted:
08 Sep 2010, 05:20
by DennisBergkamp
timmermac wrote:Is there a guide to how much XP is required to level?
- Code: Select all
//calc level from XP:
public static int getLevelFromXP(int xp)
{
int level = 1;
while (xp >= 1000)
{
xp -= level * 1000;
level++;
}
return level;
}
So, at 1000 xp you hit level 2, at 3000 xp you hit level 3, at 6000 xp you hit level 4, 10,000 xp is level 5, etc.
Re: Shandalar Clone

Posted:
08 Sep 2010, 14:56
by timmermac
cool... thanks.
Re: Shandalar Clone

Posted:
08 Sep 2010, 15:12
by Bog Wraith
Got the newer file from the now active Mediafire link, copied the adventure_questData file from my previous version and began exploring.
After walking around a bit, I got to this really cool pop up window.
This game is just so much fun!
Loving this more & more with every encounter, village and surprise like this!
Re: Shandalar Clone

Posted:
08 Sep 2010, 15:20
by friarsol
DennisBergkamp wrote:timmermac wrote:Is there a guide to how much XP is required to level?
- Code: Select all
//calc level from XP:
public static int getLevelFromXP(int xp)
{
int level = 1;
while (xp >= 1000)
{
xp -= level * 1000;
level++;
}
return level;
}
So, at 1000 xp you hit level 2, at 3000 xp you hit level 3, at 6000 xp you hit level 4, 10,000 xp is level 5, etc.
While that might be your intention I don't think this math is quite right.
I think you need
- Code: Select all
while (xp >= 1000 * level)
instead of your current conditional. You gain a level as soon as your XP hits 1000, and sometimes send your XP into negative levels while you increment your level early.
So at 1000 you'll hit level 2, then at 2000 you'll hit level 3. Then 4000 you'll hit level 4. Etc
Re: Shandalar Clone

Posted:
08 Sep 2010, 15:29
by Bog Wraith
Token art is still not appearing in duels. I've checked the tokens file and have seen files for birds, wolves, etc., but they don't show up while playing. I tried switching to different pets before and encounter but the result is the same. I did copy some of the missing token files from an earlier version into the folder & I also checked the icon folder which I think houses the AI quest opponents pics.
Re: Shandalar Clone

Posted:
08 Sep 2010, 15:51
by timmermac
Are their any differences between what was posted last night and what was posted on Monday?
Re: Shandalar Clone

Posted:
08 Sep 2010, 16:10
by Rob Cashwalker
no, I just re-uploaded what I downloaded.
Re: Shandalar Clone

Posted:
08 Sep 2010, 16:15
by timmermac
So far, I like it.... I think I may hold off on playing more until there are more opponents, though, as I've faced each non-castle/quest opponent at least twice.
Re: Shandalar Clone

Posted:
08 Sep 2010, 16:54
by DennisBergkamp
friarisol wrote:DennisBergkamp wrote:timmermac wrote:Is there a guide to how much XP is required to level?
- Code: Select all
//calc level from XP:
public static int getLevelFromXP(int xp)
{
int level = 1;
while (xp >= 1000)
{
xp -= level * 1000;
level++;
}
return level;
}
So, at 1000 xp you hit level 2, at 3000 xp you hit level 3, at 6000 xp you hit level 4, 10,000 xp is level 5, etc.
While that might be your intention I don't think this math is quite right.
I think you need
- Code: Select all
while (xp >= 1000 * level)
instead of your current conditional. You gain a level as soon as your XP hits 1000, and sometimes send your XP into negative levels while you increment your level early.
So at 1000 you'll hit level 2, then at 2000 you'll hit level 3. Then 4000 you'll hit level 4. Etc
Are you saying this is not right in terms of balance, or math? I'm pretty sure the math is right (you will hit level 3 at 3000, level 4 at 6000, etc.)
Whether this is gaining levels too slow (in terms of balance), I don't know...
Re: Shandalar Clone

Posted:
08 Sep 2010, 16:56
by Bog Wraith
Rob Cashwalker wrote:no, I just re-uploaded what I downloaded.
That explains the tokens situation.
Dennis, could you label each release with a version # or some thing like it?