Syncope.T-*
Published 2011. 12. 8. 20:09
[6] 게임 네임 체인져 Steam/Sourcemod
728x90

그.. 서버찾기에서 서버이름 옆에 뜨는 Counter Strike - Source 라던가 Team Fortress 2 라던가

그 설명을 바꿔주는거요 네. 그걸 적어보죠

// inc or header files loaded.
#include <sourcemod>
#include <sdktools>
#include "sdkhooks"

// 문법 정 의
#pragma semicolon 1

new bool:maproadfinish = false;

// 이 부분을 수정하시면 됩니다.
new String:gamedescription[64] = "오리의 오렌지서버";

public Action:OnGetGameDescription(String:gamedesc[64]){

strcopy(gamedesc, 64, gamedescription);

if(maproadfinish){

return Plugin_Changed;

}

return Plugin_Handled;

}

public OnMapStart(){

maproadfinish = true;


}

public OnMapEnd(){

maproadfinish = false;

}


profile

Syncope.T-*

@Syncope

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!

profile on loading

Loading...