Raised This Month: $ Target: $400
 0% 

Advanced Bans (Real Time) by Exolent


Post New Thread Reply   
 
Thread Tools Display Modes
Owyn
Veteran Member
Join Date: Nov 2007
Old 02-01-2009 , 14:24   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #151

where was infinity loop? =0 can you please tell which part of the code you changed for fixing it
Owyn is offline
Send a message via ICQ to Owyn
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 02-01-2009 , 15:13   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #152

Quote:
Originally Posted by BlackEagle12 View Post
The update fixed my problem from before..but I have one more problem. When I enter a steamid via amx_addban I get the error:

[AdvancedBans] Invalid SteamID!
[AdvancedBans] Correct format: STEAM_0:X:XXXXXXX

However, I am entering the STEAM ID correctly because I am copying and pasting it into the console.
Make sure you are using quotes " " around the SteamID.
Code:
amx_addban "STEAM_0:1:23456" 10 "you arent welcome here"
Quote:
Originally Posted by .Owyn. View Post
where was infinity loop? =0 can you please tell which part of the code you changed for fixing it
I don't have the old version saved, but it had to do with creating the entity that checked for unbans.

EDIT: Found it:

Code:
    new info_target = engfunc(EngFunc_AllocString, "info_target");     do     {         g_unban_ent = engfunc(EngFunc_CreateNamedEntity, info_target);     }     while( !pev_valid(g_unban_ent) );
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] is offline
BlackEagle12
Junior Member
Join Date: Jan 2009
Old 02-01-2009 , 21:01   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #153

Worked. Thanks.
BlackEagle12 is offline
Owyn
Veteran Member
Join Date: Nov 2007
Old 02-02-2009 , 11:53   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #154

Code:
 new info_target = engfunc(EngFunc_AllocString, "info_target");
    do
    {
        g_unban_ent = engfunc(EngFunc_CreateNamedEntity, info_target);
    }
    while( !pev_valid(g_unban_ent) );
how should I fix this code? ^_^"


thx, btw, is it possible to make unban time shown european style? i mean day\month\year

btw2, you added more translations but Print() function after banning is allways english anyway

Last edited by Owyn; 02-02-2009 at 12:24.
Owyn is offline
Send a message via ICQ to Owyn
KadiR
Unnecessary Member
Join Date: Aug 2008
Location: Zürich / Switzerland
Old 02-02-2009 , 14:23   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #155

when is it approved?^^
KadiR is offline
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 02-02-2009 , 14:27   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #156

Quote:
Originally Posted by .Owyn. View Post
Code:
 new info_target = engfunc(EngFunc_AllocString, "info_target");
    do
    {
        g_unban_ent = engfunc(EngFunc_CreateNamedEntity, info_target);
    }
    while( !pev_valid(g_unban_ent) );
how should I fix this code? ^_^"
Just use my plugin.
If you have your own version, just tell me what updates you would like.

Quote:
Originally Posted by .Owyn. View Post
thx, btw, is it possible to make unban time shown european style? i mean day\month\year
Yes, it is possible, but I'm keeping it the American format.

Quote:
Originally Posted by .Owyn. View Post
btw2, you added more translations but Print() function after banning is allways english anyway
The Print() functions have always been english only.
By more translations, I meant new languages from my Translation Request thread.
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] is offline
Owyn
Veteran Member
Join Date: Nov 2007
Old 02-02-2009 , 14:29   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #157

Quote:
Yes, it is possible, but I'm keeping it the American format.
mb you could add an option to change it, cuz nobody at my server understand american time format =\

installed new version, i banned myself for 1 minute but ban dissapeared only after mapchange(i don't care xD), no ban information on connect (i still can fix that), gonna test further

ps - found public GenerateUnbanTime xD imma format my time now

another suggestion (request) about unban time, - to add zero if date is only 1 digit e.g. - make it from 1\5\2009 to 01\05\2009

Last edited by Owyn; 02-02-2009 at 16:33.
Owyn is offline
Send a message via ICQ to Owyn
Thrill
Member
Join Date: Apr 2007
Old 02-03-2009 , 14:40   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #158

Thank you so much for the ban history, now we just need the sql to transfer history to tables, and a nice design for the database TY!!!

Norwegian translation:

Code:
[no]
AB_BAN_INFORMATION = Ban Informasjon
AB_NAME = Navn
AB_IP = IP
AB_STEAMID = SteamID
AB_REASON = Grunn
AB_BAN_LENGTH = Ban Lengde
AB_UNBAN_TIME = Unban Tid
AB_ADMIN_NAME = Admin Navn
AB_ADMIN_STEAMID = Admin SteamID
AB_WEBSITE = Hvis du mener du ble banet urettferdig, rapporter denne informasjonen til vaar hjemmeside:
AB_NOT_AUTHORIZED = Maalet er ikke autorisert med serveren! Kan ikke banne!
AB_ALREADY_BANNED_STEAMID = Denne spillerens SteamID er allerede banet!
AB_ALREADY_BANNED_IP = Denne spillerens IP er allerede banet!
AB_PERMANENT_BAN = Permanent Ban
AB_INVALID_STEAMID = Ugyldig SteamID!
AB_VALID_STEAMID_FORMAT = Rett format: STEAM_0:X:XXXXXXX
AB_NOT_IN_BAN_LIST = Kan ikke finne %s i ban listen!
AB_NO_BANS = Det er ikke noen banet paa dette tidspunktet.
AB_BAN_LIST_NUM = Viser bannede spillere %i - %i.
AB_BAN_LIST_NEXT = Bruk amx_banlist %i for aa se neste spiller i listen.
AB_MAX_BAN_TIME = Den maksimale ban tid lovlig er %i.

Last edited by Thrill; 02-03-2009 at 15:06. Reason: Norwegian translation added
Thrill is offline
lowled
Senior Member
Join Date: Sep 2007
Old 02-03-2009 , 19:09   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #159

hello !!


Why when i ban a person ( for ex 5 mns) , he has to wait the mapchange

my server is a 120 mns Dust2
help me plz
__________________
lowled is offline
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 02-03-2009 , 19:23   Re: Advanced Bans (Real Time) by Exolent
Reply With Quote #160

Show me the output of the command amxx plugins
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] 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 19:26.


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