發新話題
打印

求!away旁观插件的sp

[Close]
複製內容到剪貼板
代碼:
#include <sourcemod>
public OnPluginStart()
{
RegConsoleCmd("sm_away", JoinTeam1);
}
public Action:JoinTeam1(client, args) {
ChangeClientTeam(client, 1);
}

TOP

那些个性恶搞内容- -???
咩黎

TOP

唔知係唔係咁樣
複製內容到剪貼板
代碼:
#include <sourcemod>
public OnPluginStart()
{
RegConsoleCmd("sm_away", JoinTeam1);
}
public Action:JoinTeam1(client, args) {
switch(GetRandomInt(1,5)
{
     case 1:
     {
     PrintToChatAll("%N的女朋友在旁边",client);
     }
     case 2:
     {
     PrintToChatAll("%N的xx有点痒要看医",client);
     }
     case 3:
     {
     PrintToChatAll("%N有点急事先走一步",client);
     }
     case 4:
     {
     PrintToChatAll("%N的女朋友在旁边",client);
     }
}
ChangeClientTeam(client, 1);
}

TOP

發新話題