Echoes nothing (guiref is treated as a string)
PHP Code:
DrawText(("TextTip"));
function DrawText(guiref) {
echo(guiref.position);
}
Echoes nothing (guiref is treated as a string)
PHP Code:
DrawText("TextTip");
function DrawText(guiref) {
echo((@guiref).position);
}
Echoes nothing (I'm not sure what it's getting, I'm assuming nothing)
PHP Code:
DrawText("TextTip");
function DrawText(guiref) {
with (guiref) echo(this.position);
}
TextTip is the name of a GuiDrawingPanel.