EZ Server

General Category => Suggestions => Topic started by: Warbash on April 03, 2012, 09:10:39 pm



Title: Change to Halloween Pets Slot
Post by: Warbash 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 :) silly request but if you have the time and like the idea :)


Title: Re: Change to Halloween Pets Slot
Post by: Fugitive 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 :) silly request but if you have the time and like the idea :)

thumbs up!! ;D


Title: Re: Change to Halloween Pets Slot
Post by: barrettd04 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.


Title: Re: Change to Halloween Pets Slot
Post by: hateborne 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


Title: Re: Change to Halloween Pets Slot
Post by: Warbash 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 :P


Title: Re: Change to Halloween Pets Slot
Post by: Warbash 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


Title: Re: Change to Halloween Pets Slot
Post by: Felony on April 04, 2012, 04:17:18 am
No, for that it would require the use of "6291456"


Title: Re: Change to Halloween Pets Slot
Post by: hateborne 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


Title: Re: Change to Halloween Pets Slot
Post by: barrettd04 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 :P

Whatever floats your boat, bud .  :D