mirror of
https://github.com/UberGames/RPG-X2.git
synced 2025-02-19 09:50:53 +00:00
7 lines
179 B
Lua
7 lines
179 B
Lua
|
function Example()
|
||
|
local ent = entity.Spawn()
|
||
|
if ent == nil then return;
|
||
|
ent:SetKeyValue("classname", "info_notnull");
|
||
|
mover:SetPosition(0, 0, 0);
|
||
|
entity.CallSpawn(ent);
|
||
|
end
|