How to use python condition?

Hi @Ryan, please give me instructions on using Python in the condition list, please! I don’t understand that where I can store the Python code and how I call it in the condition window.

It uses functions from your plugins so add them to any plugin file. You just type the name of the function in the condition.

1 Like

What is the value of if(Python==value)?

Your function name, your function must return True for the condition to trigger.

1 Like

So, if I have a function A, the statement is going to be like if(Python==A){Python(A);}. Is that right?

Yes but your if python and the executed python wont be the same. Example:
image

def dosomething():
	if get_character_data()['name'] == 'DeRidder14':
		return True

def dosomething2():
	disconnect()

1 Like

Thank you very much. I understood

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.