發新話題
打印

bind 說話 and sp檔亂碼問題

[Close]

bind 說話 and sp檔亂碼問題

例如...
我想打!abc 係 !spectate
咁點先可以做到e個效果??

我一down sp落黎..個檔入面d野就係亂碼黎..
點解決....

plz

[ 本帖最後由 SinQ 於 2010-9-4 18:48 編輯 ]

TOP

理解不能
請整理後發言  

TOP

姐係...打!spectate咪係轉做觀眾指令既
點可以變左打!abc都可以轉到觀眾

TOP

引用:
原帖由 SinQ 於 2010-9-4 19:40 發表
姐係...打!spectate咪係轉做觀眾指令既
點可以變左打!abc都可以轉到觀眾
http://www.ipve.com/bbs/viewthread.php?tid=283393&page=1#pid2680689
下半部

TOP

我個sp係亂碼- -
根本改唔到..

TOP

引用:
原帖由 SinQ 於 2010-9-4 20:12 發表
我個sp係亂碼- -
根本改唔到..
亂碼會亂埋英文?
第1次見


upload sp啦

TOP

copy the code or sp let us see

TOP

aaaaaaaaaaaaaaaaaaa
附件: 您所在的用戶組無法下載或查看附件

TOP

提示: 該帖被管理員或版主屏蔽

TOP

-.-咩叫SP檔
你上傳果個明明係SMX檔
係副檔名有寫住.sp先係SP檔




你想要的SP檔
應該係E個啦
引用:
#include
#define PLUGIN_VERSION "1.0"

public Plugin:myinfo =
{
        name = "L4D(2) Change Team",
        author = "danmala",
        description = "Allows a player to type !spectate and go to !spectate",
        version = "1.0.0",
        url = "N/A"
};

public OnPluginStart()
{
        RegConsoleCmd("spectate", JoinTeam1);
        RegConsoleCmd("sm_infected", JoinTeam3, "Jointeam 3 - Without dev console");
        RegConsoleCmd("sm_survivor", JoinTeam2, "Jointeam 2 - Without dev console");
}

// ------------------------------------------------------------------------
// jointeam2 && jointeam3
// ------------------------------------------------------------------------
public Action:JoinTeam3(client, args) {FakeClientCommand(client,"jointeam 3");return Plugin_Handled;}
public Action:JoinTeam2(client, args) {FakeClientCommand(client,"jointeam 2");return Plugin_Handled;}
public Action:JoinTeam1(client, args) {ChangeClientTeam(client, 1);return Plugin_Handled;}

public IsValidPlayer (client)
{
        if (client == 0)
                return false;
        
        if (!IsClientConnected(client))
                return false;
        
        if (IsFakeClient(client))
                return false;
        
        if (!IsClientInGame(client))
                return false;
        
        return true;
}
[ 本帖最後由 toto345618433 於 2010-9-5 21:11 編輯 ]
附件: 您所在的用戶組無法下載或查看附件

TOP

回復 10# 的帖子

請善用編輯功能。
唔識既話可pm我

TOP

咁,問題解決了
可以關帖

TOP

發新話題