⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 npc_test_arrayselect.txt

📁 JA++的最新...很多ROSF都用这个 ] 是个不错的东西-3-
💻 TXT
字号:
prontera.gat,164,190,1	script	ArraySelectTest	113,{

	setarray 'array2$[ 0 ], "1番目", "No.2", "3rd", "", "", "5番目", "ろくばんめ", "七番目";
	set '@num, arrayselect( 'array2$ );
	mes '@num + " = " + 'array2$[ '@num ];
	next;
	
	set '@num, arrayselect( 'array2$, 3 );
	mes '@num + " = " + 'array2$[ '@num ];
	next;
	
	set '@num, arrayselect( 'array2$[ 2 ] );
	mes '@num + " = " + 'array2$[ '@num ];
	next;
	
	set '@num, arrayselect( 'array2$[ 1 ], 2 );
	mes '@num + " = " + 'array2$[ '@num ];
	next;

//---------------------

	setarray @array[ 0 ], 1, 2, 3, 4, 5;
	set '@num, arrayselect( @array );
	mes '@num + " = " + @array[ '@num ];
	next;
	
	set '@num, arrayselect( @array, 3 );
	mes '@num + " = " + @array[ '@num ];
	next;
	
	set '@num, arrayselect( @array[ 2 ] );
	mes '@num + " = " + @array[ '@num ];
	next;
	
	set '@num, arrayselect( @array[ 1 ], 2 );
	mes '@num + " = " + @array[ '@num ];
	
	close;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -