Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 28
Search took 0.00 seconds.
Search: Posts Made By: aleeexxx
Forum: General 05-17-2020, 23:42
Replies: 5
Views: 1,641
Posted By aleeexxx
Re: [suggestion] Git as workflow template

Ok I worked for weeks with this idea and it's working fine. Here the link for those who want to check it: https://github.com/draenorg/sm-client-terminal
Forum: Scripting 04-23-2020, 08:59
Replies: 2
Views: 887
Posted By aleeexxx
Forum: Snippets and Tutorials 04-21-2020, 11:47
Replies: 83
Views: 136,369
Posted By aleeexxx
Re: [TUT] SourcePawn Scripting - Tips, Basics to Advanced

you could add the multithread functions recommendation for SQL

I until recently knew that the old functions could block the main thread, the new syntax already does it in multithread

correct me...
Forum: Scripting 04-21-2020, 11:35
Replies: 7
Views: 1,463
Posted By aleeexxx
Forum: General 04-21-2020, 01:11
Replies: 5
Views: 1,641
Posted By aleeexxx
Re: Why not encourage the use of GIT?

After DarkDevil told me his point of view, I concluded that maybe I should handle this as a workflow style!

instead of encourage , I suggest a optional new workflow
Forum: General 04-21-2020, 00:10
Replies: 5
Views: 1,641
Posted By aleeexxx
Re: Why not encourage the use of GIT?

what about the plugins that are not using git?,

the idea is to have a official version and sometimes coders want to contribute and they upload(attach the file) here, and then the people don't...
Forum: Scripting 04-20-2020, 23:26
Replies: 7
Views: 1,463
Posted By aleeexxx
Re: A simple query for get total user in Mysql database

well its because you need to fetch it with a if or a while



if(SQL_FetchRow(db_RowCount)) {// you can use while but the if for this case if ok:)
new RowCount = SQL_FetchInt(db_RowCount, 0); ...
Forum: General 04-20-2020, 21:06
Replies: 5
Views: 1,641
Posted By aleeexxx
Re: Why not encourage the use of GIT?

Another idea I have is why not have all the approved plugins in an official community account?

so if a developer leave the work of a plugin, another one can continue
Forum: General 04-20-2020, 21:04
Replies: 5
Views: 1,641
Posted By aleeexxx
[suggestion] Git as workflow template

Hello guys,

before to start: this is an idea and shouldn't be taken as absolute workflow! use at your own risk

for me programming in sourcepawn is really slow, at least the way I was coding was...
Forum: Scripting 04-20-2020, 14:59
Replies: 7
Views: 1,463
Posted By aleeexxx
Re: A simple query for get total user in Mysql database

its because you have a single result with count function from SQL, you need to fetch the first column

try with:

new RowCount = SQL_FetchInt(db_RowCount, 0);
Forum: Scripting 08-19-2018, 11:07
Replies: 921
Views: 316,777
Posted By aleeexxx
Re: New API and Syntax

Chek this version, I remember that I changed the syntax to its latest version. But since I have only a server for l4d2 I don't remember if I deleted unnecessary code for l4d2.
Forum: Scripting 08-13-2018, 01:01
Replies: 10
Views: 2,179
Posted By aleeexxx
Re: SQL insert into if not exists

I agree with him,

I use this for my vip system:

For create table:

CREATE TABLE IF NOT EXISTS vip
(
steamid TEXT UNIQUE
);
Forum: Scripting 08-13-2018, 00:52
Replies: 12
Views: 1,857
Posted By aleeexxx
Re: SQLite set multiple values

You have an error into your query you need to set the value into quotes, like this:

Format(sQuery, sizeof(sQuery), "UPDATE %s SET value = \"%s\", timestamp = %i WHERE AuthId = \"%s\"", Name,...
Forum: Off-Topic 06-27-2018, 02:02
Replies: 6
Views: 2,252
Posted By aleeexxx
Re: Dark theme for AlliedModders

I don't spend much time for this style. it's a quick fix for me, but with this maybe someone wants or try improve it
Forum: Off-Topic 06-27-2018, 01:58
Replies: 6
Views: 2,252
Posted By aleeexxx
Re: Dark theme for AlliedModders

I forget to notice where I published Im sorry,

can someone change it to Off-topic or to the corresponding category thanks
Forum: Off-Topic 06-27-2018, 01:52
Replies: 6
Views: 2,252
Posted By aleeexxx
Dark theme for AlliedModders

Hi guys,

https://userstyles.org/style_screenshots/161879_after.png

How Install?

https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne...
Forum: Scripting 12-17-2017, 21:36
Replies: 7
Views: 1,651
Posted By aleeexxx
Re: [L4D & L4D2] Need help with a tag mismatch

well bro it's better if you look in the documentation, for fix the problem more quickly

http://www.sourcemod.net/new-api/convars/GetConVarString

but well I think is fixed now
Forum: Plugins 12-03-2017, 15:53
Replies: 1,753
Views: 515,522
Posted By aleeexxx
Re: [L4D & L4D2] Super Tanks+ (v7.0, 11-24-2017)

I'm still waiting for the repository.

Me and a friend(Runda),we was thinking the same and we have some ideas to optimize the code.

Please public it as repository
Forum: Plugins 11-24-2017, 16:08
Replies: 1,753
Views: 515,522
Posted By aleeexxx
Re: [L4D & L4D2] Super Tanks+ (v6.5, 11-24-2017)

Great job bro is working really good in my server!!
Forum: Plugins 11-13-2017, 22:27
Replies: 94
Views: 47,531
Posted By aleeexxx
Re: [L4D2] Gifts Drop & Spawn

Hey bro thanks for shared this great plugin. I will public a quick update for the last syntax
Forum: Scripting 02-19-2017, 19:12
Replies: 3
Views: 1,880
Posted By aleeexxx
Re: L4D2 Using Zombie Types for Buy Menu

public Action Event_PlayerDeath(Event event, const char[] name, bool dontBroadcast)
{
int Attacker = GetClientOfUserId(event.GetInt("attacker")),
Victim =...
Forum: Scripting 02-19-2017, 15:15
Replies: 7
Views: 1,219
Posted By aleeexxx
Re: Where to find info for games

if you want to know what team have the client then is something like this...


/* Team of survivors */
if(GetClientTeam(client) == 2)
{
// your code
}

/* Team of Infected */
Forum: Scripting 05-15-2016, 23:56
Replies: 921
Views: 316,777
Posted By aleeexxx
Re: New API and Syntax

decl Float:MyFloat[10]

is equal to?

I think: float MyFloat[10]
Forum: Source Servers (SRCDS) 05-15-2016, 21:47
Replies: 3
Views: 996
Posted By aleeexxx
Re: Players crash L4D2

Everything seems to be fine!
Forum: Source Servers (SRCDS) 05-15-2016, 21:39
Replies: 3
Views: 996
Posted By aleeexxx
Re: Players crash L4D2

I don't use l4d2 downtown, but maybe I making a problem with precache(I will chek it), the trouble is that does not generate the error in log
Showing results 1 to 25 of 28

 
Forum Jump

All times are GMT -4. The time now is 01:10.


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