ACP and ASA

User avatar
DanteMccloud
Posts: 25
Joined: Wed May 04, 2016 10:53 pm

Re: ACP and ASA

Post by DanteMccloud » Sun Jun 05, 2016 5:35 pm

TeoTwawki wrote:For the seed mandragora I was just going try having the handling of their spawns in onTick() in a status effect when I had time to look at it. I had no idea I could timer() it.
that would of been so much easier onTick probabaly haha I have them all working and spawning in waves now as well as counting for the party however I noticed "player:addPartyEffect(EFFECT_CONFRONTATION,0,0,1200)" gives the effect BUT it does not show on the effect bar. Kind of weird not sure why it does that haha.

however the player:addStatusEffect version works great haha.
Expedition Gaming
IP Address: expeditiongaming.ddns.net
Server Forums: https://expeditiongaming.ga/forum/index.php
Discord: https://discord.gg/5kJbxCF
Facebook is https://www.facebook.com/groups/1749730585295430
I host an array of game servers from FFXI (pre Abyssea), Tera, Arma3, FFXIV, SWG (pre-CU), BDO (v491)

User avatar
kjLotus
Special Guest
Posts: 1813
Joined: Sun Jul 22, 2012 2:16 pm

Re: ACP and ASA

Post by kjLotus » Sun Jun 05, 2016 6:57 pm

they don't have the same parameters, you gave addPartyEffect an icon of 0 which hides it from their status bar

addPartyEffect is the same as addStatusEffectEx, which has an extra param (after the first)

you would want:

Code: Select all

player:addPartyEffect(EFFECT_CONFRONTATION,EFFECT_CONFRONTATION,0,0,1200)
edit: it looks like it also has some other problems... i'd just do getParty and iterate it in lua instead

User avatar
DanteMccloud
Posts: 25
Joined: Wed May 04, 2016 10:53 pm

Re: ACP and ASA

Post by DanteMccloud » Tue Jun 07, 2016 9:52 pm

Have everything in ACP working up to Ode of Life Bestowing as it works in retail. If anyone has ANY work on the BCNM for this fight done yet I'd appreciate some info on it else I'm making it from scratch which isn't so bad I suppose haha. Almost ready to share just this fight and a CS then it'll all be done ^.^
Expedition Gaming
IP Address: expeditiongaming.ddns.net
Server Forums: https://expeditiongaming.ga/forum/index.php
Discord: https://discord.gg/5kJbxCF
Facebook is https://www.facebook.com/groups/1749730585295430
I host an array of game servers from FFXI (pre Abyssea), Tera, Arma3, FFXIV, SWG (pre-CU), BDO (v491)

User avatar
DanteMccloud
Posts: 25
Joined: Wed May 04, 2016 10:53 pm

Re: ACP and ASA

Post by DanteMccloud » Wed Jun 08, 2016 1:27 pm

kjLotus wrote:

Code: Select all

player:addPartyEffect(EFFECT_CONFRONTATION,EFFECT_CONFRONTATION,0,0,1200)
edit: it looks like it also has some other problems... i'd just do getParty and iterate it in lua instead
I see what you mean, appears that when the effect wears it crashes the server unless it wears by the timer ending.
TeoTwawki wrote:Besides them there is also the sneak attack mechanic on the seed globlin to do, the dulkfutt tower climb, and then the final battlefield mechanics (clones etc).
Also eventually need to redo the tenshodo coffer into need tables, but wasn't going to even bother with it till more of its data was filled in.
I can understand the motivation thing I'm starting to run out of steam on the ACP stuff myself but I wanna get it done before going back to the projects I was working on. I got the tower climb and seed mandy all working now. I still need to go back and do the stuff for the coffers/chests which should be relatively simple compared to the seed mandy and crystal fight haha.

Think I missed something as I can't get the mobs to load into this fight, I can get the door to give the option for the "Ode of life bestowing" fight and it then warps you into the room were the fight happens and you get the Battlefield effect but no mobs spawn. I've been following the guild but I think I missed something somewhere.

BCNM_info -SQL

Code: Select all

'262', '179', 'ode_of_life_bestowing', NULL, NULL, '1800', '75', '6', '0', '5'
mob_spawn_points -SQL

Code: Select all

17510452	Seed_Crystal	Seed Crystal	9301	0.001	202.000	-361.000	64
bcnm_battlefield -SQL

Code: Select all

	262	1	17510458	3
	262	1	17510457	3
	262	1	17510456	3
	262	1	17510455	3
	262	1	17510454	3
	262	1	17510453	3
	262	1	17510452	3
bcnm.lua

Code: Select all

    elseif (Zone == 179) then -- Stellar Fulcrum
        if (player:getCurrentMission(ZILART) == RETURN_TO_DELKFUTTS_TOWER and player:getVar("ZilartStatus") == 3) then -- Zilart Mission 8
            mask = GetBattleBitmask(256, Zone, 1);
            player:setVar("trade_bcnmid", 256);
        elseif (player:getCurrentMission(ACP) >= ODE_OF_LIFE_BESTOWING and player:hasKeyItem(OMNIS_STONE)) then -- ODE_OF_LIFE_BESTOWING
            mask = GetBattleBitmask(262, Zone, 1);
            player:setVar("trade_bcnmid", 262);
        end
According to the console the mob is Spawned... but I can't find where the mob is at haha. I'll have too look at it tomorrow or this weekend, Got the Seed Thrall to spawn but not how it was suppose to, hoping I can get that to work after getting Seed Crystal spawn working. Then I can get the abilities working and thralls spawning right maybe lol.
Expedition Gaming
IP Address: expeditiongaming.ddns.net
Server Forums: https://expeditiongaming.ga/forum/index.php
Discord: https://discord.gg/5kJbxCF
Facebook is https://www.facebook.com/groups/1749730585295430
I host an array of game servers from FFXI (pre Abyssea), Tera, Arma3, FFXIV, SWG (pre-CU), BDO (v491)

Post Reply