AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [CS:Go] LastCt for JailBreak Server (https://forums.alliedmods.net/showthread.php?t=278631)

iTaGhost 02-04-2016 16:36

[CS:Go] LastCt for JailBreak Server
 
1 Attachment(s)
Description :
This script notify all player (with 3 method: ChattMessage, MenuMessagge, CenterMessagge) into the server when are alive last Ct, this plugin is more used in JailBreak server.

Config :
Code:

// Enable or disable notify via Admin message
// -
// Default: "1"
sm_LastCt_CenterMessage "1"

// Enable or disable notify via chat message
// -
// Default: "1"
sm_LastCt_ChatMessage "1"

// Enable or disable notify via Menu message
// -
// Default: "1"
sm_LastCt_MenuMessage "1"

// Enable or disable notify via Menu message
// -
// Default: "1"
sm_LastCt_Sound "1"

// Enable or disable if are alive 1 CT
// -
// Default: "1"
sm_lastct "1"

If you want change the music, add you file mp3 into the sound/mis/ folder and rename "lastct.mp3"

How Install :
Dowload the file on : GitHub
Replace the folders into the csgo folder of your server :
* Place the lastct.smx in your sourcemod/plugins/ folder.
* Place the lastct.phrase.txt in your sourcemod/translation/ folder.
* Place the lastct.mp3 in your sound/mis/ folder.


Unbelievable 02-05-2016 02:24

Re: [CS:Go] LastCt for JailBreak Server
 
Seems like something good to have on jb.

mazdarx8 02-05-2016 04:33

Re: [CS:Go] LastCt for JailBreak Server
 
Possible to add this to a deathrun server too ?

Ownkruid 02-05-2016 07:00

Re: [CS:Go] LastCt for JailBreak Server
 
Code:

public OnMapStart()
{
    AddFileToDownloadsTable("misc/lastct.mp3");
    PrecacheSoundAny("misc/lastct.mp3");
}

Should be

Code:

public OnMapStart()
{
    AddFileToDownloadsTable("sound/misc/lastct.mp3");
    PrecacheSoundAny("sound/misc/lastct.mp3");
}


iTaGhost 02-05-2016 09:41

Re: [CS:Go] LastCt for JailBreak Server
 
Quote:

Originally Posted by mazdarx8 (Post 2390232)
Possible to add this to a deathrun server too ?

Yes, it should work; if you need a new featurs just write :D



Quote:

Originally Posted by Ownkruid (Post 2390264)
Code:

public OnMapStart()
{
    AddFileToDownloadsTable("misc/lastct.mp3");
    PrecacheSoundAny("misc/lastct.mp3");
}

Should be

Code:

public OnMapStart()
{
    AddFileToDownloadsTable("sound/misc/lastct.mp3");
    PrecacheSoundAny("sound/misc/lastct.mp3");
}


This is source of EmitSoundAny and the author usage this : https://forums.alliedmods.net/showthread.php?t=237045


All times are GMT -4. The time now is 04:30.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.