Welcome, Guest. Please login or register.
Did you miss your activation email?
September 29, 2024, 04:23:54 pm *

Login with username, password and session length
Pages: [1]
Print
Author Topic: Change to Halloween Pets Slot  (Read 6768 times)
Warbash
Hero Member
*****
Posts: 563


View Profile
« on: April 03, 2012, 09:10:39 pm »

Hi Hunter,

Any chance we could change the Halloween pets to ammo slot or something? I hate finding my pets in my bags every time i need to buff Smiley silly request but if you have the time and like the idea Smiley
Logged

Warbash and crew <Ancient Elites>
Fugitive
Legend
*******
Posts: 1807


TROLL KING


View Profile
« Reply #1 on: April 03, 2012, 09:18:16 pm »

Hi Hunter,

Any chance we could change the Halloween pets to ammo slot or something? I hate finding my pets in my bags every time i need to buff Smiley silly request but if you have the time and like the idea Smiley

thumbs up!! Grin
Logged


Quoted for the Brotherhood of Warriors
"I want my wizard to cast Fugitives instead of fireballs.
We can't always get what we want. ;-)"
-Hate"
barrettd04
Full Member
***
Posts: 233



View Profile
« Reply #2 on: April 03, 2012, 10:09:19 pm »

You don't have one bag that is mainly for teleport rings, cg/fg rings and halloween pet?  Just hotkey the bag and keep pet clicky in same spot.  problem solved.
Logged

garybusey - warrior
umadd - pally
wayfaerer - pewpew
rondonald - cleric
obzen - monk
dongus - zerker
dorfkus - pally
ultrabeard - zerker
dopesmoke - drood
djenty - chanter
hateborne
Legend
*******
Posts: 2282


Don't nerf me bro!


View Profile
« Reply #3 on: April 03, 2012, 10:15:12 pm »

Code to Do It:
Code:
UPDATE `items` SET `slots` = (`slots` + 2097152) WHERE `id` = 113100 or `id` = 113106 or `id` = 113105 or `id` = 113101;

For Titanium, this will allow AMMO slot use.
For SoF+, this will allow POWERSOURCE slot use.

-Hate
Logged

I'm so sorry Hunter, I tried...
Warbash
Hero Member
*****
Posts: 563


View Profile
« Reply #4 on: April 03, 2012, 11:56:52 pm »

You don't have one bag that is mainly for teleport rings, cg/fg rings and halloween pet?  Just hotkey the bag and keep pet clicky in same spot.  problem solved.
Dude,

That would require me to be organized and somewhat functional, your asking a lot here Tongue
Logged

Warbash and crew <Ancient Elites>
Warbash
Hero Member
*****
Posts: 563


View Profile
« Reply #5 on: April 04, 2012, 12:00:14 am »

Code to Do It:
Code:
UPDATE `items` SET `slots` = (`slots` + 2097152) WHERE `id` = 113100 or `id` = 113106 or `id` = 113105 or `id` = 113101;

For Titanium, this will allow AMMO slot use.
For SoF+, this will allow POWERSOURCE slot use.

-Hate
Hate,

For SoF + will it still be ammo slot? Need the power source for t3 spells
Logged

Warbash and crew <Ancient Elites>
Felony
Sr. Member
****
Posts: 394

Trump it


View Profile
« Reply #6 on: April 04, 2012, 04:17:18 am »

No, for that it would require the use of "6291456"
Logged


If we judged them by the content of their character, they'd be begging us to judge them by the color of their skin
hateborne
Legend
*******
Posts: 2282


Don't nerf me bro!


View Profile
« Reply #7 on: April 04, 2012, 12:15:55 pm »

From EQEMU Database Schema:
Quote
slots

    This list is for when setting the equiptable slots on an Item. Remeber to add up the results.
        SLOT_CHARM = 2^0 = 1,
        SLOT_EAR01 = 2^1 = 2,
        SLOT_HEAD = 2^2 = 4,
        SLOT_FACE = 2^3 = 8,
        SLOT_EAR02 = 2^4 = 16,
        SLOT_NECK = 2^5 = 32,
        SLOT_SHOULDER = 2^6 = 64,
        SLOT_ARMS = 2^7 = 128,
        SLOT_BACK = 2^8 = 256,
        SLOT_BRACER01 = 2^9 = 512,
        SLOT_BRACER02 = 2^10 = 1024,
        SLOT_RANGE = 2^11 = 2048,
        SLOT_HANDS = 2^12 = 4096,
        SLOT_PRIMARY = 2^13 = 8192,
        SLOT_SECONDARY = 2^14 = 16384,
        SLOT_RING01 = 2^15 = 32768,
        SLOT_RING02 = 2^16 = 65536,
        SLOT_CHEST = 2^17 = 131072,
        SLOT_LEGS = 2^18 = 262144,
        SLOT_FEET = 2^19 = 524288,
        SLOT_WAIST = 2^20 = 1048576,
        SLOT_AMMO = 2^21 = 2097152,


SOF

        SLOT_CHARM = 2^0 = 1,
        SLOT_EAR01 = 2^1 = 2,
        SLOT_HEAD = 2^2 = 4,
        SLOT_FACE = 2^3 = 8,
        SLOT_EAR02 = 2^4 = 16,
        SLOT_NECK = 2^5 = 32,
        SLOT_SHOULDER = 2^6 = 64,
        SLOT_ARMS = 2^7 = 128,
        SLOT_BACK = 2^8 = 256,
        SLOT_BRACER01 = 2^9 = 512,
        SLOT_BRACER02 = 2^10 = 1024,
        SLOT_RANGE = 2^11 = 2048,
        SLOT_HANDS = 2^12 = 4096,
        SLOT_PRIMARY = 2^13 = 8192,
        SLOT_SECONDARY = 2^14 = 16384,
        SLOT_RING01 = 2^15 = 32768,
        SLOT_RING02 = 2^16 = 65536,
        SLOT_CHEST = 2^17 = 131072,
        SLOT_LEGS = 2^18 = 262144,
        SLOT_FEET = 2^19 = 524288,
        SLOT_WAIST = 2^20 = 1048576,
        SLOT_POWERSOURCE = 2^21 = 2097152,
        SLOT_AMMO = 2^22 = 4194304,


    IE, 3 (1+2) would be SLOT_CHARM AND SLOT_EAR01

This is a bitfield. These take all the slots (additive).
For example: the Stone Monster pet is currently Primary (8192) and Secondary (16384). So the 'slots' bit pattern for the pet is 24576.
To add the AMMO (POWERSOURCE) slot, we add 2097152. So 24576 + 2097152 = 2121728.
If we add item AMMO & POWERSOURCE (SoF) only, we get 247576 + 20971252 + 4194304 = 6316032.

6316032 is larger than the entire pre-SoF table, making it totally unusable by anyone NOT on SoF+.

Basically, if you want to have all these fun clickies...you gotta make some compromise Warbash.


-Hate
Logged

I'm so sorry Hunter, I tried...
barrettd04
Full Member
***
Posts: 233



View Profile
« Reply #8 on: April 09, 2012, 11:47:53 pm »

You don't have one bag that is mainly for teleport rings, cg/fg rings and halloween pet?  Just hotkey the bag and keep pet clicky in same spot.  problem solved.
Dude,

That would require me to be organized and somewhat functional, your asking a lot here Tongue

Whatever floats your boat, bud .  Cheesy
Logged

garybusey - warrior
umadd - pally
wayfaerer - pewpew
rondonald - cleric
obzen - monk
dongus - zerker
dorfkus - pally
ultrabeard - zerker
dopesmoke - drood
djenty - chanter
Pages: [1]
Print
Jump to:  

Recent

Stats

Members
  • Total Members: 6149
  • Latest: Acaelis
Stats
  • Total Posts: 65081
  • Total Topics: 5061
  • Online Today: 383
  • Online Ever: 8678
  • (December 19, 2022, 02:32:09 pm)
Users Online
Users: 0
Guests: 151
Total: 151
TinyPortal v1.0 beta 4 © Bloc