SLIC-Reference : SetString
CTP2 Bureau
The Modding
Knowledgebase
Apolyton CTP2 forums
Apolyton CTP2 archives
Source Code Project SVN

SLIC-Reference : : SetString  

Arguments: index, stringid Type: void

Set string. to the string (from the string database) stringid

For Example, if you these strings in the database:
SCENARIO_AUTHOR_MESSAGE "This scenario was written by [string.1.name]"
SCENARIO_AUTHOR "Joe Rumsey"
And you put this in a SLIC messagebox:
SetString (1, ID_SCENARIO_AUTHOR);
Text (ID_SCENARIO_AUTHOR_ MESSAGE);
The resulting text in the message will be: This scenario was written by Joe Rumsey

Source:

SFN_ERROR Slic_SetString::Call(SlicArgList *args)
{
	if(args->Count() != 2)
		return SFN_ERROR_NUM_ARGS;

	sint32 index;
	if(!args->GetInt(0, index))
		return SFN_ERROR_TYPE_ARGS;

	if(args->m_argValue[1].m_type != SA_TYPE_STRING)
		return SFN_ERROR_TYPE_ARGS;

	const MBCHAR *str = g_theStringDB->GetNameStr(args->m_argValue[1].m_int);
	if(!str)
		return SFN_ERROR_INTERNAL; 

	g_slicEngine->GetContext()->SetAction(index, str);
	return SFN_ERROR_OK;
}

Information last updated by BureauBert on 26.06.2009

User Comments:

Using this form you may add your own observations concerning the above item, e.g. additional hints for usage, limitations, oddities etc. Please note this is not the place for asking questions or carrying out discussions about modding - please refer to the Apolyton CTP2 Modification Forum on that purpose.

Subject / Title*:
Text:*
(A maximum of characters left)
Your name:*
Your website (URL):

*) Required fields

Unkown Tag: Name

  Administration
This site is currently maintained by: BureauBert (Webmaster)  Maquiladora (Manager)  Legal Notice: Legal Notice Statistics: 118120 unique users since 02.05.2004 (» Site Statistics) Hosted by: WebhostOne
Share this page:  VK Facebook Twitter LiveJournal OK MR Google+ LinkedIn tumblr Pinterest Blogger Digg Evernote