private server taming card

09/12/2011 18:42 Sinagod#1
Just an fyi I did use the search function but did not find anything on this maybe cause of the way I worded it but not sure. Anyway does anyone know where to find the taming card in the database files like where inside the sql server would i find it and thank you if you know and respond.
09/12/2011 19:03 aseel511#2
Quote:
Originally Posted by Sinagod View Post
Just an fyi I did use the search function but did not find anything on this maybe cause of the way I worded it but not sure. Anyway does anyone know where to find the taming card in the database files like where inside the sql server would i find it and thank you if you know and respond.
u didn't search well
this is what u looking for

Quote:
Originally Posted by Ranma014 View Post
I'll refer tot hat skill list I just posted:
[Only registered and activated users can see links. Click Here To Register...]

search in there for creature taming. i did that for you now. it got the id 4003. now open the skillresource table in the arcadia db and filter it to this id. now look at the column delay_cooltime. change it from 120 (seconds -> 2 min) to 60 or 30 (seconds) and have fun.

and dont forget to restart the server.
09/12/2011 19:10 Sinagod#3
Thank you for your help and like I said the reason i did not find that was probably cause of how I worded my search, but thank you again.
09/12/2011 19:11 Yunchen#4
easier way :


UPDATE [Arcadia].[dbo].[SkillResource]
SET [delay_cooltime] = 30
WHERE [id] = 4003
GO
09/12/2011 19:38 Sinagod#5
Let me put this another way the cool time on the skill was not what I was looking for. What I wanted was to find the card and look for the taming experience bonus like as in what the bonus would be for a +2 card and so on.
09/12/2011 19:54 aseel511#6
so u looking for the skill card id of creature taming
this id 5040032 is for the skill card
but i dont know if there's how much the skill card increase the taming in DB
09/12/2011 21:06 Sinagod#7
ok amazed how you found that so fast but where would i find it in the database?

does anyone know where the skill card creature taming is in the database cause i want to see what the % mod is for a + version of the card like a +2 or +4 and so forth, maybe someone will chime in with some info..
09/16/2011 23:30 Sinagod#8
Well does anyone have any info on this or would i just be grasping at straws???
02/11/2012 17:27 OyunPozitifRappelz#9
English:

What is the code I would like to make tameleme rate by 80%

Germany:

Was ich will, zu 80% des Codes Tameleme machen
02/11/2012 17:55 sadkingbilly#10
Quote:
Originally Posted by OyunPozitifRappelz View Post
What is the code I would like to make tameleme rate by 80%
I don't know the answer to your question. But if you don't get it soon, try to increase the drop rate of empty pet cards by 80%, in the end, you'll have 80% more pets tamed :P

But the value of your pet cards might drop by 80% as well.

And I don't know how to increase drop rate, but surely it's been said here before :P
02/12/2012 08:21 TheOnlyOneRaskim#11
--suchscript (credit Raskim)

SELECT id, StringResource.value, rank
FROM Arcadia.dbo.ItemResource
LEFT JOIN Arcadia.dbo.StringResource
on name_id = StringResource.code
where value like '% %' -- hier suchen
order by id, value, rank


--80% tame chance

update arcadia.dbo.monsterresource set taming_percentage = 0.80 where taming_percentage >= 0