Search found 4 matches
- Sat May 12, 2018 11:09 am
- Forum: Dumb Questions
- Topic: How do I use the lua console to add runes and inscriptions?
- Replies: 3
- Views: 1397
Re: How do I use the lua console to add runes and inscriptio
I really don't recommend doing this as it won't work without some other carefully inserted commands and might still implode but... "game.player:learnTalent(game.player["T_INFUSION:_REGENERATION_6"], true, 1)" Thanks for replying, really appreciated! The command worked (didn't gi...
- Sat May 12, 2018 9:11 am
- Forum: Dumb Questions
- Topic: what's the lua code for Talents cooldown that aren't spells?
- Replies: 3
- Views: 1425
Re: what's the lua code for Talents cooldown that aren't spe
self.talent_cd_reduction.all for a numeric reduction (a simple value subtracted from the normal cooldown) self.talent_cd_reduction.allpct for a percentage reduction (of the same form as self.spell_cooldown_reduction) self.talent_cd_reduction[t.id] for a numeric reduction for a specific talent Thank...
- Fri May 11, 2018 6:40 am
- Forum: Dumb Questions
- Topic: How do I use the lua console to add runes and inscriptions?
- Replies: 3
- Views: 1397
How do I use the lua console to add runes and inscriptions?
How do I use the lua console to add runes and inscriptions? the "game.player:learnTalent(game.player.T_INFUSION:_REGENERATION_6, true, 1)" and anything related to T_RUNE and T_INFUSION doesn't work. it says "function argument expected near ',' " help please.
- Fri May 11, 2018 6:40 am
- Forum: Dumb Questions
- Topic: what's the lua code for Talents cooldown that aren't spells?
- Replies: 3
- Views: 1425
what's the lua code for Talents cooldown that aren't spells?
what's the lua code for Talents cooldown that aren't spells? (T_SLASH) for example isn't a spell (the 'is spell' indicator is no) "game.player.spell_cooldown_reduction=1" is for spells, so what's the one for other talents that aren't spells?