Code:
AddAISceneWaypoint(Vector(X,Y))
Code:
AddAISceneWaypoint(X,Y)
both should work.
or, if you want to use a pointer, to use later or whatever,
Code:
a = Vector(X,Y)
AddAISceneWaypoint(a)
you can also call the coordinates separately, and use them separately.
Code:
a = Vector(6,2)
a.X --returns "6"
a.Y --returns "2"
AddAISceneWaypoint(a.X,a.Y)