Team save: Difference between revisions
From Catglobe Wiki
More actions
| Nguyenduyan (talk | contribs)  Created page with "Category:Team_Functions {{HelpFiles}}   = Team_save =  Save the new Team have just created by Team_new (On GUI, Team is under Team tab of resource)  == Syntax ==  Team_sav..." | 
| (No difference) | 
Revision as of 02:34, 22 June 2017
 
Team_save
Save the new Team have just created by Team_new (On GUI, Team is under Team tab of resource)
Syntax
Team_save( team);
Arguments
team: is a Team object created by Team_new
Return type
empty
Example
number resourceId = 15562383;
number teamTypeId = 1;
number groupResourceId = 15567436;
array team = Team_new(resourceId, teamTypeId, groupResourceId);//{33,1,My Team,15567436,15562383,{}}
Team_save(team);
