Has anyone found a way to deal with the system playing abilites twice when a player has high ping?
it starts to happen around Net PktLag=550
any insight would be geat!
Announcement
Collapse
No announcement yet.
Able Ability System Info and Support Thread
Collapse
X
-
douw3rd repliedOriginally posted by ExtraLifeMatt View Post
There is a callback when using the Spawn Actor task that lets you set some properties on the spawned actor, so you can do it there. I would likely just have a "Owner" property on my projectiles, set it to the caster, and then when the overlap happens, use an Ability that just does the explosion vfx/sfx, and calls CalculateDamage which then passes in the owner and you can grab all the owner properties in the OnCalculateDamageForActor callback.
Heal would be the same thing. Just pass along the Caster either as owner or instigator, and then either use a custom event or Damage Task (which should work for negative damage...) and pull the stats there.
Leave a comment:
-
Nosh88 repliedI've got it working. Thank you for your support. Appears my overlaps were funky. I've thoroughly enjoyed this plugin, thank you so much for your hard work.
Leave a comment:
-
ExtraLifeMatt replied
Originally posted by Nosh88 View PostI've clicked 'reset preview asset', and it does not clean up dupes. Perhaps I need to close my preview assets blueprint first?
That's the output log when I use the ability. I added a "play particle" task just to test if the ability works and it seems to be working but it's not returning any target actors for some reason. I've spent about an hour playing around with different settings for the task to no avail. Thank you for your reply and support.
Looks like you're calling GetTargetActors and accessing an invalid index as well. You'll want to make sure the array has something in it before you access it. The query not finding something is generally due to the actor not responding to overlaps, or you're checking the wrong collision channel. You can also turn on "Show Collision Queries" in the Ability Editor to see where the query is occurring.
https://docs.unrealengine.com/en-US/...iew/index.html
Leave a comment:
-
Nosh88 repliedI've clicked 'reset preview asset', and it does not clean up dupes. Perhaps I need to close my preview assets blueprint first?
LogAble: Warning: [TestMap (Client 1)] InternalStartAbility [Melee] Started
LogScript: Warning: Script Msg: Attempted to access index 0 from array 'CallFunc_GetTargetActors_ReturnValue' of length 0 in '/Game/PrototypeGame/Blueprints/BP_Player.BP_Player_C:ExecuteUbergraph_BP_Player'!
LogBlueprintUserMessages: [BP_Player_C_0] Client 1:
LogBlueprintUserMessages: [TestMap] Client 1: (World NULL OWNER) Melee - Query found 0 results.
That's the output log when I use the ability. I added a "play particle" task just to test if the ability works and it seems to be working but it's not returning any target actors for some reason. I've spent about an hour playing around with different settings for the task to no avail. Thank you for your reply and support.
Leave a comment:
-
ExtraLifeMatt repliedOriginally posted by Nosh88 View PostI have three questions for you sir,
1: Why does my preview asset seem to be duplicating every now and then when I make a change to the ability and then save it.
2: I am having issues with my collision queries not properly working. I've got a cone shape with its collision channel set to pawn, and is filtering my player character and it is set to Negate (also filtering self actor). Targets are set to target actors. My pawns are setup to the default "pawn" collision channels.
3: Verbose does not seem to be printing out debug information on ability execute.
2. & 3. Verbose definitely works. You can check your Output log. If you aren't seeing anything, then it likely means the Task itself isn't being executed for some reason (Targeting possibly, some other condition not letting it execute). You should get a "play by play" in the log if you turn Verbose on the Ability and on the Task itself. Also make sure you have an Able Ability Component on your Preview Actor, otherwise Able tries to add one at runtime - but that rarely seems to work for whatever reason. Just add it in the actual blueprint of the Preview Actor and close/re-open the editor.
Leave a comment:
-
Nosh88 repliedI have three questions for you sir,
1: Why does my preview asset seem to be duplicating every now and then when I make a change to the ability and then save it.
2: I am having issues with my collision queries not properly working. I've got a cone shape with its collision channel set to pawn, and is filtering my player character and it is set to Negate (also filtering self actor). Targets are set to target actors. My pawns are setup to the default "pawn" collision channels.
3: Verbose does not seem to be printing out debug information on ability execute.
Leave a comment:
-
ExtraLifeMatt repliedOriginally posted by douw3rd View PostAh thanks! No problem at all
Question regarding using the system itself; I'm trying to wrap my head around how I should integrate some of my logic. Say for example I make a spell that spawns an projectile actor and I want some properties to depend on stats from the owner, like how much damage it's going to do. As far as I know it is not possible when using the spawn actor task to assign any variables right away on creation, should I use one of the custom overrides to set these post creation?
Other example: simple spell that heals the owner for x amount, how should I apply the custom value that could depend on other things into able? I'm not really sure how to pass values in to able, but that's probably because I'm taking the wrong approach to using it in the first place.
Hope you can point me in the right direction!
Heal would be the same thing. Just pass along the Caster either as owner or instigator, and then either use a custom event or Damage Task (which should work for negative damage...) and pull the stats there.
Leave a comment:
-
douw3rd repliedAh thanks! No problem at all
Question regarding using the system itself; I'm trying to wrap my head around how I should integrate some of my logic. Say for example I make a spell that spawns an projectile actor and I want some properties to depend on stats from the owner, like how much damage it's going to do. As far as I know it is not possible when using the spawn actor task to assign any variables right away on creation, should I use one of the custom overrides to set these post creation?
Other example: simple spell that heals the owner for x amount, how should I apply the custom value that could depend on other things into able? I'm not really sure how to pass values in to able, but that's probably because I'm taking the wrong approach to using it in the first place.
Hope you can point me in the right direction!
Leave a comment:
-
ExtraLifeMatt repliedOriginally posted by douw3rd View PostCheers!
Code:{ "Name": "AbleEditor", "Type": "UncookedOnly", "LoadingPhase": "PreDefault", "WhitelistPlatforms": [ "Win64", "Win32", "Mac", "Linux" ] }
Leave a comment:
-
ExtraLifeMatt repliedPatch submitted. There's no new version number (since it just fixes something in 4.24), but you should get the update as soon as Epic processes things.
- 2 likes
Leave a comment:
-
ExtraLifeMatt repliedAlright, I found a fix. It's fallout from the new initialization order of modules. If you change your Able.uplugin to swap "AbleEditor" from Editor to DeveloperTool, it'll fix the standalone crash. I'll submit a fix tonight though, so you can also just wait for that.
Code:{ "Name": "AbleEditor", "Type": "DeveloperTool", "LoadingPhase": "PreDefault", "WhitelistPlatforms": [ "Win64", "Win32", "Mac", "Linux" ] }
- 2 likes
Leave a comment:
-
douw3rd repliedHaha, **** happensThanks for having a look at it though! I'll just use full builds instead of standalone client in the meantime when the PIE doesn't suffice
Leave a comment:
-
ExtraLifeMatt repliedOriginally posted by douw3rd View PostI'm not sure if this is actually the whole stack dump, let me know if this info is sufficient
Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x00000048
UE4Editor_Kismet!FBlueprintCompilationManager::FlushCompilationQueue() [d:\build\++ue4\sync\engine\source\editor\kismet\private\blueprintcompilationmanager.cpp:2916]
UE4Editor_CoreUObject!FLinkerLoad::FinalizeBlueprint() [d:\build\++ue4\sync\engine\source\runtime\coreuobject\private\blueprint\blueprintsupport.cpp:1746]
UE4Editor_CoreUObject!FLinkerLoad::Preload() [d:\build\++ue4\sync\engine\source\runtime\coreuobject\private\uobject\linkerload.cpp:3851]
UE4Editor_CoreUObject!FLinkerLoad::CreateExport() [d:\build\++ue4\sync\engine\source\runtime\coreuobject\private\uobject\linkerload.cpp:4558]
UE4Editor_CoreUObject!FLinkerLoad::CreateExportAndPreload() [d:\build\++ue4\sync\engine\source\runtime\coreuobject\private\uobject\linkerload.cpp:3216]
UE4Editor_CoreUObject!FLinkerLoad::LoadAllObjects() [d:\build\++ue4\sync\engine\source\runtime\coreuobject\private\uobject\linkerload.cpp:3380]
UE4Editor_CoreUObject!LoadPackageInternal() [d:\build\++ue4\sync\engine\source\runtime\coreuobject\private\uobject\uobjectglobals.cpp:1311]
UE4Editor_CoreUObject!LoadPackage() [d:\build\++ue4\sync\engine\source\runtime\coreuobject\private\uobject\uobjectglobals.cpp:1426]
UE4Editor_Engine!UEngine::LoadMap() [d:\build\++ue4\sync\engine\source\runtime\engine\private\unrealengine.cpp:12537]
UE4Editor_Engine!UEngine::Browse() [d:\build\++ue4\sync\engine\source\runtime\engine\private\unrealengine.cpp:11975]
UE4Editor_Engine!UGameInstance::StartGameInstance() [d:\build\++ue4\sync\engine\source\runtime\engine\private\gameinstance.cpp:534]
UE4Editor!FEngineLoop::Init() [d:\build\++ue4\sync\engine\source\runtime\launch\private\launchengineloop.cpp:3694]
UE4Editor!GuardedMain() [d:\build\++ue4\sync\engine\source\runtime\launch\private\launch.cpp:159]
UE4Editor!GuardedMainWrapper() [d:\build\++ue4\sync\engine\source\runtime\launch\private\windows\launchwindows.cpp:134]
UE4Editor!WinMain() [d:\build\++ue4\sync\engine\source\runtime\launch\private\windows\launchwindows.cpp:263]
UE4Editor!__scrt_common_main_seh() [d:\agent\_work\2\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl:288]
kernel32
ntdll
Leave a comment:
Leave a comment: