Likes: 0
Results 1 to 10 of 17
Thread: [Request]Pet Scaling Fix
-
27-03-10, 10:12 PM #1
- Rep Power
- 0
- Reputation
- 87
[Request]Pet Scaling Fix
Register to remove this adya im kinda sick of having to do .mod scale everytiem i zone some where or when i relog,ive tried to make my own fixes a few times but it hasnt worked to good failed attempts but anyways..im trying to find a fix for all pets caz once they are tamed they go from 1.0 scale to 0.5 and there very tiny i wanna make all pets after tame stay 1.0 scale no matter what anyone got a idea of how to fix this or aready has it fixed and wants to share. to if someone can help
Edit:Forgot I Need It For Mangos
› See More: [Request]Pet Scaling FixLast edited by Noblebeastx; 27-03-10 at 10:52 PM.
-
28-03-10, 05:23 AM #2
I believe you can edit your Beasts scale in your database. If you want to do a mass update, just do
Code:UPDATE `...` SET `scalecollumn`='...'
-
29-03-10, 03:13 AM #3
- Rep Power
- 0
- Reputation
- 87
How bout say for a whole 500 playes with a hunter pet mass update at ocne insetad of editing it all at ocne for mangos lol trying to help eclonedwow or whatever out caz i play on tehre blizzliek and its jsut like retial but they got a bug where when u tame a pet it goes to 0.5 scale instead of 1.0 liek supsoe to and then there so small it annoys every hunter and it does me to i was told if i could come up with a fix i could prob get a spot as a dev,but ive tried a few things on my test core is use mangos and they all filed any help will be good
-
29-03-10, 09:40 AM #4
I've had that problem when I was working for Infinity, a 255 realm. You can just update the collumns for the creatures with the 'pet' restricted collumn.
-
29-03-10, 11:14 AM #5
- Rep Power
- 0
- Reputation
- 87
how do i posibly do it for over 500 toon's that have a pet and so that everytime someone tames a pet it turns to 1.0scale caz i gotta do this for a whole 500 or more people and i also dont got acess to echolenedwow datbase i was told if i could try to fix it i could be dev tehre li9ek i said plus there on the top like 10 list for servers so i really wanan help them also caz iam hunter like could u possibly make a Sql that i could send to Khell so he can excute into teh database,thats my issue i am not dev yet so i cant look into teh database
-
29-03-10, 12:13 PM #6
You need database for the SQL to execute. And I don't know the ManGOS DB structure, but I know that it is possible.
-
29-03-10, 12:26 PM #7
- Rep Power
- 0
- Reputation
- 87
i know that but can u make up a sql Fix for it caz i can send it to Khell and hell put it in
-
29-03-10, 01:15 PM #8
I believe that the ManGOS Database structure works with the same way as an ArcEmu structure does. Let me download a repack, and if I find it, I'll make you a quick SQL patch.
-
29-03-10, 01:26 PM #9
Perhaps this :
Try :
UPDATE `creature_template` SET `scale`='1.0' where `family` = 2
Somthing like that should update the scale of ALL cat pets to 1.0, or you can make it less. (Cat - Hunter Pet - World of Warcraft)
Do the same, but than search the ID for the other pet sorts. I'm not sure if this will work though, I suck with ManGOS, but hey. I gave it a shot. ^^
-
29-03-10, 01:27 PM #10
Register to remove this adNote : I just tested it & that query worked perfectly. All the 'Tamable beats of the "cat" family' had a scale of 0.5 after executing that.
I'm not sure if this will fix your issue though.