请学C语言的朋友帮个小忙
{new randomads = GetRandomInt(0, 6); //这里的6是指随机抽取0-6行
switch(randomads)
{
case 0: PrintToChatAll("\x04[公告]一起上山");
case 1: PrintToChatAll("\x04[公告]一起斯蒂芬山!");
case 2: PrintToChatAll("\x04[公告]日通过不断深入");
case 3: PrintToChatAll("\x04[公告]一斯蒂芬噶山!");
case 4: PrintToChatAll("\x04[公告]一岳母家体育山.");
case 5: PrintToChatAll("\x05[公告]一虽然他还是山");
case 6: PrintToChatAll("\x04[公告]一试试山^^");
}
if(GetConVarInt(g_ads_2_on)) g_timer_2 = CreateTimer(GetConVarFloat(g_ads_timer_2), Ads2);
}
====================================================
====================================================
GetRandomInt
代表随机,但我不想随机,想顺序发布以下文字广告,GetRandomInt 应该换成什么呐?
追问:对不起啊,鄙人没接触过C语言不是很懂你说的,new randomads = GetRandomInt(0, 6); //这里的6是指随机抽取0-6行
switch(randomads)
请问这2行具体该怎么操作才能达到顺序发布?