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

Showing results 1 to 25 of 30
Search took 0.01 seconds.
Search: Posts Made By: Croxeye.
Forum: Suggestions / Requests 12-05-2019, 10:41
Replies: 17
Views: 2,886
Posted By Croxeye.
Re: Hostname won't change

I did everything you said and nothing is changed.
Forum: Suggestions / Requests 12-05-2019, 10:41
Replies: 17
Views: 2,886
Posted By Croxeye.
Re: Hostname won't change

When I type 'exec server.cfg' I get that message.
Forum: Suggestions / Requests 12-03-2019, 21:27
Replies: 4
Views: 3,363
Posted By Croxeye.
Re: amx_ss for cs1.6?

https://forums.alliedmods.net/showthread.php?t=68724
Forum: Suggestions / Requests 12-03-2019, 18:59
Replies: 17
Views: 2,886
Posted By Croxeye.
Re: Hostname won't change

I have steam hlds server.

I think server.cfg is not executing

When I try to manually execute server.cfg I got:

Unable to open logfiles under logs/L1204
Logging disabled
exec band.cfgg: not...
Forum: Suggestions / Requests 12-02-2019, 20:17
Replies: 17
Views: 2,886
Posted By Croxeye.
Re: Hostname won't change

I tryed with all disabled plugins also..

Here is server.cfg

hostname "My Hostname"

// Rcon & Server passswords
rcon_password "My rcon"
sv_password ""
Forum: Suggestions / Requests 12-02-2019, 09:41
Replies: 17
Views: 2,886
Posted By Croxeye.
Re: Hostname won't change

I stopped server, checked server.cfg and amxx.cfg and in both files I set hostname. When I start server, hostname is 'Half-Life', again.
Forum: Suggestions / Requests 12-02-2019, 05:58
Replies: 17
Views: 2,886
Posted By Croxeye.
Re: Hostname won't change

Nothing is changed. Hostname is still "Half-Life"
Forum: Suggestions / Requests 12-01-2019, 20:21
Replies: 17
Views: 2,886
Posted By Croxeye.
Hostname won't change

I set hostname cvar in server.cfg but hostname is always 'Half-Life'. What to do ?
Forum: Zombie Plague Mod 11-26-2019, 17:54
Replies: 0
Help / Support Looking for co-owner
Views: 1,505
Posted By Croxeye.
Looking for co-owner

Hello,

I have just started zombie mod server and I need co-owner to help me with promoting server and making good admin team. Send me pm if you are interesting and I will provide you server ip.
Forum: Scripting Help 12-14-2018, 17:11
Replies: 0
Views: 685
Posted By Croxeye.
MySQL Syntax Error

Error:

Load Query failed. [1064] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '60), ' min') AS...
Forum: Scripting Help 12-04-2018, 14:01
Replies: 17
Views: 2,375
Posted By Croxeye.
Re: 2d array index out of bounds

Yeah.. I copied wrong error but it's same for stats and skills
Forum: Scripting Help 12-04-2018, 10:16
Replies: 17
Views: 2,375
Posted By Croxeye.
Re: 2d array index out of bounds

ok I edited post before
Forum: Scripting Help 12-03-2018, 18:12
Replies: 17
Views: 2,375
Posted By Croxeye.
Re: 2d array index out of bounds

error 032: array index out of bounds (variable "g_playerSkills")


enum _:playerStatsTable {
kills,
deaths,
headshots,
score,
damage,
xp,
Forum: Scripting Help 12-03-2018, 18:03
Replies: 10
Views: 2,324
Posted By Croxeye.
Re: DATETIME (yyyy-mm-dd hh:mm:ss) Difference in minutes

warning 213: tag mismatch


new iTimeDif, iTime, iRefDate, iYear, iMonth, iDay, iHour, iMinute, iSecond;
new refDate = "2018-12-02 12:03:45"

iTime = get_systime();
iRefDate =...
Forum: Scripting Help 12-03-2018, 17:31
Replies: 10
Views: 2,324
Posted By Croxeye.
Re: DATETIME (yyyy-mm-dd hh:mm:ss) Difference in minutes

So I have to use TimeToUnix to convert DATETIME from database to unix format ?
Forum: Scripting Help 12-02-2018, 18:21
Replies: 10
Views: 2,324
Posted By Croxeye.
Re: DATETIME (yyyy-mm-dd hh:mm:ss) Difference in minutes

Thank you, I didn't know about that before.

EDIT: can you just give me an example of the best way to get difference ?
Forum: Scripting Help 12-02-2018, 17:36
Replies: 10
Views: 2,324
Posted By Croxeye.
DATETIME (yyyy-mm-dd hh:mm:ss) Difference in minutes

I need function that returns difference between two datetimes in seconds.
Forum: Scripting Help 12-01-2018, 19:31
Replies: 17
Views: 2,375
Posted By Croxeye.
Re: 2d array index out of bounds

I set new variable 'totalAchievements' to SQL_NumResults value and I solve my problem
Forum: Scripting Help 12-01-2018, 19:12
Replies: 17
Views: 2,375
Posted By Croxeye.
Re: 2d array index out of bounds

No, no.. I'm getting achievements from database and I should change [50] to [] because I dont know number of achiements and I always can add more..
Forum: Scripting Help 12-01-2018, 19:00
Replies: 17
Views: 2,375
Posted By Croxeye.
Re: 2d array index out of bounds

Just one more question: How to get number of not empty rows in array ?


new achievements[50][achievementsTable]; //But I only have 5 achievements

for(new i = 0; i < sizeof(achievements); i++)...
Forum: Scripting Help 12-01-2018, 18:37
Replies: 17
Views: 2,375
Posted By Croxeye.
Re: 2d array index out of bounds

Thank you so much, now it works...
Forum: Scripting Help 12-01-2018, 17:56
Replies: 17
Views: 2,375
Posted By Croxeye.
Re: 2d array index out of bounds

enum _:playerTable {
nick[32],
steamId[45],
password[45],
language[3],
bool: isOnline = false,
bool: isVip = false,
bool: isAdmin = false
}
Forum: Scripting Help 12-01-2018, 12:34
Replies: 17
Views: 2,375
Posted By Croxeye.
2d array index out of bounds

enum _:playerTable {
nick[32],
...
}

new g_PlayerData[33][playerTable];

get_user_name(id, g_PlayerData[id][nick], charsmax(g_PlayerData[][nick]));
Forum: Scripting Help 11-20-2018, 17:02
Replies: 11
Views: 1,822
Posted By Croxeye.
Re: How to make this correctly

This is all what i'm trying todo:

For every kill player will receive xp. By by receiving, player join leagues. By joining leagues, player unlock achievements. By unlocking achievements, player...
Forum: Scripting Help 11-20-2018, 12:27
Replies: 11
Views: 1,822
Posted By Croxeye.
Re: How to make this correctly

achievements table:
id | name | description | reward_type | reward_amount | to_unlock
1 | League Master | Join Cristal League | 1 | 100 | 0

player_achievements table:
player_id | achievement_id...
Showing results 1 to 25 of 30

 
Forum Jump

All times are GMT -4. The time now is 05:08.


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