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

2013-01-23 CS:GO Update


Post New Thread Closed Thread   
 
Thread Tools Display Modes
psychonic

BAFFLED
Join Date: May 2008
Old 01-24-2013 , 08:14   Re: 2013-01-23 CS:GO Update
#21

Quote:
Originally Posted by johnyx View Post
A MetaMod:Source snapshot build, 1.10.0-hg816
A SourceMod snapshot build, 1.5.0-hg3756

[SM] Unable to load plugin "advcommands.smx": Native "BfWriteByte" was not found
[SM] Unable to load plugin "adsql.smx": Native "BfWriteByte" was not found
only this
Those plugins will have to be updated. Check their respective threads, and if an update is not already available, and they haven't been reported as broken yet, feel free to post noting as such.
psychonic is offline
psychonic

BAFFLED
Join Date: May 2008
Old 01-24-2013 , 08:15   Re: 2013-01-23 CS:GO Update
#22

As a heads up, I believe that there exist some conflicts with sending and possibly client crashes both involved with hooking usermessages (possibly with only non-intercept hooks). I'll be looking into it a bit later today.

Last edited by psychonic; 01-24-2013 at 08:18.
psychonic is offline
Doc-Holiday
AlliedModders Donor
Join Date: Jul 2007
Old 01-24-2013 , 13:07   Re: Re: 2013-01-23 CS:GO Update
#23

Quote:
Originally Posted by psychonic View Post
As a heads up, I believe that there exist some conflicts with sending and possibly client crashes both involved with hooking usermessages (possibly with only non-intercept hooks). I'll be looking into it a bit later today.
Any idea why I'm still missing those sigs? Running 3756 sm and 816mm
Doc-Holiday is offline
musashiwook
Member
Join Date: Feb 2011
Old 01-24-2013 , 14:29   Re: 2013-01-23 CS:GO Update
#24

Have one issue with sourceban on one of my server with 3756 and the other server with 3751 run fine.
Ban menu disapeared.

https://www.sourcemod.net/showthread.php?t=206626

3751 still compatible with lastest CS:GO update ?

Requirements:
Quote:
A SourceMod snapshot build, 1.5.0-hg3755 or later.
musashiwook is offline
VJScope
Senior Member
Join Date: Jul 2012
Location: Finland
Old 01-25-2013 , 06:27   Re: 2013-01-23 CS:GO Update
#25

I got my server back in action. I just re-installed sourcemod, metamod and all my plugins. I think mani-admin crashed my server...
__________________
Strange women lying in ponds distributing swords is no basis for a system of government. Supreme executive power derives from a mandate from the masses, not from some farcical aquatic ceremony.
VJScope is offline
psychonic

BAFFLED
Join Date: May 2008
Old 01-25-2013 , 13:29   Re: 2013-01-23 CS:GO Update
#26

Quote:
Originally Posted by Doc-Holiday View Post
Quote:
Originally Posted by psychonic View Post
As a heads up, I believe that there exist some conflicts with sending and possibly client crashes both involved with hooking usermessages (possibly with only non-intercept hooks). I'll be looking into it a bit later today.
Any idea why I'm still missing those sigs? Running 3756 sm and 816mm
Have you tried restarting your server again or has it since started working? Everything seems fine on our end.
psychonic is offline
Doc-Holiday
AlliedModders Donor
Join Date: Jul 2007
Old 01-25-2013 , 19:03   Re: Re: 2013-01-23 CS:GO Update
#27

Quote:
Originally Posted by psychonic View Post
Have you tried restarting your server again or has it since started working? Everything seems fine on our end.
I guess it was cssdm that was causing the issue drifter pushed an updated game data and now it works after his file updated
Doc-Holiday is offline
psychonic

BAFFLED
Join Date: May 2008
Old 01-25-2013 , 19:10   Re: 2013-01-23 CS:GO Update
#28

Quote:
Originally Posted by Doc-Holiday View Post
I guess it was cssdm that was causing the issue drifter pushed an updated game data and now it works after his file updated
Sweet.
psychonic is offline
Sheepdude
SourceMod Donor
Join Date: Aug 2012
Location: Chicago
Old 01-25-2013 , 19:27   Re: 2013-01-23 CS:GO Update
#29

Quote:
Originally Posted by psychonic View Post
As a heads up, I believe that there exist some conflicts with sending and possibly client crashes both involved with hooking usermessages (possibly with only non-intercept hooks). I'll be looking into it a bit later today.
Looking forward to it. Right now it's preventing advanced commands from being updated.

https://bugs.alliedmods.net/show_bug.cgi?id=5588
__________________
Sheepdude is offline
altex
Veteran Member
Join Date: May 2009
Location: Russia
Old 01-26-2013 , 13:32   Re: 2013-01-23 CS:GO Update
#30

I dont know if it is a bug or something
but the following code does not work like it should

1) i run this plugin and type !test
2) i expect that motd window will popup
3) and i expect log message will be in logs like this "TEST FOUND name=[info]"

but

4) no motd was popup
5) in logs i have only this lines "TEST FOUND name=[]"

Code:
#pragma semicolon 1

#include <sourcemod>
#include <sdktools>
#include <cstrike>

public Plugin:myinfo = {
    name = "Test motd",
    author = "Altex",
    description = "Test motd",
    version = "1.0",
    url = ""
};

public OnPluginStart() {
    RegConsoleCmd("test", TestCmd, "Test");
    HookUserMessage(GetUserMessageId("VGUIMenu"), FuncVGuiMenu);
}

public Action:TestCmd(client, args) {
    //ShowMOTDPanel(client, "", "http://otstrel.ru/csgo_ggdm_winner/csgo.php?close=15", MOTDPANEL_TYPE_URL);
    SendSourceModMOTD(client);
    return Plugin_Handled;
}

public Action:FuncVGuiMenu(UserMsg:msg_id, Handle:bf, const players[], playersNum, bool:reliable, bool:init) {
    new String:name[10];
    PbReadString(bf, "name", name, sizeof(name));
    LogMessage("TEST FOUND name=[%s]", name);
}

stock SendSourceModMOTD(client)
{   
    new Handle:pb = StartMessageOne("VGUIMenu", client);
 
    PbSetString(pb, "name", "info");
    PbSetBool(pb, "show", true);
 
    new Handle:subkey;
 
    subkey = PbAddMessage(pb, "subkeys");
    PbSetString(subkey, "name", "type");
    PbSetString(subkey, "str", "2"); // MOTDPANEL_TYPE_URL
 
    subkey = PbAddMessage(pb, "subkeys");
    PbSetString(subkey, "name", "title");
    PbSetString(subkey, "str", "TESTING");
 
    subkey = PbAddMessage(pb, "subkeys");
    PbSetString(subkey, "name", "msg");
    PbSetString(subkey, "str", "http://otstrel.ru/csgo_ggdm_winner/csgo.php?close=15");
 
    EndMessage();
}
__________________

Last edited by altex; 01-26-2013 at 13:34.
altex is offline
Closed Thread


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 11:41.


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