SOA retail 13 december 2013 currently updating
SOA retail 13 december 2013 currently updating
Hi all SOA mobs moves npcs
No scripts (reive npcs can be walked through with @wallhack or setting a script to open them (8 open 9 close, retail like would be on knotted roots... death). Missing flag "campaign/reive" for mobs (no sword near their names).
missing 4 parts of the 4 small gates areas( beyond reive npcs i can't have access in game, not lev 99 yet so i can't solo them).
mob groups pools family moves made to be out of reach of dsp update so it should be 100% dsp compatible.
Made today based on dsp trunk files, if any error let me know (these differs from the one on my server and are made only for people who use dsp db so there can be some mistakes i didn't saw)
23 november 2013:
Corrected zone 265 npc name displayed on bivouac npcs, missing main bivouac, some wall rotation in rala waterways
z 262 a broadleafpalm was @+XXX instead of -xxx
Mob groups and pools to remove mob MP warning when launching server
NPC_LIST MOVED TO LAST POST
MOB_POOL MOVED TO LAST POST
MOB GROUP MOVED TO LAST POST
MOB_SKILL MOVED TO LAST POST
MOB_SPAWN_POINT MOVED TO LAST POST
Updated version of those sql file will always be with the last post in that thread.
No scripts (reive npcs can be walked through with @wallhack or setting a script to open them (8 open 9 close, retail like would be on knotted roots... death). Missing flag "campaign/reive" for mobs (no sword near their names).
missing 4 parts of the 4 small gates areas( beyond reive npcs i can't have access in game, not lev 99 yet so i can't solo them).
mob groups pools family moves made to be out of reach of dsp update so it should be 100% dsp compatible.
Made today based on dsp trunk files, if any error let me know (these differs from the one on my server and are made only for people who use dsp db so there can be some mistakes i didn't saw)
23 november 2013:
Corrected zone 265 npc name displayed on bivouac npcs, missing main bivouac, some wall rotation in rala waterways
z 262 a broadleafpalm was @+XXX instead of -xxx
Mob groups and pools to remove mob MP warning when launching server
NPC_LIST MOVED TO LAST POST
MOB_POOL MOVED TO LAST POST
MOB GROUP MOVED TO LAST POST
MOB_SKILL MOVED TO LAST POST
MOB_SPAWN_POINT MOVED TO LAST POST
Updated version of those sql file will always be with the last post in that thread.
Last edited by gedads on Thu Dec 12, 2013 7:53 pm, edited 13 times in total.
Re: SOA retail november 2013
zonelines Added some missing (from zone 265 to gate, from z 260 to gate)
+ script for onzonein to prevent getting stuck @ 0 0 0
Zoneline patch moved in the last post
+ script for onzonein to prevent getting stuck @ 0 0 0
Zoneline patch moved in the last post
- Attachments
-
- zones.rar
- (71.08 KiB) Downloaded 741 times
Last edited by gedads on Sun Nov 24, 2013 7:36 pm, edited 3 times in total.
-
- Posts: 115
- Joined: Wed Jan 23, 2013 11:14 pm
Re: SOA retail november 2013
Awesome work, you're the man for mob stuff!
Re: SOA retail 23 november 2013
Npc_list:
- corrected director @z256
- added MH mogs for z 256 and 257
zonelines: corrected wotg MH zonelines
zonein.cpp: added MH for wotg and SOA
changed zone.lua from sando S bastok S windurst S to match exiting MH (you can pass those and had if prevzone... as you wish)
PS: i have some difficulty to use some function (getnpcbyid returns error) in SOA areas (maybe because zone id >255). Compmike will try to look at it but if anyone has an idea how to fix it please let me know.
- corrected director @z256
- added MH mogs for z 256 and 257
zonelines: corrected wotg MH zonelines
zonein.cpp: added MH for wotg and SOA
changed zone.lua from sando S bastok S windurst S to match exiting MH (you can pass those and had if prevzone... as you wish)
PS: i have some difficulty to use some function (getnpcbyid returns error) in SOA areas (maybe because zone id >255). Compmike will try to look at it but if anyone has an idea how to fix it please let me know.
- Attachments
-
- zonelines.sql.patch
- (151.42 KiB) Downloaded 719 times
-
- MH WOTG EXIT.patch
- (1.4 KiB) Downloaded 725 times
-
- zone_in.cpp.patch
- (1.22 KiB) Downloaded 716 times
Last edited by gedads on Wed Nov 27, 2013 11:58 am, edited 1 time in total.
Re: SOA retail 23 november 2013
You know with DSP setting up the project and you guys humping away at post wotg, you guys are AWESOME, I just wanted to say I've been away a bit because of family stuff but really appreciate everyones hardwork and look forward to testing some of these new items.gedads wrote:Npc_list:
- corrected director @z256
- added MH mogs for z 256 and 257
zonelines: corrected wotg MH zonelines
zonein.cpp: added MH for wotg and SOA
changed zone.lua from sando S bastok S windurst S to match exiting MH (you can pass those and had if prevzone... as you wish)
PS: i have some difficulty to use some function (getnpcbyid returns error) in SOA areas (maybe because zone id >255). Compmike will try to look at it but if anyone has an idea how to fix it please let me know.
THANKS EVERYONE!
Re: SOA retail 23 november 2013
Change this function on zoneutils.cpp:gedads wrote:Npc_list:
- corrected director @z256
- added MH mogs for z 256 and 257
zonelines: corrected wotg MH zonelines
zonein.cpp: added MH for wotg and SOA
changed zone.lua from sando S bastok S windurst S to match exiting MH (you can pass those and had if prevzone... as you wish)
PS: i have some difficulty to use some function (getnpcbyid returns error) in SOA areas (maybe because zone id >255). Compmike will try to look at it but if anyone has an idea how to fix it please let me know.
Code: Select all
CBaseEntity* GetEntity(uint32 ID, uint8 filter)
{
return g_PZoneList[(uint8)(ID >> 12)]->GetEntity((uint16)(ID & 0x0FFF), filter);
}
Code: Select all
CBaseEntity* GetEntity(uint32 ID, uint8 filter)
{
return g_PZoneList[(uint16)((ID >> 12) & 0x0FFF)]->GetEntity((uint16)(ID & 0x0FFF), filter);
}
Last edited by santssoft on Mon Nov 25, 2013 5:12 pm, edited 1 time in total.
Re: SOA retail 23 november 2013
did it worked for you?
Re: SOA retail 23 november 2013
I didn't test in the work, but the problem is the uint8, it's a unsigned int of 8 bits that supports only up to 255 (see the other iterations of g_PZoneList in the same file, they use a uint16).
Now I'm in home and I can test it.
Now I'm in home and I can test it.
Re: SOA retail 23 november 2013
Well, i crash upon loading the server with modifying only that int8, i tried yesterday to modify those in zoneutils, and everything related to getentity, sometimes it compiled but crash at launch sometimes it simply failed at compile.
if you manage to get a working fix, please let me know so i can remove my latest posts and anything unrelated to the main topic.(better in case of update than dozen of posts unrelated).
if you manage to get a working fix, please let me know so i can remove my latest posts and anything unrelated to the main topic.(better in case of update than dozen of posts unrelated).
Re: SOA retail 23 november 2013
I found the error, I edited my post with the correction: Change (uint8)(ID >> 12) to (uint16)((ID >> 12) & 0x0FFF) or use the path
- Attachments
-
- zoneutils.cpp.patch
- (549 Bytes) Downloaded 737 times