[VSRO] Mob Command Questions..

01/27/2012 15:00 PortalDark#16
Quote:
Originally Posted by Brother_Hood View Post
Some of the Mobs Spawn at Rank "Elite".. It is automatic.
yeah, i mean im gonna find somethign on server/client that determines that a mob can have champ/giant
if i find that, maybe it is possible to find the mobs that spawn as Elite by default and compare data
01/27/2012 15:07 lesderid#17
Quote:
Originally Posted by PortalDark View Post
yeah, i mean im gonna find somethign on server/client that determines that a mob can have champ/giant
if i find that, maybe it is possible to find the mobs that spawn as Elite by default and compare data
Well, basically, the GM command packet is something like this
Code:
[C->S][SomeOpcode]
UInt16/WORD - GM Command ('translated' from loadmonster/makeitem/...)

if (command.Name == "loadmonster")
{
    UInt32/DWORD - Monster ID (in PK2)
    byte - Monster Type ('translated' from CHAMP/GIANT/STRONG)
}
01/27/2012 15:12 PortalDark#18
Quote:
Originally Posted by lesderid View Post
Well, basically, the GM command packet is something like this
Code:
[C->S][SomeOpcode]
UInt16 - GM Command ('translated' from loadmonster/makeitem/...)
if (command.Name == "loadmonster")
    
UInt32/DWORD - Monster ID (in PK2)
    byte - Monster Type ('translated' from CHAMP/GIANT/STRONG)
i meant data on pk2 not packets, but it could help
some MMORPGs has GM tools outside the client that are based on packet sending
i have to learn basis to packets, if i maybe learn and manage something, it could be a great tool fro sro pservers