Auth me velký problém

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
Uživatelský avatar
zzzz898
Příspěvky: 273
Registrován: 19 led 2012, 16:06
Reputation: 0

Auth me velký problém

#1 Příspěvekod zzzz898 » 17 úno 2012, 19:45

Ahoj mám problém s auth me cheatováním.
Někdo se za mě joinne na server a vyhází si věci z creative a pak si je příde sebrat nevíte jak tomu zabránit ???
Když jsem vám pomohl dejte mi karmu +, kdo vám pomohl dejte mu karmu +
IP mého serveru: 93.91.250.103:27916 (honey.fakaheda.eu:27916)

Uživatelský avatar
Vojko
Příspěvky: 3247
Věk: 28
Registrován: 24 dub 2011, 11:47
Reputation: 1
Bydliště: Slovensko, Bratislava

Re: Auth me velký problém

#2 Příspěvekod Vojko » 17 úno 2012, 19:59

Aký autentifikačný plugin máš ?
AuthMe, xAuth ?
Aj keď tu na fóre nie som aktívny, môžete mi písať na Skype, E-Mail, ...

Uživatelský avatar
zzzz898
Příspěvky: 273
Registrován: 19 led 2012, 16:06
Reputation: 0

Re: Auth me velký problém

#3 Příspěvekod zzzz898 » 17 úno 2012, 20:18

auth me
Když jsem vám pomohl dejte mi karmu +, kdo vám pomohl dejte mu karmu +
IP mého serveru: 93.91.250.103:27916 (honey.fakaheda.eu:27916)

Uživatelský avatar
LavorekCZ
Příspěvky: 1805
Registrován: 20 lis 2011, 13:58
Reputation: 0
Kontaktovat uživatele:

Re: Auth me velký problém

#4 Příspěvekod LavorekCZ » 17 úno 2012, 20:21

Dej sem config
Pomohl ti někdo? Pak určitě bude rád, když mu zvedneš karmu!
not sure

Uživatelský avatar
zzzz898
Příspěvky: 273
Registrován: 19 led 2012, 16:06
Reputation: 0

Re: Auth me velký problém

#5 Příspěvekod zzzz898 » 17 úno 2012, 20:34

Kód: Vybrat vše

############################################################
# +------------------------------------------------------+ #
# |                  DataController                      | #
# +------------------------------------------------------+ #
############################################################
DataController:
    # This Cache saves registration details like username and password
    # Change it to false, if you want edit the datasource under runtime
    # Otherwise let it to true!
    CacheEnabled: true
 
    # Possible datasources are 'flatfile' or 'mysql'
    Datasource: flatfile
 
############################################################
# +------------------------------------------------------+ #
# |                       Misc                           | #
# +------------------------------------------------------+ #
############################################################
Misc:
    # Set it to false, if you want let the player decide, if he should register or not
    ForceRegistration: true
   
    # If it's enabled, it will kick non-registered players before they could join   
    # Make sure to edit the Kick.NotRegistered message in message file!   
    KickNonRegistered: false
   
    # What has to be done, if a player typed a wrong password?
    # Kick him (true) or only warn him with a simple chat message (false)
    KickOnWrongPassword: false
   
    # Kick a non-loggedin player after he has reached a certain timeout (in seconds)
    # To disable this, set it to 0
    LoginTimeout: 25
   
    # The intervall between Alert.Login and Alert.Registration messages (in seconds)
    AlertInterval: 5
   
    # What should we allow unregistered players?
    AllowNonRegistered:
        Chat: false
        # Following commands are allowed to use
        # Be warned: Additionally every subcommand gets allowed, e.g. '/uptime today'
        Commands:
        - uptime
        WalkAroundSpawn:
            Enabled: true
            Radius: 1
   
    # What should we allow players, that are not logged in?
    AllowNonLoggedIn:
        # Following commands are allowed to use (and every subcommand!)
        # Be warned: Additionally every subcommand gets allowed, e.g. '/uptime today'
        Commands:
        - uptime
   
    # Following players get unrestricted access without the force to log in
    # Use this function, if you use plugins, that create bots (NPCs)!
    AllowPlayerUnrestrictedAccess:
    - Bot01
 
############################################################
# +------------------------------------------------------+ #
# |              Playername Restrictions                 | #
# +------------------------------------------------------+ #
############################################################
PlayerNameRestriction:
    # The name of a player should have the following maximum and minimum length
    PlayerNameMaxLength: 20
    PlayerNameMinLength: 3
   
    # The characters in the name can be restricted by RegEx
    # For more informatiom about RegEx visit
    # http://en.wikipedia.org/wiki/Regular_expression#POSIX_character_classes
    PlayerNameRegex: '[a-zA-Z0-9_?]*'
 
############################################################
# +------------------------------------------------------+ #
# |                   Login Sessions                     | #
# +------------------------------------------------------+ #
############################################################
LoginSessions:
    # This function automatically logs players in, if they were already logged
    # in before their last disconnect
    Enabled: false
   
    # Maximum timeout between last logout and new connection (in seconds)
    MaximalTimePeriod: 5
   
    # Be warned: Only disable this, if you know what you are doing!
    # Disabling this makes AuthMe not comparing old and new IPs and maybe
    # grants access to name spoofers (in case you are in offline-mode)
    IPCheckEnabled: true
 
############################################################
# +------------------------------------------------------+ #
# |                     Commands                         | #
# +------------------------------------------------------+ #
############################################################
Commands:
    Users:
        ChangePasswordEnabled: true
        RegisterEnabled: true
        UnregisterEnabled: true
        LoginEnabled: true
        LogoutEnabled: true
    Ops:
        ReloadAuthsEnabled: true
        ResetAuthEnabled: true
 
############################################################
# +------------------------------------------------------+ #
# |                  MySQL Settings                      | #
# +------------------------------------------------------+ #
############################################################
MySQL:
    # Connection details
    Connection:
        Host: localhost
        Port: 3306
        Database: test
        Username: root
        Password: pass
   
    # Settings for a custom user table
    # Do not change this, if you don't have any scripts reqiring this
    Custom:
        TableName: authme
        ColumnUsername: username
        ColumnPassword: password
        # Custom information, that a player has to type on /register command
        # This function is only available for MySQL as datasource!
        # Make sure that you have a column with the right name in your database!
        # The information gets checked, if it complies to the given RegEx string
        # If the check was successfull, the information get stored in the respective column
        # A line must be built up like following:
        #   columnname: 'regexstring'
        # For good RegEx strings visit http://regexlib.com
        # If you are still unsure, check the given example below (email)
        RegistrationInfo:
#            email: '^\w+@[a-zA-Z_]+?\.[a-zA-Z]{2,3}$'
Když jsem vám pomohl dejte mi karmu +, kdo vám pomohl dejte mu karmu +
IP mého serveru: 93.91.250.103:27916 (honey.fakaheda.eu:27916)

Uživatelský avatar
Vojko
Příspěvky: 3247
Věk: 28
Registrován: 24 dub 2011, 11:47
Reputation: 1
Bydliště: Slovensko, Bratislava

Re: Auth me velký problém

#6 Příspěvekod Vojko » 17 úno 2012, 23:07

Doporučujem aktualizovať AuthMe, pretože ten má nový config.
Možno to bude tým :)
Aj keď tu na fóre nie som aktívny, môžete mi písať na Skype, E-Mail, ...

Uživatelský avatar
SpreyYManNNikKK
Příspěvky: 1294
Registrován: 25 led 2012, 18:49
Reputation: 0

Re: Auth me velký problém

#7 Příspěvekod SpreyYManNNikKK » 17 úno 2012, 23:10

mám stejný problém , mam authme ale hraci se proad loguji za ty co maji GameMode , lognou ise za ne , nedavaji login ale proste hazou veci z Gamemodu
...

Uživatelský avatar
Welton123
Příspěvky: 2388
Registrován: 08 úno 2012, 17:54
Reputation: 0
Kontaktovat uživatele:

Re: Auth me velký problém

#8 Příspěvekod Welton123 » 18 úno 2012, 09:52

Tak to nevim :-/ já mám taky Authme a když se někdo odhlásí s gamemodem tak se mu creatie zruši a zapne se mu až když napíše /login <heslo>
CZ/SK TOP Databáze MineCraft Serverů ►KLIK◄
Chceš i Ty mít měnící se podpis? ►KLIK◄

Uživatelský avatar
zzzz898
Příspěvky: 273
Registrován: 19 led 2012, 16:06
Reputation: 0

Re: Auth me velký problém

#9 Příspěvekod zzzz898 » 18 úno 2012, 10:27

No to bych právě potřeboval ale v configu to neni
Když jsem vám pomohl dejte mi karmu +, kdo vám pomohl dejte mu karmu +
IP mého serveru: 93.91.250.103:27916 (honey.fakaheda.eu:27916)

Uživatelský avatar
zzzz898
Příspěvky: 273
Registrován: 19 led 2012, 16:06
Reputation: 0

Re: Auth me velký problém

#10 Příspěvekod zzzz898 » 18 úno 2012, 10:49

Takže sem aktualizoval auth me a mám tu takový config:

Kód: Vybrat vše

DataSource:
    mySQLColumnName: username
    mySQLTablename: authme
    mySQLUsername: authme
    backend: file
    mySQLColumnLastLogin: lastlogin
    mySQLDatabase: authme
    mySQLPort: '3306'
    mySQLColumnIp: ip
    mySQLHost: 127.0.0.1
    mySQLColumnPassword: password
    mySQLPassword: '12345'
    caching: true
settings:
    sessions:
        enabled: false
        timeout: 10
    restrictions:
        allowChat: false
        kickNonRegistered: false
        teleportUnAuthedToSpawn: true
        maxNicknameLength: 20
        allowMovement: false
        minNicknameLength: 3
        timeout: 30
        ForceSingleSession: false
        allowedMovementRadius: 100
        allowedNicknameCharacters: '[a-zA-Z0-9_?]*'
    security:
        passwordHash: SHA256
    registration:
        enabled: true
        messageInterval: 5
        force: true
Když jsem vám pomohl dejte mi karmu +, kdo vám pomohl dejte mu karmu +
IP mého serveru: 93.91.250.103:27916 (honey.fakaheda.eu:27916)


Zpět na „Minecraft, Tekkit“

Kdo je online

Uživatelé prohlížející si toto fórum: Žádní registrovaní uživatelé a 42 hostů