Magic Item Recharges..
Moderators: Dungeon Masters, Hala DM
-
- Wise One
- Posts: 467
- Joined: Wed Dec 13, 2006 12:00 am
- Location: The Old Hamlet (Evidently GMT-4)
Magic Item Recharges..
Alright, my question begins with this. Sorcerers and Wizards are able to recharge items at the cost of XP. I am wondering if Bards will be able to recharge soon as well. Most bards should have the knowledge to recharge an item, but are unable to at the moment. Please reply soon. Thanks
Lomir Nolimon
Guardsman / Virtuoso of Nuvar; High Champion of Olyrn; Demon Hunter
"Heroism is only a word until you start to live it" - Lomir Nolimon
Jack Olivander (Pirate)
Guardsman / Virtuoso of Nuvar; High Champion of Olyrn; Demon Hunter
"Heroism is only a word until you start to live it" - Lomir Nolimon
Jack Olivander (Pirate)
-
- lord of all I prevail
- Posts: 4646
- Joined: Wed Jun 22, 2005 12:00 am
- Location: Florida
- Contact:
yes they can...heres the code that decides it
Code: Select all
// Determine if the caster meets the Arkez minimum requirements for spellcaster level.
int AES_MeetsMinReqs(object oCaster, int iClass)
{
int iLevel = GetLevelByClass(iClass, oCaster);
int iReturn;
switch(iClass)
{
case CLASS_TYPE_BARD:
if (iLevel >= 13)
iReturn = 1;
break;
case CLASS_TYPE_CLERIC:
case CLASS_TYPE_DRUID:
case CLASS_TYPE_SORCERER:
if (iLevel >= 9)
iReturn = 1;
break;
case CLASS_TYPE_WIZARD:
if (iLevel >= 7)
iReturn = 1;
break;
case CLASS_TYPE_PALADIN:
case CLASS_TYPE_RANGER:
if (iLevel >= 17)
iReturn = 1;
break;
default:
iReturn = 0;
}
return iReturn;
}
Visit the Arkaz Wiki at http://www.arkaz.com/lore
-
- Wise One
- Posts: 467
- Joined: Wed Dec 13, 2006 12:00 am
- Location: The Old Hamlet (Evidently GMT-4)
- NightsMistress
- Team Member; Retired with honors
- Posts: 125
- Joined: Thu Dec 21, 2006 12:00 am
-
- lord of all I prevail
- Posts: 4646
- Joined: Wed Jun 22, 2005 12:00 am
- Location: Florida
- Contact:
I'll check the placeable, though you didn't meet the level requirements...it shouldn't have taken your wand.
Visit the Arkaz Wiki at http://www.arkaz.com/lore
-
- lord of all I prevail
- Posts: 4646
- Joined: Wed Jun 22, 2005 12:00 am
- Location: Florida
- Contact:
Code: Select all
case CLASS_TYPE_BARD:
if (iLevel >= 13)
iReturn = 1;
break;
case CLASS_TYPE_CLERIC:
Visit the Arkaz Wiki at http://www.arkaz.com/lore