babys pets????

If something doesn't fit in any other forum then post it here.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
yoria
Posts: 2
Joined: Fri Jun 30, 2006 12:29 pm

babys pets????

Post by yoria »

Pets baby c4 has armors and weapons? If it has where are? :roll: :roll: :roll:
nineveh
Posts: 5
Joined: Wed Jun 14, 2006 5:35 am

Post by nineveh »

c4 pets dont have any armor/weapons yet just food
User avatar
alexey-kalya
Posts: 9
Joined: Wed Jul 26, 2006 8:05 pm
Location: Ukraine
Contact:

Post by alexey-kalya »

also they dont grow :"(
yoria
Posts: 2
Joined: Fri Jun 30, 2006 12:29 pm

res

Post by yoria »

alexey-kalya wrote:also they dont grow :"(
then they do not upam, as to go up level one baby with 1 of attack.
User avatar
alexey-kalya
Posts: 9
Joined: Wed Jul 26, 2006 8:05 pm
Location: Ukraine
Contact:

Post by alexey-kalya »

yoria
If 9 give him 78 lvl, they dont grow to big pet like a strider. & no quests about that. It's sad :(
TobZn
Posts: 84
Joined: Fri Dec 23, 2005 2:24 am
Contact:

Post by TobZn »

alexey-kalya wrote:yoria
If 9 give him 78 lvl, they dont grow to big pet like a strider. & no quests about that. It's sad :(
make the quest for little wings and get a hatchling ! than lvl the hatchling to lvl 55 ! After that you go to Hunters Village near Gatekeeper ther is a man names "Cronos" got to him summon youré hatchling , and do the n1 quest by Cronos! ^^ After this quest you go to buzz the cat and she will make youre hatch 2 a strider!
So long i *RuP* da *BonG*
User avatar
alexey-kalya
Posts: 9
Joined: Wed Jul 26, 2006 8:05 pm
Location: Ukraine
Contact:

Post by alexey-kalya »

TobZn
i say about baby cougar. I know how to do exchange hatching ro strider.
kilkenny
L2j Veteran
L2j Veteran
Posts: 149
Joined: Thu Apr 27, 2006 11:04 am
Contact:

Post by kilkenny »

The baby pets arent supposed to grow, just like the wolf. Only their healing grows. The adult pets can only be obtained by doing a quest to tame wild beasts.
Also baby pets dont do any damage (well, they hit for 1 if ur lucky) and have not defense. They are used to heal, not to fight.
Birdy
Posts: 2
Joined: Wed Aug 16, 2006 9:05 am

Re: res

Post by Birdy »

yoria wrote:
alexey-kalya wrote:also they dont grow :"(
then they do not upam, as to go up level one baby with 1 of attack.
According to the Baby pets' FAQ on the official site of lineage2, baby pets, normaly take 10% of your acquired experience that's the way to make them level up, but this feature is not available in L2j right now... .
User avatar
ThePhoenixBird
L2j Inner Circle
L2j Inner Circle
Posts: 1857
Joined: Fri May 27, 2005 5:11 pm

Post by ThePhoenixBird »

They are just CUTE! :wink:
taneltm
Posts: 27
Joined: Tue Dec 06, 2005 1:13 am

Post by taneltm »

Now they can be deadly too.. i made a little script what will make another script :lol: .. you can calculate your own baby pet stats with it..

i know it's very custom but baby pets are useless at the moment...

babypets.bat

Code: Select all

@echo off
:: ------------------
:: - Config area

:: These are the base values for lvl 1 pet, they may be too high and should be tested.
:: But keep in mind that baby pets don't start from lvl 1, they start from lvl 25 and
:: that they don't have any armors and weapons..
::
:: You should also see the script area on how the stats are calculated.

set patk1=50
set matk1=50
set pdef1=170
set mdef1=170


:: ------------------
:: - Script area

:: Every baby pet has a weakness, matk is the same cause they
:: don't cast any spells at the moment anyway..
::
:: Baby kookaburra: has the lowest physical attack.
:: Baby buffalo: has the lowest magical defence.
:: Baby cougar: has the lowest physical defence.

if exist babypets.sql del babypets.sql

set patk2=0
set matk2=0
set pdef2=0
set mdef2=0
set /a lvl=1
:babykookaburra
cls
echo Calculating stats for Baby Kookaburra, level %lvl%.
set /a patk2=%patk1% + (%lvl% * 1)
set /a matk2=%matk1% + (%lvl% * 1)
set /a pdef2=%pdef1% + (%lvl% * 2)
set /a mdef2=%mdef1% + (%lvl% * 2)
echo UPDATE pets_stats SET patk='%patk2%', matk='%matk2%', pdef='%pdef2%', mdef='%mdef2%' WHERE type='baby kookaburra' AND level='%lvl%';>> babypets.sql
set /a lvl=%lvl% + 1
if "%lvl%"=="82" set /a lvl=1&goto babybuffalo
goto babykookaburra

:babybuffalo
cls
echo Calculating stats for Baby Buffalo, level %lvl%.
set /a patk2=%patk1% + (%lvl% * 2)
set /a matk2=%matk1% + (%lvl% * 1)
set /a pdef2=%pdef1% + (%lvl% * 2)
set /a mdef2=%mdef1% + (%lvl% * 1)
echo UPDATE pets_stats SET patk='%patk2%', matk='%matk2%', pdef='%pdef2%', mdef='%mdef2%' WHERE type='baby buffalo' AND level='%lvl%';>> babypets.sql
set /a lvl=%lvl% + 1
if "%lvl%"=="82" set /a lvl=1&goto babycougar
goto babybuffalo

:babycougar
cls
echo Calculating stats for Baby Cougar, level %lvl%.
set /a patk2=%patk1% + (%lvl% * 2)
set /a matk2=%matk1% + (%lvl% * 1)
set /a pdef2=%pdef1% + (%lvl% * 1)
set /a mdef2=%mdef1% + (%lvl% * 2)
echo UPDATE pets_stats SET patk='%patk2%', matk='%matk2%', pdef='%pdef2%', mdef='%mdef2%' WHERE type='baby cougar' AND level='%lvl%';>> babypets.sql
set /a lvl=%lvl% + 1
if "%lvl%"=="82" goto end
goto babycougar

:end
cls
if exist babypets.sql (
	echo babypets.sql created in "%cd%"
	) else (
	echo There was a problem creating babypets.sql
	)
echo.
echo End of script.
pause> nul
i have only tested the default values a little.. with those stats, lvl 30 baby cougar does more damage than a lvl 35 hatchling of wind with weapon and armor but the baby cougar needs a lot more healing..
Last edited by taneltm on Sun Sep 17, 2006 3:41 pm, edited 1 time in total.
taneltm
Posts: 27
Joined: Tue Dec 06, 2005 1:13 am

Post by taneltm »

(double post, sry)
kilkenny
L2j Veteran
L2j Veteran
Posts: 149
Joined: Thu Apr 27, 2006 11:04 am
Contact:

Post by kilkenny »

With C5 baby pets do have armor :)

They dont grow, maybe if someone has a custom script to do this, it could be nice. But it is custom.
THey only heal in the original, and take 10% of the xp for themselves. Dont know the exact healing rates, will try to check.
Post Reply