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

[CS:S/CS:GO/TF2] shavit's bhoptimer (v2.5.5a 08/August/2019)


Post New Thread Reply   
 
Thread Tools Display Modes
laskaa
Junior Member
Join Date: Sep 2015
Old 09-11-2016 , 07:04   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #861

i have this
Quote:
C:\Users\Piotrek\Desktop\rozne\sm do kompilacji\1.8\addons\sourcemod\scripting\inc lude\topmenus.inc(426) : error 147: new-style declarations are required
// C:\Users\Piotrek\Desktop\rozne\sm do kompilacji\1.8\addons\sourcemod\scripting\inc lude\adminmenu.inc(96) : error 147: new-style declarations are required
laskaa is offline
gnosticJade
New Member
Join Date: Sep 2016
Old 09-11-2016 , 07:47   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #862

Quote:
Originally Posted by shavit View Post
Fixed it for you, sorry
No worries, thanks for the fix. Now I'm running into another problem, though, and I'm sorry if this is a stupid question... I get these errors on server start (only plugins of yours loaded are zones & core), despite Dynamic 0.0.16 being loaded via the smx provided over on that thread. Any ideas?

Code:
L 09/11/2016 - 05:43:43: SourceMod error session started
L 09/11/2016 - 05:43:43: Info (map "bhop_badges_mini_csgo") (file "errors_20160911.log")
L 09/11/2016 - 05:43:43: [SM] Unable to load plugin "shavit-zones.smx": Native "Dynamic_GetDynamic" was not found
L 09/11/2016 - 05:43:43: [SM] Unable to load plugin "shavit-core.smx": Native "Shavit_ZoneExists" was not found
Once again, sorry if this is a stupid question.
gnosticJade is offline
shavit
AlliedModders Donor
Join Date: Dec 2011
Location: Israel
Old 09-11-2016 , 11:25   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #863

Quote:
Originally Posted by gnosticJade View Post
No worries, thanks for the fix. Now I'm running into another problem, though, and I'm sorry if this is a stupid question... I get these errors on server start (only plugins of yours loaded are zones & core), despite Dynamic 0.0.16 being loaded via the smx provided over on that thread. Any ideas?

Code:
L 09/11/2016 - 05:43:43: SourceMod error session started
L 09/11/2016 - 05:43:43: Info (map "bhop_badges_mini_csgo") (file "errors_20160911.log")
L 09/11/2016 - 05:43:43: [SM] Unable to load plugin "shavit-zones.smx": Native "Dynamic_GetDynamic" was not found
L 09/11/2016 - 05:43:43: [SM] Unable to load plugin "shavit-core.smx": Native "Shavit_ZoneExists" was not found
Once again, sorry if this is a stupid question.
Use the latest version of Dynamic from its GitHub repository
__________________
retired
shavit is offline
mrkos9i4ok
Member
Join Date: Jul 2016
Location: Russia,Moscow
Old 09-12-2016 , 10:10   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #864

How to include rank system in a tab + chat?
Code:
// This file was auto-generated by SourceMod (v1.8.0.5916)
// ConVars for plugin "shavit-rankings.smx"


// (MySQL only!) Amount of players to have their points re-calculated per new map.
// Set to -1 if you want it to use the value of "shavit_rankings_topamount".
// -
// Default: "-1"
// Minimum: "-1.000000"
// Maximum: "250.000000"
shavit_rankings_playerstocalculate "-1"

// Points for default style's WR per map tier.
// For example: if you set this value to 50 and you get a #1 Normal record, you will receive 50 points and players below you will receive less.
// If a map has no tier set, it will reward as if it's tier 1.
// -
// Default: "25"
// Minimum: "1.000000"
shavit_rankings_pointspertier "25"

// If set to 1, use the `shavit` database to store map tiers.
// Otherwise, use a local SQLite database for them.
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
shavit_rankings_tiersdb "0"

// Amount of people to show within the sm_top menu.
// -
// Default: "100"
// Minimum: "1.000000"
Code:
"Chat"
{
    "[U:1:204506329]" // my steamid for example, use steamid3
    {
        "prefix"        "{green}/dev/"
        "name"          "{default}{team}{clan}{name}"
		"clantag"		"shave"
    }

    "-1" // lookup is due, shouldn't happen unless there's some error!
    {
        "rank_from"     "-1"
        "rank_to"       "-1"

        "prefix"        ""
        "name"          "{team}{name}"
        "message"       "{message}"
    }

    "0" // unranked
    {
        "rank_from"     "0"
        "rank_to"       "0"

        "prefix"        "[Unranked]"
        "name"          "{team}{name}"
        "message"       "{message}"
    }

    "1"
    {
        "rank_from"     "1"
        "rank_to"       "1"

        "prefix"        "{green}ONE TRUE GOD"
        "name"          "{clan}{team}{name}"
    }

    "2"
    {
        "rank_from"     "2"
        "rank_to"       "2"

        "prefix"        "LEGENDARY"
        "name"          "{name}"
    }

    "3"
    {
        "rank_from"     "3"
        "rank_to"       "3"

        "prefix"        "HERO"
        "name"          "{team}{name}"
    }

    "4"
    {
        "rank_from"     "4"
        "rank_to"       "infinity"

        "prefix"        "scrub!"
    }
}
All have always unranked how to correct? Or what to make.
mrkos9i4ok is offline
shavit
AlliedModders Donor
Join Date: Dec 2011
Location: Israel
Old 09-12-2016 , 10:41   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #865

Quote:
Originally Posted by mrkos9i4ok View Post
How to include rank system in a tab + chat?
Code:
// This file was auto-generated by SourceMod (v1.8.0.5916)
// ConVars for plugin "shavit-rankings.smx"


// (MySQL only!) Amount of players to have their points re-calculated per new map.
// Set to -1 if you want it to use the value of "shavit_rankings_topamount".
// -
// Default: "-1"
// Minimum: "-1.000000"
// Maximum: "250.000000"
shavit_rankings_playerstocalculate "-1"

// Points for default style's WR per map tier.
// For example: if you set this value to 50 and you get a #1 Normal record, you will receive 50 points and players below you will receive less.
// If a map has no tier set, it will reward as if it's tier 1.
// -
// Default: "25"
// Minimum: "1.000000"
shavit_rankings_pointspertier "25"

// If set to 1, use the `shavit` database to store map tiers.
// Otherwise, use a local SQLite database for them.
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
shavit_rankings_tiersdb "0"

// Amount of people to show within the sm_top menu.
// -
// Default: "100"
// Minimum: "1.000000"
Code:
"Chat"
{
    "[U:1:204506329]" // my steamid for example, use steamid3
    {
        "prefix"        "{green}/dev/"
        "name"          "{default}{team}{clan}{name}"
		"clantag"		"shave"
    }

    "-1" // lookup is due, shouldn't happen unless there's some error!
    {
        "rank_from"     "-1"
        "rank_to"       "-1"

        "prefix"        ""
        "name"          "{team}{name}"
        "message"       "{message}"
    }

    "0" // unranked
    {
        "rank_from"     "0"
        "rank_to"       "0"

        "prefix"        "[Unranked]"
        "name"          "{team}{name}"
        "message"       "{message}"
    }

    "1"
    {
        "rank_from"     "1"
        "rank_to"       "1"

        "prefix"        "{green}ONE TRUE GOD"
        "name"          "{clan}{team}{name}"
    }

    "2"
    {
        "rank_from"     "2"
        "rank_to"       "2"

        "prefix"        "LEGENDARY"
        "name"          "{name}"
    }

    "3"
    {
        "rank_from"     "3"
        "rank_to"       "3"

        "prefix"        "HERO"
        "name"          "{team}{name}"
    }

    "4"
    {
        "rank_from"     "4"
        "rank_to"       "infinity"

        "prefix"        "scrub!"
    }
}
All have always unranked how to correct? Or what to make.
Rankings are currently broken, disable shavit-rankings and shavit-chat for now
__________________
retired
shavit is offline
nikita1811
Junior Member
Join Date: Aug 2016
Old 09-12-2016 , 12:25   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #866

I use the last https://github.com/ntoxin66/Dynamic
PHP Code:
L 09/12/2016 19:17:12Info (map "workshop/739504826/bhop_flow") (file "errors_20160912.log")
L 09/12/2016 19:17:12: [SMException reportedUnable to access dynamic handle -1
L 09
/12/2016 19:17:12: [SMBlamingdynamic.smx()
L 09/12/2016 19:17:12: [SMCall stack trace:
L 09/12/2016 19:17:12: [SM]   [0ThrowNativeError
L 09
/12/2016 19:17:12: [SM]   [1Line 344, ..\dynamic.sp::_Dynamic_IsValid()
L 09/12/2016 19:17:12: [SM]   [2Line 117, ..\dynamic/system/methodmaps/dynamicobject.sp::DynamicObject.IsValid()
L 09/12/2016 19:17:12: [SM]   [3Line 500, ..\dynamic.sp::_Dynamic_GetMemberCount()
L 09/12/2016 19:17:12: [SM]   [4Line 644, ..\dynamic/system/natives.sp::Native_Dynamic_GetMemberCount()
L 09/12/2016 19:17:12: [SM]   [6Dynamic_GetMemberCount
L 09
/12/2016 19:17:12: [SM]   [7Line 221E:\server\scripting\include\dynamic.inc::Dynamic.MemberCount.get()
L 09/12/2016 19:17:12: [SM]   [8Line 374E:\server\scripting\shavit-zones.sp::LoadZonesConfig()
L 09/12/2016 19:17:12: [SM]   [9Line 402E:\server\scripting\shavit-zones.sp::OnMapStart()
L 09/12/2016 19:17:34Error log file session closed.
L 09/12/2016 19:17:35SourceMod error session started
L 09
/12/2016 19:17:35Info (map "workshop/739504826/bhop_flow") (file "errors_20160912.log")
L 09/12/2016 19:17:35: [SMException reportedUnable to access dynamic handle -1
L 09
/12/2016 19:17:35: [SMBlamingdynamic.smx()
L 09/12/2016 19:17:35: [SMCall stack trace:
L 09/12/2016 19:17:35: [SM]   [0ThrowNativeError
L 09
/12/2016 19:17:35: [SM]   [1Line 344, ..\dynamic.sp::_Dynamic_IsValid()
L 09/12/2016 19:17:35: [SM]   [2Line 117, ..\dynamic/system/methodmaps/dynamicobject.sp::DynamicObject.IsValid()
L 09/12/2016 19:17:35: [SM]   [3Line 500, ..\dynamic.sp::_Dynamic_GetMemberCount()
L 09/12/2016 19:17:35: [SM]   [4Line 644, ..\dynamic/system/natives.sp::Native_Dynamic_GetMemberCount()
L 09/12/2016 19:17:35: [SM]   [6Dynamic_GetMemberCount
L 09
/12/2016 19:17:35: [SM]   [7Line 221E:\server\scripting\include\dynamic.inc::Dynamic.MemberCount.get()
L 09/12/2016 19:17:35: [SM]   [8Line 374E:\server\scripting\shavit-zones.sp::LoadZonesConfig()
L 09/12/2016 19:17:35: [SM]   [9Line 402E:\server\scripting\shavit-zones.sp::OnMapStart() 
Zone are not displayed.
nikita1811 is offline
shavit
AlliedModders Donor
Join Date: Dec 2011
Location: Israel
Old 09-12-2016 , 14:20   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #867

Quote:
Originally Posted by nikita1811 View Post
I use the last https://github.com/ntoxin66/Dynamic
PHP Code:
L 09/12/2016 19:17:12Info (map "workshop/739504826/bhop_flow") (file "errors_20160912.log")
L 09/12/2016 19:17:12: [SMException reportedUnable to access dynamic handle -1
L 09
/12/2016 19:17:12: [SMBlamingdynamic.smx()
L 09/12/2016 19:17:12: [SMCall stack trace:
L 09/12/2016 19:17:12: [SM]   [0ThrowNativeError
L 09
/12/2016 19:17:12: [SM]   [1Line 344, ..\dynamic.sp::_Dynamic_IsValid()
L 09/12/2016 19:17:12: [SM]   [2Line 117, ..\dynamic/system/methodmaps/dynamicobject.sp::DynamicObject.IsValid()
L 09/12/2016 19:17:12: [SM]   [3Line 500, ..\dynamic.sp::_Dynamic_GetMemberCount()
L 09/12/2016 19:17:12: [SM]   [4Line 644, ..\dynamic/system/natives.sp::Native_Dynamic_GetMemberCount()
L 09/12/2016 19:17:12: [SM]   [6Dynamic_GetMemberCount
L 09
/12/2016 19:17:12: [SM]   [7Line 221E:\server\scripting\include\dynamic.inc::Dynamic.MemberCount.get()
L 09/12/2016 19:17:12: [SM]   [8Line 374E:\server\scripting\shavit-zones.sp::LoadZonesConfig()
L 09/12/2016 19:17:12: [SM]   [9Line 402E:\server\scripting\shavit-zones.sp::OnMapStart()
L 09/12/2016 19:17:34Error log file session closed.
L 09/12/2016 19:17:35SourceMod error session started
L 09
/12/2016 19:17:35Info (map "workshop/739504826/bhop_flow") (file "errors_20160912.log")
L 09/12/2016 19:17:35: [SMException reportedUnable to access dynamic handle -1
L 09
/12/2016 19:17:35: [SMBlamingdynamic.smx()
L 09/12/2016 19:17:35: [SMCall stack trace:
L 09/12/2016 19:17:35: [SM]   [0ThrowNativeError
L 09
/12/2016 19:17:35: [SM]   [1Line 344, ..\dynamic.sp::_Dynamic_IsValid()
L 09/12/2016 19:17:35: [SM]   [2Line 117, ..\dynamic/system/methodmaps/dynamicobject.sp::DynamicObject.IsValid()
L 09/12/2016 19:17:35: [SM]   [3Line 500, ..\dynamic.sp::_Dynamic_GetMemberCount()
L 09/12/2016 19:17:35: [SM]   [4Line 644, ..\dynamic/system/natives.sp::Native_Dynamic_GetMemberCount()
L 09/12/2016 19:17:35: [SM]   [6Dynamic_GetMemberCount
L 09
/12/2016 19:17:35: [SM]   [7Line 221E:\server\scripting\include\dynamic.inc::Dynamic.MemberCount.get()
L 09/12/2016 19:17:35: [SM]   [8Line 374E:\server\scripting\shavit-zones.sp::LoadZonesConfig()
L 09/12/2016 19:17:35: [SM]   [9Line 402E:\server\scripting\shavit-zones.sp::OnMapStart() 
Zone are not displayed.
I also get this on my CS:GO Windows server (no issues on CS:S or Linux CS:GO) - what's your server's operating system?
__________________
retired
shavit is offline
nikita1811
Junior Member
Join Date: Aug 2016
Old 09-12-2016 , 15:07   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #868

Linux CS:GO
nikita1811 is offline
Kruzi
Senior Member
Join Date: Dec 2014
Location: Kyiv, Ukraine
Old 09-13-2016 , 13:02   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #869

Will u fix ranking?
Kruzi is offline
Technoblazed
Senior Member
Join Date: May 2016
Location: United Kingdom
Old 09-13-2016 , 13:03   Re: [CS:S/CS:GO] shavit's simple bhop timer (1.4b 21/September/2015)
Reply With Quote #870

Quote:
Originally Posted by Kruzi View Post
Will u fix ranking?
Fairly certain you've had an answer to this many times now, it'll be fixed before the end of the beta. Just remove the ranking system for now.
Technoblazed is offline
Reply



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 06:10.


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