hello i want to add custom task into limboAI but the problems is i dont see any misc of it here is my picture of limbo settings user dir and the behavior tree editor, also i use 4.6.3 version and limbo AI 4.6+
The Misc menu is in the behavior tree editor’s own toolbar, not in Project Settings. With the LimboAI editor open (where your second screenshot is), look along the top bar of that panel, the Misc button sits with the New / Load / Save controls. From there Misc → Create Script Template adds the task template to your project.
You might not need it though. A custom task is just a script in your res://ai/tasks folder that starts like this:
@tool
extends BTAction
func _tick(delta: float) -> Status:
return SUCCESS
It has to extend one of BTAction, BTCondition, BTDecorator or BTComposite, plain scripts get ignored by the palette. Since your tasks folder already has scripts in it (attack_player.gd and friends), can you open one and check what it extends? Also check the Output panel at the bottom of the editor, if a script in that folder isn’t a valid task you’ll see a “Failed to instantiate task. Script is not a BTTask” error there, which would tell us exactly which file is the problem.
If the scripts look right and still don’t show, they appear in the task palette on the left of the behavior tree editor rather than as a menu entry, subfolders inside ai/tasks become their own categories there. A refresh of the palette or an editor restart after adding files can also be needed.

