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

[CS:GO] ckSurf (1.18f, 24.11.2015)


Post New Thread Reply   
 
Thread Tools Display Modes
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 12-17-2015 , 15:42   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #991

Quote:
Originally Posted by MrKeegan View Post
I figured it out, it is because there is no zones saved. I set a zone for surf_mesa and it worked. But there has to be pre-made zones for all the maps out there right? Because I do not want to go to every single map and set zones. Someone please help.
You need to read the installation instructions on the first page.

Quote:
Originally Posted by kneiv Jesus View Post
is it still slow
I already told you what your problem was, and you replied with an image of a list of files. That does nothing for me to be able to help you. You need to ensure your database is properly configured and setup, because the errors that are popping up are indicating that it is not. The line about sv_pure is not an error, merely an informative line stating that your server is not in Pure mode...
__________________

Last edited by sneaK; 12-17-2015 at 16:01.
sneaK is offline
MrKeegan
Junior Member
Join Date: Dec 2015
Old 12-17-2015 , 16:05   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #992

I figured out the problem for me at least, there is zones on almost all the maps. Its just the new maps that don't have pre-made zones. Im sure it will be updated eventually. Sorry to cause an issue and waste peoples time.
MrKeegan is offline
Synominonyms
Junior Member
Join Date: Dec 2015
Old 12-17-2015 , 16:15   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #993

Quote:
Originally Posted by jonitaikaponi View Post
I managed to fix Synominonyms' database with the commands manually, but I had to run !insertmapzones to fix broken zones.
Thanks for everything man, it didn't immediately work but we restored our server to a 1.17 backup and re-did the 1.18b update and additionally used the updated database and everything is back in working order. Thanks for keeping us updated.
Synominonyms is offline
MrPriime
Junior Member
Join Date: Oct 2015
Old 12-17-2015 , 17:21   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #994

Does this work with course ?
MrPriime is offline
Send a message via Skype™ to MrPriime
Synominonyms
Junior Member
Join Date: Dec 2015
Old 12-17-2015 , 18:51   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #995

One last question, not at all important, but is 20 the hardcoded limit for the titles? It'd be nice to know whether or not we can have more on the server.
Synominonyms is offline
Ownkruid
Senior Member
Join Date: Nov 2013
Old 12-17-2015 , 21:06   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #996

Hi,

I just did a fresh install of CKsurf and have 2 issues.

1, i get these errors in my log:

Code:
L 12/18/2015 - 03:01:05: SourceMod error session started
L 12/18/2015 - 03:01:05: Info (map "surf_aircontrol_ksf") (file "errors_20151218.log")
L 12/18/2015 - 03:01:05: [ckSurf.smx] [ckSurf] SQL Error (sql_selectMapRecordProCallback): Table 'ownkruid_cksurf.ck_playertimes' doesn't exist
L 12/18/2015 - 03:01:05: [ckSurf.smx] [ckSurf] SQL Error (sql_selectPlayerProCountCallback): Table 'ownkruid_cksurf.ck_playertimes' doesn't exist
L 12/18/2015 - 03:01:05: [ckSurf.smx] [ckSurf] SQL Error (SQL_CheckCallback): Table 'ownkruid_cksurf.ck_playertimes' doesn't exist
L 12/18/2015 - 03:01:06: [ckSurf.smx] [ckSurf] SQL Error (sql_selectMapRecordProCallback): Table 'ownkruid_cksurf.ck_playertimes' doesn't exist
L 12/18/2015 - 03:01:06: [ckSurf.smx] [ckSurf] SQL Error (sql_selectPlayerProCountCallback): Table 'ownkruid_cksurf.ck_playertimes' doesn't exist
L 12/18/2015 - 03:01:08: Error log file session closed.
2, all my maps are linear. I followed all of the install instructions.
__________________




Ownkruid is offline
Baws
Veteran Member
Join Date: Oct 2012
Old 12-18-2015 , 00:25   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #997

Just create the table "ck_playertimes" in your database using this:
PHP Code:
CREATE TABLE IF NOT EXISTS ck_playertimes (steamid VARCHAR(32), mapname VARCHAR(32), name VARCHAR(32), runtimepro FLOAT NOT NULL DEFAULT '-1.0'PRIMARY KEY(steamid,mapname)); CREATE INDEX maprank ON ck_playertimes (mapnameruntimepro); 
__________________
Like my clean plugins and work?

Last edited by Baws; 12-18-2015 at 00:25.
Baws is offline
helloworld_
Junior Member
Join Date: Dec 2015
Old 12-18-2015 , 10:22   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #998

Is it possible to enable prestrafe?
I did increase "MaxPlayerSpeed" in csgo>scripts>weapon_knife (others too), and it doesn't work.
helloworld_ is offline
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 12-18-2015 , 10:47   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #999

Quote:
Originally Posted by helloworld_ View Post
Is it possible to enable prestrafe?
I did increase "MaxPlayerSpeed" in csgo>scripts>weapon_knife (others too), and it doesn't work.
You don't need to change any of those values.

"ck_pre_start_speed" = "320.0" min. 0.000000 max. 3500.000000 notify - The maximum prespeed for start zones. 0.0 = No cap

There's also a cvar for max speed, check your config files
__________________
sneaK is offline
helloworld_
Junior Member
Join Date: Dec 2015
Old 12-18-2015 , 11:27   Re: [CS:GO] ckSurf (1.18b, 24.11.2015)
Reply With Quote #1000

Quote:
Originally Posted by blackhawk74 View Post
You don't need to change any of those values.

"ck_pre_start_speed" = "320.0" min. 0.000000 max. 3500.000000 notify - The maximum prespeed for start zones. 0.0 = No cap

There's also a cvar for max speed, check your config files
This isn't what I'm looking for.
I want my speed to raise when holding e.g. W and A and moving mouse to the left. (Without jumping!)
You can see that on this video - https://youtu.be/Ja7Fr01gHoI?t=1m6s

KZTimer has cvar for this:
Code:
kz_prestrafe - on/off - Prestrafe
helloworld_ 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:46.


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