Raised This Month: $12 Target: $400
 3% 

Steam Works Group Manager


Post New Thread Reply   
 
Thread Tools Display Modes
my11
Member
Join Date: Feb 2015
Location: Argentina
Old 10-04-2017 , 15:00   Re: Steam Works Group Manager
Reply With Quote #31

any way to detect people thas is not in the group and invite them with an option? and open with webshortcuts_csgo?
__________________
my11 is offline
paulo_crash
AlliedModders Donor
Join Date: May 2016
Location: Brazil
Old 10-04-2017 , 15:20   Re: Steam Works Group Manager
Reply With Quote #32

Suggestions:
- Check if the player is in the group and is not automatically inviting it to the group;

I updated the translations as well, added the language pt:
Code:
"Phrases"
{
	"JoinSteam"
	{
		"en"		"[SWGM] First join our Steam group!"
		"pt"		"[SWGM] Primeiro, junte-se ao nosso Grupo Steam!"
		"ru"		"[SWGM] Сначала вступите в нашу Steam группу!"
		"fr"		"[SWGM] En premier, rejoignez notre groupe Steam!"
	}
}

Last edited by paulo_crash; 10-04-2017 at 15:20.
paulo_crash is offline
Cruze
Veteran Member
Join Date: May 2017
Old 10-04-2017 , 16:54   Re: Steam Works Group Manager
Reply With Quote #33

Please help me compile this plugin with multicolors
It gives me this error :
http://prntscr.com/gtcfg0
__________________
Taking paid private requests! Contact me
Cruze is offline
wjrrr
AlliedModders Donor
Join Date: May 2017
Old 10-05-2017 , 16:30   Re: Steam Works Group Manager
Reply With Quote #34

It is giving permissions in addition to what I've set in command_listener for the other players.
Example:
Gloves is for VIPs only, and is releasing when the player enters the group.
wjrrr is offline
michaelrw
Senior Member
Join Date: Jul 2017
Old 10-14-2017 , 01:59   Re: Steam Works Group Manager
Reply With Quote #35

[QUOTE=Cripix;2543110]Hi !

I tried to use the Command Listener plugin but it does not work for me2, even though I followed the installation instructions

Code:
"Command_Listener"
{
	"sm_ws"{}
	"sm_knife"{}
	"sm_shop"{}
	"sm_gloves"{}
	"sm_nc"{}
}
Code:
// This file was auto-generated by SourceMod (v1.8.0.6027)
// ConVars for plugin "SWGM.smx"


// Steam Group ID.
// -
// Default: "XXXXXXXX"
swgm_groupid "29688239"

// Interval beetwen steam group checks.
// -
// Default: "60.0"
swgm_timer "60.0"
swgm_check and swgm_list both work as they should, and give me the correct list of who is in the group and who isnt. I have both the SWGM_Command_Listener.smx and SWGM.smx plugins loaded

I get this error in my sourcemod error log

PHP Code:
[SMException reportedLanguage phrase "JoinSteam" not found
[SMBlamingSWGM_Command_Listener.smx
[SMCall stack trace:
[
SM]   [0PrintToChat
[SM]   [1Line 30C:\csgo\1.7\addons\sourcemod\scripting\1.8\SWGM_Command_Listener.sp::Check
Error log file session closed
.
SourceMod error session started
Info 
(map "bhop_cobblestone_rg1") (file "errors_20171014.log")
[
SMFatal error encountered parsing translation file "swgm_cl.phrases.txt"
[SMError (line 0column 0): Stream failed to open
[SMException reportedLanguage phrase "JoinSteam" not found
[SMBlamingSWGM_Command_Listener.smx
[SMCall stack trace:
[
SM]   [0PrintToChat
[SM]   [1Line 30C:\csgo\1.7\addons\sourcemod\scripting\1.8\SWGM_Command_Listener.sp::Check 
michaelrw is offline
Cripix
Senior Member
Join Date: Sep 2016
Location: French, Bordeaux
Old 10-14-2017 , 03:19   Re: Steam Works Group Manager
Reply With Quote #36

Quote:
Originally Posted by michaelrw View Post
Hi !

I tried to use the Command Listener plugin but it does not work for me2, even though I followed the installation instructions

Code:
"Command_Listener"
{
	"sm_ws"{}
	"sm_knife"{}
	"sm_shop"{}
	"sm_gloves"{}
	"sm_nc"{}
}
Code:
// This file was auto-generated by SourceMod (v1.8.0.6027)
// ConVars for plugin "SWGM.smx"


// Steam Group ID.
// -
// Default: "XXXXXXXX"
swgm_groupid "29688239"

// Interval beetwen steam group checks.
// -
// Default: "60.0"
swgm_timer "60.0"
swgm_check and swgm_list both work as they should, and give me the correct list of who is in the group and who isnt. I have both the SWGM_Command_Listener.smx and SWGM.smx plugins loaded

I get this error in my sourcemod error log

PHP Code:
[SMException reportedLanguage phrase "JoinSteam" not found
[SMBlamingSWGM_Command_Listener.smx
[SMCall stack trace:
[
SM]   [0PrintToChat
[SM]   [1Line 30C:\csgo\1.7\addons\sourcemod\scripting\1.8\SWGM_Command_Listener.sp::Check
Error log file session closed
.
SourceMod error session started
Info 
(map "bhop_cobblestone_rg1") (file "errors_20171014.log")
[
SMFatal error encountered parsing translation file "swgm_cl.phrases.txt"
[SMError (line 0column 0): Stream failed to open
[SMException reportedLanguage phrase "JoinSteam" not found
[SMBlamingSWGM_Command_Listener.smx
[SMCall stack trace:
[
SM]   [0PrintToChat
[SM]   [1Line 30C:\csgo\1.7\addons\sourcemod\scripting\1.8\SWGM_Command_Listener.sp::Check 
Missing a translation phrase

[SM] Fatal error encountered parsing translation file "swgm_cl.phrases.txt"
[SM] Error (line 0, column 0): Stream failed to open
[SM] Exception reported: Language phrase "JoinSteam" not found
__________________
My jailbreak Server :

Last edited by Cripix; 10-14-2017 at 03:20.
Cripix is offline
Cruze
Veteran Member
Join Date: May 2017
Old 10-14-2017 , 03:53   Re: Steam Works Group Manager
Reply With Quote #37

add
PHP Code:
"JoinSteam"
{
     
"en"   "Join our steam group first!"

in
Code:
 swgm_cl.phrases.txt
__________________
Taking paid private requests! Contact me

Last edited by Cruze; 10-14-2017 at 03:54.
Cruze is offline
michaelrw
Senior Member
Join Date: Jul 2017
Old 10-14-2017 , 15:36   Re: Steam Works Group Manager
Reply With Quote #38

seems the translations was wrong in the release package. also why is there two of the listener plugins, one in /plugins and the other in /plugins/swgm

anyways, i got it working
michaelrw is offline
paulo_crash
AlliedModders Donor
Join Date: May 2016
Location: Brazil
Old 10-26-2017 , 22:30   Re: Steam Works Group Manager
Reply With Quote #39

I put the following plugin so players have access when they join the Steam Group.
Quote:
"Command_Listener"
{
"sm_ws"{}
"sm_knifes"{}
}
Problem is that of the privilege for all the other plugins, such as the one of gloves, sprays and others that I did not put in the config.

How can I fix this? Was it a bug?
paulo_crash is offline
wjrrr
AlliedModders Donor
Join Date: May 2017
Old 10-27-2017 , 10:31   Re: Steam Works Group Manager
Reply With Quote #40

I have the same problem. It is generating flag "a" or "r" for all players who join the group.
wjrrr is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:43.


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