HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

two nifty little functions

12-01-2004, 12:30 AM#1
a thing
Code:
function SetGroup takes group TempGroup returns nothing
call DestroyGroup(udg_TempGroup)
set udg_TempGroup=TempGroup
endfunction

function SetLoc takes location TempPoint returns nothing
call RemoveLocation(udg_TempPoint)
set udg_TempPoint=TempPoint
endfunction

With these you don't have to destroy groups or points (in GUI):god_help_us:
12-01-2004, 12:33 AM#2
Taur
Quote:
Originally Posted by a thing
Code:
function SetGroup takes group TempGroup returns nothing
call DestroyGroup(udg_TempGroup)
set udg_TempGroup=TempGroup
endfunction

function SetLoc takes location TempPoint returns nothing
call RemoveLocation(udg_TempPoint)
set udg_TempPoint=TempPoint
endfunction

With these you don't have to destroy groups or points :god_help_us:
nice functions, Lol i know u made that fp shooter