Template:Needs Translation/
函数名
|
Function: key llKeyCountKeyValue( );
|
参数:无
|
返回值:返回一个句柄(一个键) ,该句柄可用于标识相应的数据服务器事件,以确定该命令是否成功或失败以及结果
|
注意事项
|
如果你重新编译了一个脚本,这个脚本之前是与一个体验相关联的,但是客户端缺乏将脚本编译成一个体验的能力,那么这个脚本就会失去相关的体验
|
示例
|
示例一
key trans;
default
{
state_entry()
{
trans = llKeyCountKeyValue();
}
dataserver(key t, string value)
{
if (t == trans)
{
// our llKeyCountKeyValue transaction is done
list result = llCSV2List(value);
if (llList2Integer(result, 0) == 1)
{
// data size retrieved
llSay(0, "Keys in use: "+llList2String(result, 1));
}
else
{
// key count failed
llSay(0, "Key-value failed to count keys: " + llList2String(result, 1) );
}
}
}
}
|