mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
16 lines
316 B
Text
16 lines
316 B
Text
function txtcmd_addpath ( params )
|
|
|
|
params := SplitWords( params );
|
|
|
|
var phrase := "";
|
|
var arraylength := len( params );
|
|
|
|
for a := 3 to arraylength
|
|
phrase := phrase + params[a] + " ";
|
|
endfor
|
|
print( phrase );
|
|
|
|
endfunction
|
|
|
|
txtcmd_addpath( "say og1 hello out there" );
|
|
txtcmd_addpath( "say og1 boo!" );
|