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

WebLync 0.0.13 - A MOTD redirection service


Post New Thread Reply   
 
Thread Tools Display Modes
AkhtiaR
Junior Member
Join Date: Jun 2017
Location: Russian Federation
Old 06-19-2017 , 05:33   Re: WebLync 0.0.6 - A working MOTD redirection service for CS:GO
Reply With Quote #71

Quote:
Originally Posted by Neuro Toxin View Post
Version 0.0.6
- Added setting to disable client messages in `cfg/sourcemod/webblync.cfg`
Is that correct path ?
__________________
AkhtiaR is offline
Neuro Toxin
Veteran Member
Join Date: Oct 2013
Location: { closing the void; }
Old 06-19-2017 , 05:54   Re: WebLync 0.0.6 - A MOTD redirection service
Reply With Quote #72

My b is naughty lol.

`cfg/sourcemod/weblync.cfg` is the correct path.

Once you start the newest plugin version a new setting appears in the cfg file.
__________________
Neuro Toxin is offline
AkhtiaR
Junior Member
Join Date: Jun 2017
Location: Russian Federation
Old 06-19-2017 , 06:11   Re: WebLync 0.0.6 - A MOTD redirection service
Reply With Quote #73

@Neuro Toxin

I sended Russian translation to you in PM.
__________________

Last edited by AkhtiaR; 06-19-2017 at 06:11.
AkhtiaR is offline
WhiteThunder
Junior Member
Join Date: Mar 2015
Old 06-19-2017 , 07:57   Re: WebLync 0.0.6 - A MOTD redirection service
Reply With Quote #74

Quote:
Originally Posted by Neuro Toxin View Post
You need the servers to send the end point URL to the redirect service to get a proper work around.

1. Client uses server command for a URL
2. Server sends URL to redirection service with a qualifier like a SteamID
3. Server receives response that the request has processed / store to a database
4. Server sends MOTD request to client with the qualifier
5. Client connects to redirection service with the qualifier
6. Redirection service reads end point URL from step 2
7. Client redirects to requested end point

Eg: The client always sends the same qualifying URL such as: http://weblync.xxxxxxxx.com/redirect.php?SteamId=<SteamID>
I originally implemented something like that (similar to what you have here), which took most of yesterday, and it works fine. However, I find that the 2-domain approach works just as well and is a lot simpler. I think using that approach would be better for a plugin like this so consumers don't have to set anything up and there's less that can go wrong.

Last edited by WhiteThunder; 06-19-2017 at 07:58.
WhiteThunder is offline
Cripix
Senior Member
Join Date: Sep 2016
Location: French, Bordeaux
Old 06-19-2017 , 14:29   Re: WebLync 0.0.6 - A MOTD redirection service
Reply With Quote #75

French Translate
Attached Files
File Type: txt webblync.phrases.txt (1.9 KB, 73 views)
__________________
My jailbreak Server :
Cripix is offline
Neuro Toxin
Veteran Member
Join Date: Oct 2013
Location: { closing the void; }
Old 06-19-2017 , 19:50   Re: WebLync 0.0.7 - A MOTD redirection service
Reply With Quote #76

Version 0.0.7
- Added French translations by Cripix
- Added Russian translations by AkhtiaR

Thanks for the translations!
__________________
Neuro Toxin is offline
MithatGuner
Member
Join Date: Sep 2016
Location: Turkey
Old 06-21-2017 , 18:36   Re: WebLync 0.0.7 - A MOTD redirection service
Reply With Quote #77

Turkish Translate
Attached Files
File Type: txt webblync.phrases.txt (3.5 KB, 85 views)

Last edited by MithatGuner; 06-21-2017 at 20:35.
MithatGuner is offline
Neuro Toxin
Veteran Member
Join Date: Oct 2013
Location: { closing the void; }
Old 06-21-2017 , 20:37   Re: WebLync 0.0.7 - A MOTD redirection service
Reply With Quote #78

I'm not exactly sure what you mean by hidden motd panel.

Thanks for the translation. I'll get them added shortly.
__________________
Neuro Toxin is offline
MithatGuner
Member
Join Date: Sep 2016
Location: Turkey
Old 06-21-2017 , 20:41   Re: WebLync 0.0.7 - A MOTD redirection service
Reply With Quote #79

I Mean like this can u add option to web "Hidden Panel" , "Visible Panel" like this.
PHP Code:
//HIDDEN PANEL MOTD
public Action:DoUrl(clientString:url[128])
{
    new 
Handle:setup CreateKeyValues("data");
    
    
KvSetString(setup"title""NO PANEL");
    
KvSetNum(setup"type"MOTDPANEL_TYPE_URL);
    
KvSetString(setup"msg"url);
    
    
ShowVGUIPanel(client"info"setupfalse);
    
CloseHandle(setup);
    return 
Plugin_Handled;
}
//VISIBLE PANEL
public Action:DoUrlVisible(clientString:url[128])
{
    new 
Handle:setup CreateKeyValues("data");
    
    
KvSetString(setup"title""PANEL");
    
KvSetNum(setup"type"MOTDPANEL_TYPE_URL);
    
KvSetString(setup"msg"url);
    
    
ShowVGUIPanel(client"info"setuptrue);
    
CloseHandle(setup);
    return 
Plugin_Handled;


Last edited by MithatGuner; 06-21-2017 at 20:42.
MithatGuner is offline
Neuro Toxin
Veteran Member
Join Date: Oct 2013
Location: { closing the void; }
Old 06-22-2017 , 04:44   Re: WebLync 0.0.8 - A MOTD redirection service
Reply With Quote #80

Version 0.0.8
- Added Turkish translations by MithatGuner






In relation to the "Hidden Panel" request I'm thinking the following:

1. Add a new parameter to the WebLync_OpenUrl native so it's like such:
Code:
native void WebLync_OpenUrl(int client, const char[] url, bool hidden=false);
2. Adding an option to the website (both Server and Global links)



I'm open to feedback before getting stuck into this request
__________________

Last edited by Neuro Toxin; 06-22-2017 at 04:45.
Neuro Toxin 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 05:55.


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