spawn movement

EQ2Emulator Development forum.

Moderator: Team Members

Post Reply
User avatar
Ememjr
Team Member
Posts: 975
Joined: Wed Mar 15, 2017 9:41 am
EQ2Emu Server: Perseverance

spawn movement

Post by Ememjr » Thu Sep 28, 2017 12:22 pm

as the spawn move command allows you to move spawns around using the same technology the move house items uses.

does anyone remember where the control is to tell the client that the items can be moved up and down and resized, iir that was an added feature later in the game

i have checked the entermoveobjectmodemsg and nothing in there that i code see changes it

Jabantiz
Lead Developer
Posts: 2912
Joined: Wed Jul 25, 2007 2:52 pm
Location: California

Re: spawn movement

Post by Jabantiz » Thu Sep 28, 2017 4:00 pm

There is a packet that needs to be sent before hand that will limit where stuff can be placed, it is currently hardcoded and I do not believe any one has figured out its values. I found it in client.cpp it is OP_MoveableObjectPlacementCriteri

Code: Select all

void Client::SendZoneSpawns(){
	//Allows us to place spawns almost anywhere
	uchar blah[] ={0x00,0x3C,0x1C,0x46,0x00,0x3C,0x1C,0x46,0x00,0x3C,0x1C,0x46};
	EQ2Packet* app = new EQ2Packet(OP_MoveableObjectPlacementCriteri, blah, sizeof(blah));
	QueuePacket(app);

	ClientPacketFunctions::SendSkillSlotMappings(this);
	ClientPacketFunctions::SendGameWorldTime ( this );
	GetCurrentZone()->StartZoneInitialSpawnThread(this);
}

User avatar
Ememjr
Team Member
Posts: 975
Joined: Wed Mar 15, 2017 9:41 am
EQ2Emu Server: Perseverance

Re: spawn movement

Post by Ememjr » Thu Sep 28, 2017 4:09 pm

yes i saw that and changed the values to the values i am collecting and still no go
here is what i have on all my collects

Code: Select all

uchar blah[] = { 0x00, 0x00, 0xF0, 0x41, 0x00, 0x00, 0xAA, 0x42, 0x00, 0x00, 0x2F, 0x43 };
i can pretty much place where i wnt just cant scroll to resize or move up down, only thing i can do is move mouse and get different floor position and rotate

User avatar
Ememjr
Team Member
Posts: 975
Joined: Wed Mar 15, 2017 9:41 am
EQ2Emu Server: Perseverance

Re: spawn movement

Post by Ememjr » Thu Sep 28, 2017 4:13 pm

for curiosity sakes wiil comb through ghost command, maybe something in the spawn limits whether or not it can be resized

Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests