Page 3 of 3
Re: 709 Changelog
Posted: Mon May 07, 2012 5:03 am
by rock5
freemw wrote:add please in \database\skills.xml
Code: Select all
<skill name="KNIGHT_FULL_MOON_CLEAVE" id="495486" mana="250" range="100" cooldown="20" type="damage" target="enemy" aoecenter="player" />
I'll add it to my next commit but are you sure about the range? The skill description says the range is 80.
Re: 709 Changelog
Posted: Fri May 11, 2012 1:33 am
by freemw
rock5 wrote:freemw wrote:add please in \database\skills.xml
Code: Select all
<skill name="KNIGHT_FULL_MOON_CLEAVE" id="495486" mana="250" range="100" cooldown="20" type="damage" target="enemy" aoecenter="player" />
I'll add it to my next commit but are you sure about the range? The skill description says the range is 80.
Yes, range="80"
Small patch for russian client:
in file player.lua
Code: Select all
3558 cprintf(cli.green, language[135], _npcname); -- We try to find NPC
3559
3560 if type(_npcname) == "string" and
3561 bot.ClientLanguage == "RU" then
3562 _npcname = utf82oem_russian(_npcname); -- language conversations for Russian Client
3563 end
change on
Code: Select all
3558 if type(_npcname) == "string" and
3559 bot.ClientLanguage == "RU" then
3560 _npcname = utf82oem_russian(_npcname); -- language conversations for Russian Client
3561 end
3562
3563 cprintf(cli.green, language[135], _npcname); -- We try to find NPC
in file functions.lua
Code: Select all
1667 elseif questToAccept ~= "" and questToAccept ~= "all" and i==availableQuests then
1668 -- Didn't find name match
1669 printf("Questname not found: %s\n",questToAccept) -- Quest not found
1670 end
change on
Code: Select all
1667 elseif questToAccept ~= "" and questToAccept ~= "all" and i==availableQuests then
1668 -- Didn't find name match
1669 if bot.ClientLanguage == "RU" then
1670 questToAccept = utf82oem_russian(questToAccept); -- language conversations for Russian Client
1671 end
1672 printf("Questname not found: %s\n",questToAccept) -- Quest not found
1673 end
Re: 709 Changelog
Posted: Fri May 11, 2012 1:39 am
by rock5
LOL. I already committed it yesterday.