Search found 32 matches

by Articha
Fri Oct 13, 2023 1:40 am
Forum: General Discussion
Topic: Source 2, anybody?
Replies: 9
Views: 19267

Re: Source 2, anybody?

Wake up, Source.Python based on SourceMod
by Articha
Tue Sep 12, 2023 6:21 am
Forum: Plugin Development Support
Topic: [CS:S] Map Download
Replies: 5
Views: 26731

Re: [CS:S] Map Download

Solution. I wish somebody except me help you, because I don't have time to access PC, especially Source.Python
by Articha
Sun Sep 10, 2023 6:39 am
Forum: Plugin Development Support
Topic: [CS:S] Map Download
Replies: 5
Views: 26731

Re: [CS:S] Map Download

You opening Rar archive with bytes mode and reading it while first to do is unarchive this.

You probably want to unarchive to temporary folder first, then search for maps file (via extension check) and then move them. For unarchive you can use libraries like rarfile or patool.
by Articha
Wed Jul 26, 2023 10:07 am
Forum: Plugin Development Support
Topic: Install Numpy?
Replies: 2
Views: 12726

Re: Install Numpy?

Old numpy, I think. Try to install numpy on python 3.6 by yourself and copy package into Source.Python
by Articha
Thu Jul 20, 2023 8:31 pm
Forum: Plugin Development Support
Topic: GameThread slow
Replies: 32
Views: 78759

Re: GameThread slow

Any help? All right. Do you sure that I/O operations have more priority in alternate threads? I/O operations in separate threads can have lower priority than main, which leads to block of the auxiliary thread
by Articha
Sun Jul 16, 2023 8:51 pm
Forum: Plugin Development Support
Topic: [TF2] Make Bot Walk
Replies: 4
Views: 16496

Re: [TF2] Make Bot Walk

I see. So you are using BotCmd to command bots, and also playerinfo to record player actions. Interesting.
by Articha
Sat Jul 15, 2023 9:18 pm
Forum: Plugin Development Support
Topic: [TF2] Make Bot Walk
Replies: 4
Views: 16496

Moving bots?

It's gonna make inaccuracy, no? How are you going to make bots aim? Is setting view possible for bots? I think yes, but the biggest question: how will you make bots fire?
by Articha
Fri May 12, 2023 8:30 am
Forum: Plugin Development Support
Topic: Call AddLayeredSequence
Replies: 5
Views: 15450

Re: Call AddLayeredSequence

I sometimes don't understand hooking C++ functions, but in source there's 2 int arguments, while you waiting 3. Why?
by Articha
Wed Apr 26, 2023 5:32 pm
Forum: Plugin Requests
Topic: HL2DM: Bots on and off
Replies: 11
Views: 23310

Re: HL2DM: Bots on and off

Well, if nothing works, try delaying queue_command_string command. May be plugin switches bots after our command command. Also, debug this switch and look, if it at least runs
by Articha
Tue Apr 18, 2023 7:31 am
Forum: General Discussion
Topic: Bind C++ plugin to Python plugin
Replies: 1
Views: 8747

Crypto in cs:go plugin?

What? Crypto-currency in CS:GO plugin? You sure? I'm concerned about complexity between 2 languages, but Python and C++ related to each other, because Python based on C . By the way, Source.Python anyway based on C(++?) CS:GO SDK, so conversions Python —> C unavoidable. My question is alternative to...
by Articha
Wed Apr 12, 2023 9:27 am
Forum: General Discussion
Topic: Bind C++ plugin to Python plugin
Replies: 1
Views: 8747

Bind C++ plugin to Python plugin

As in the name said, I want to have 2 plugins: one C++, and one Python. The reason for this is DB . I want to create DB with ease (On Python) with some other features, where O(n) equals (or near) to one in python, while other logic write in C++. So, how do I get DB information from Source.Python plu...
by Articha
Sun Mar 26, 2023 5:17 pm
Forum: General Discussion
Topic: Source 2, anybody?
Replies: 9
Views: 19267

Source 2

We all preparing to that. Get ready to improve open-source SP2 as well
by Articha
Wed Dec 07, 2022 8:31 pm
Forum: Plugin Development Support
Topic: CSS: Moderator, connect/disconnect show
Replies: 5
Views: 9862

Re: CSS: Moderator, connect/disconnect show

from events import Event from messages import SayText2 moderator = ['[U:1:81936084]'] def load(): SayText2('[admin] Plugin loaded successfully!').send() def unload(): SayText2('[admin] Plugin unloaded successfully!').send() @Ev...
by Articha
Thu Oct 13, 2022 8:47 pm
Forum: General Discussion
Topic: Multiple Inheritance in Java
Replies: 2
Views: 5824

No multiple inheritance in java. After "extends" u can choose only one class
by Articha
Wed Oct 05, 2022 12:50 pm
Forum: General Discussion
Topic: Data bases
Replies: 2
Views: 7585

Ehm. You mustn't. Other languages are in good relationship with SQL too. Python is simplier language. Easy to learn
by Articha
Sun Sep 18, 2022 4:56 pm
Forum: General Discussion
Topic: Who thinks it's worth specifying which parameters to pass values to?
Replies: 1
Views: 2959

Re: Who thinks it's worth specifying which parameters to pass values to?

Zero context information. What class is it? What library are used? SQLite3? SQLAlchemy?
by Articha
Sun Sep 18, 2022 4:52 pm
Forum: General Discussion
Topic: The Python programming language for a beginner
Replies: 2
Views: 4204

Re: The Python programming language for a beginner

12 hours course. Any questions left: rewatch
by Articha
Sat Aug 27, 2022 6:59 pm
Forum: Whatever
Topic: Install Problem with Source Python on my CS;GO Server
Replies: 1
Views: 5160

Not sure, if Source.Python starts at all. Are you sure about it? Go into server logs and check for "[SP] Loading Source.Python" or something like that
by Articha
Sat Aug 27, 2022 6:57 pm
Forum: General Discussion
Topic: Is client in game
Replies: 4
Views: 1940

Why do you need it? Use listeners OnClientConnect, OnClientFullyConnect, OnClientPutInServer. If this is not solution for your problem, write more information about what/when you want something to do

Go to advanced search