Thread: Hosties 2.3.0
View Single Post
shanapu
Veteran Member
Join Date: Apr 2015
Location: .de
Old 12-09-2016 , 17:30   Re: Hosties 2.3.0
Reply With Quote #5

Quote:
Originally Posted by j1gg View Post
Where I can download newest verion of hosties?
like weeeishy pointed you the source is on github and but you have to compile it for yourself using this small tut: https://forums.alliedmods.net/showthread.php?t=276863

and here: http://csgottt.com/hosties/ you can find the latest commits as binary (compiled) with baras sweet build script

Quote:
Originally Posted by YellowSwag View Post
hey databomb, i want to recommendation you (big) request, ONLY LR, without sm_hosties
I never tried it for myself, I'm not sure it work. You can deactivate unwanted modules in hosties sourcefile and compile it.

take a look at this part. https://github.com/dataviruset/sm-ho...ies.sp#L44-L69
PHP Code:

// Note: you cannot safely turn these modules on and off yet. Use cvars to disable functionality.

// Add ability to disable collisions for players
#define    MODULE_NOBLOCK                        1
// Add the last request system
#define    MODULE_LASTREQUEST                    1
// Add a game description override
#define    MODULE_GAMEDESCRIPTION                1
// Add start weapons for both teams
#define    MODULE_STARTWEAPONS                    1
// Add round-end team overlays
#define    MODULE_TEAMOVERLAYS                    1
// Add !rules command
#define    MODULE_RULES                        1
// Add !checkplayers command
#define    MODULE_CHECKPLAYERS                    1
// Add muting system
#define    MODULE_MUTE                            1
// Add freekill detection and prevention
#define    MODULE_FREEKILL                        1
// Add gun safety
#define    MODULE_GUNSAFETY                    1
// Add intelli-respawn
#define    MODULE_RESPAWN                        1
// Add control system
#define    MODULE_CONTROL                        0 

I tried to compile it with deactivated modules and this is a combination that compile fine. but not tested on a server.
PHP Code:
// Add ability to disable collisions for players
#define    MODULE_NOBLOCK                        1
// Add the last request system
#define    MODULE_LASTREQUEST                    1
// Add a game description override
#define    MODULE_GAMEDESCRIPTION                0
// Add start weapons for both teams
#define    MODULE_STARTWEAPONS                    0
// Add round-end team overlays
#define    MODULE_TEAMOVERLAYS                    0
// Add !rules command
#define    MODULE_RULES                        0
// Add !checkplayers command
#define    MODULE_CHECKPLAYERS                    0
// Add muting system
#define    MODULE_MUTE                            0
// Add freekill detection and prevention
#define    MODULE_FREEKILL                        1
// Add gun safety
#define    MODULE_GUNSAFETY                    0
// Add intelli-respawn
#define    MODULE_RESPAWN                        0
// Add control system
#define    MODULE_CONTROL                        0 
would be nice when you could test it and report back
__________________
coding & free software
shanapu is offline