Files @ a697c0b4dd2d
Branch filter:

Location: games/Princess-Asurja-s-Morning/link.lua

Silverwing
Invalid metadata
require "fmt"

if not instead.atleast(3, 2) then
	std.dprint("Warning: link module is not functional on this INSTEAD version")
	function instead.clipboard()
		return false
	end
end

obj {
	nam = '$link';
	act = function(s, w)
		if not instead.clipboard or instead.clipboard() ~= w then
			std.pr ('{@link ', w, '|', w, '}')
		else
			std.pr(fmt.u (w) ..' [в буфере обмена]')
		end
	end;
}

obj {
	nam = '@link';
	act = function(s, w)
		if instead.clipboard then
			instead.clipboard(w)
		end
	end;
}