Skocz do zawartości

walitorax

Members
  • Postów

    186
  • Rejestracja

  • Ostatnia wizyta

O użytkowniku

  • Płeć
    Mężczyzna

Osiągnięcia walitorax

  1. Dobry. Mam taki problemik, money pay, /sethome, /home i /warp nie działa graczom. Na /money pay nie pojawia się nic, a na pozostałych jest "Acces Denied" Moje permissions.yml: users: Walitorax: group: - Admins permissions: - '*' Spyker34: group: - wlasciciel permissions: - '*' Vegas: group: - ViP permissions: - essentials.give Daniel: group: - ViP permissions: - essentials.give - essentials.god groups: Default: default: false info: null prefix: null suffix: '' bulid: false inheritance: null permissions: null Member: default: true info: null prefix: '[&cGracz&f]&7' suffix: '' build: true inheritance: - Default permissions: - modifyworld.* - myhome.home.* - warpplugin.warp - econplugin.basic.* - lwc.protect - permissions.example - falsebook.blocks.* - multiverse.world.spawn - multiverse.tp - ChestShop.shop.* - iConomy.access - iConomy.bank.* - iConomy.rank - iConomy.payment - econplugin.payment - iConomy.list - iConomy.access - warpz0r.home - warpz0r.sethome - warpz0r.warp - warpz0r.use - guest.* - essentials.kit.starter - essenitals.help - essenitals.spawn - essenitals.home - essenitals.sethome Vip: default: false info: null prefix: '&f[&aViP&f]&7' suffix: '' inheritance: - Member permissions: - nchat.color - magiccarpet.mc Moderator: default: false info: null prefix: '&f[&5Moderator&f]&7' bulid: true inheritance: - Vip permissions: - worldedit.selection.expand - worldguard.fire-toggle.* - permissions.example - modplugin.ban - modplugin.kick - modplugin.unban - whitelist.permission.add - whitelist.permission.remove - worldguard.region.* - lwc.mod - commandbook.rules - commandbook.weather - commandbook.teleport.* - commandbook.teleport - commandbook.bans.* - ichat.reload - commandbook.warp.set - commandbook.warp.teleport - commandbook.whereami.compass - commandbook.kick - commandbook.broadcast - commandbook.bans - commandbook.mute - commandbook.thor - worldedit.selection.pos - worldguard.region.define.* - worldguard.region.list - worldguard.region.info.* - worldguard.region.select.* - worldedit.wand - worldedit.navigation.up - worldedit.superpickaxe.* - commandbook.time - falsebook.cart.* - warpz0r.set - warpz0r.remove - warpz0r.list - regionmarket.sell - regionmarket.offer - regionmarket.remove - kiwiadmin.ban - kiwiadmin.kick - kiwiadmin.unban - kiwiadmin.reload - kiwiadmin.tempban - kiwiadmin.ipban - kiwiadmin.export Admins: default: false info: null prefix: '&f[&2Administrator&f]&7' bulid: true inheritance: - Moderator permissions: - modplugin.* - lwc.admins - permissions.* - worldguard.* - commandbook.* - worldedit.* - bb.admin.* - permissions.group.* - permissions.player.* - commandbook.broadcast - commandbook.say - commandbook.say.me - commandbook.give - commandbook.more.* - commandbook.teleport.* - commandbook.teleport - ChestShop.admin - warpz0r.admin.* - jobs.admin.* - kiwiadmin.kick.all - nchat.reload wlasciciel: default: false info: null prefix: '&f[&6Wlasciciel!&f]&7' suffix: '' bulid: true inheritance: null permissions: - '*' Na różne sposoby to robiłem i nic, żopa, cały czas to samo.
  2. @Rifresz
  3. Worldguard.yml: # # WorldGuard's configuration file # # About editing this file: # - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If # you use an editor like Notepad++ (recommended for Windows users), you # must configure it to "replace tabs with spaces." In Notepad++, this can # be changed in Settings > Preferences > Language Menu. # - Don't get rid of the indents. They are indented so some entries are # in categories (like "enforce-single-session" is in the "protection" # category. # - If you want to check the format of this file before putting it # into WorldGuard, paste it into http://yaml-online-parser.appspot.com/ # and see if it gives "ERROR:". # - Lines starting with # are commentsand so they are ignored. # # WARNING: # Remember to check the compatibility spreadsheet for WorldGuard to see # if any features are currently broken in your version of Bukkit. # suppress-tick-sync-warnings: false # For permissions, see http://wiki.sk89q.com/wiki/WorldGuard/Permissions/Bukkit permissions: users: sk89q: permissions: - worldguard.region.* - worldgurad.god blacklist.yml # # This is the blacklist for WorldGuard. The blacklist allows you to perform # actions depending on an item or block ID. Comments start with # and they # are ignored so you can put your own notes. # # -------------------------------------------------------------------------- # # WARNING: # Remember to check the compatibility spreadsheet for WorldGuard to see # if any events or actions are currently broken in your version of Bukkit. # # -------------------------------------------------------------------------- # # Format: # [item1,item2] # option1=options # event1=whatToDo1,whatToDo2,whatToDo3 # event2=whatToDo1,whatToDo2 # # Example to block some ore mining and placement: # [coalore,goldore,ironore] # on-break=deny,log,kick # on-place=deny,tell # # Options: # - ignore-groups (comma-separated list of groups to not affect) # - comment (message for yourself that is printed with 'log' and 'notify') # - message (optional message to show the user instead; %s is the item name) # # Events: # - on-break (when a block of this type is about to be broken) # - on-destroy-with (the item/block held by the user while destroying) # - on-place (a block is being placed) # - on-use (an item like flint and steel or a bucket is being used) # - on-interact (when a block in used (doors, chests, etc.)) # - on-drop (an item is being dropped from the player's inventory) # - on-acquire (an item enters a player's inventory via some method) # # Actions (for events): # - deny (deny completely, used blacklist mode) # - allow (used in whitelist mode) # - notify (notify admins) # - log (log to console/file/database) # - tell (tell a player that that's not allowed) # - kick (kick player) # - ban (ban player) # # Users with the /worldguardnotify permission will receive notifications. # # ------------- # # You can have the same block or item used in two different sections and # they will both apply: # # [goldblock] # ignore-groups=vip # on-break=deny # [goldblock] # ignore-groups=admins # on-break=tell # # However, some events override others. For example, if you disable both # usage of the diamond pickaxe (with the on-destroy-with event) and # destruction of gold blocks (with the on-break event) and a player tries # to destroy a gold block with a diamond pickaxe, because the # on-destroy-with event comes first, the rules for the gold block # will not be applied (but the player will be denied nevertheless). # # -------------------------------------------------------------------------- # # Some examples follow. # # REMEMBER: If a line has # in front, it will be ignored. # # -------------------------------------------------------------------------- # Deny lava buckets #[lavabucket] #ignore-groups=admins,mods #on-use=deny,tell # Deny some ore #[coalore,goldore,ironore] #ignore-groups=admins,mods #on-break=log,deny,tell Ja tam się za bardzo nie znam, niektóre pluginy (np. Permissions) były z paczki "ServerFiles by Mąka" i edytowane, ale głębiej niż na Permissions.yml i ustawienia np. AutoMessages się nie porywałem, na pewno nic nie edytowałem z wiaderkami. Po prostu pewnego dnia gracze mi powiedzieli, że wiaderka nie działają (Nie da się wylewać)
  4. Dobry, mam problemik. Kupiłem serwer, wgrałem pluginy, ustawiłem wszystko co potrzebowałem i pojawił się problem: tylko op może używać wiaderka, inni gracze nie mogą nic nim robić, wodę jak postawią to znika, lawa tak samo. Miał ktoś kiedyś taki problem i wie jak go naprawić? Lista plików .jar w folderze Plugins: -AntiCreeper -AppleTree -AutoMessage -ChestShop -ChopTree -Essenitials -EssenitialsChat -EssenitialsProtect -EssenitialsSpawn -iConomy -IPGet -Log0.8.2 (Prosta alternatywa BigBrothera) -LWC -MagicCarpet -mcMMO -Minebackup -Minequerry -nChat -PermissionsEx -Plugman -WorldEdit -WorldGuard Permissions.yml: users: Walitorax: group: - Admins permissions: - '*' Spyker34: group: - wlasciciel permissions: - '*' Vegas: group: - ViP permissions: - essentials.give Daniel: group: - ViP permissions: - essentials.give groups: Default: default: false info: null prefix: null suffix: '' bulid: false inheritance: null permissions: null Member: default: true info: null prefix: '[&cGracz&f]&7' suffix: '' build: true inheritance: - Default permissions: - modifyworld.* - myhome.home.* - warpplugin.warp - econplugin.basic.* - lwc.protect - permissions.example - falsebook.blocks.* - multiverse.world.spawn - multiverse.tp - ChestShop.shop.* - iConomy.access - iConomy.bank.* - iConomy.rank - iConomy.payment - iConomy.list - iConomy.access - warpz0r.home - warpz0r.sethome - warpz0r.compasshome - warpz0r.compasswarp - warpz0r.warp - warpz0r.use - guest.* - essentials.kit Vip: default: false info: null prefix: '&f[&aViP&f]&7' suffix: '' inheritance: - Member permissions: - nchat.color - magiccarpet.mc Moderator: default: false info: null prefix: '&f[&5Moderator&f]&7' bulid: true inheritance: - Vip permissions: - worldedit.selection.expand - worldguard.fire-toggle.* - permissions.example - modplugin.ban - modplugin.kick - modplugin.unban - whitelist.permission.add - whitelist.permission.remove - worldguard.region.* - lwc.mod - commandbook.rules - commandbook.weather - commandbook.teleport.* - commandbook.teleport - commandbook.bans.* - ichat.reload - commandbook.warp.set - commandbook.warp.teleport - commandbook.whereami.compass - commandbook.kick - commandbook.broadcast - commandbook.bans - commandbook.mute - commandbook.thor - worldedit.selection.pos - worldguard.region.define.* - worldguard.region.list - worldguard.region.info.* - worldguard.region.select.* - worldedit.wand - worldedit.navigation.up - worldedit.superpickaxe.* - commandbook.time - falsebook.cart.* - warpz0r.set - warpz0r.remove - warpz0r.list - regionmarket.sell - regionmarket.offer - regionmarket.remove - kiwiadmin.ban - kiwiadmin.kick - kiwiadmin.unban - kiwiadmin.reload - kiwiadmin.tempban - kiwiadmin.ipban - kiwiadmin.export Admins: default: false info: null prefix: '&f[&2Administrator&f]&7' bulid: true inheritance: - Moderator permissions: - modplugin.* - lwc.admins - permissions.* - worldguard.* - commandbook.* - worldedit.* - bb.admin.* - permissions.group.* - permissions.player.* - commandbook.broadcast - commandbook.say - commandbook.say.me - commandbook.give - commandbook.more.* - commandbook.teleport.* - commandbook.teleport - ChestShop.admin - warpz0r.admin.* - jobs.admin.* - kiwiadmin.kick.all - nchat.reload wlasciciel: default: false info: null prefix: '&f[&6Wlasciciel!&f]&7' suffix: '' bulid: true inheritance: null permissions: - '*' budowniczy: default: false info: null prefix: '&f[&eBudowniczy&f]&7' suffix: '' bulid: true inheritance: - Vip permissions: - commandbook.give Jeśli coś jeszcze jest potrzebne to podam.
  5. Aha szkoda, dobra to nieważne. A texture pack to Faithful (http://bit.ly/oPR43X) + RPG Hud (http://bit.ly/ranu4C) (RPG hud'a znalazłem na stronce o minecrafcie, ale wygóglałem i znalazłem na oficjalnym forum).
  6. Dobry. Jest jakiś sposób na wyłączenie tego dziadostwa? Na 1.7 tego nie widziałem więc pewnie dodali do 1.8. Normalnie nie idzie kopać kopalni bo nic nie widać przez to.
  7. walitorax

    [Pytanie]Bot

    Najlepszy jest bot 24/7, ale że teraz jest coraz bardziej popularny to kulawo działa :P Link poślę na PW
  8. Ja polecam www.google.pl albo jakieś forum o GTA, a co do 24h to zapamiętaj, że mija dopiero po 24h a nie po ~16h. Do tego polecam program Mózg.exe a nie Chyba.exe .
  9. No ładnie. Tyle HS pod rząd, nic dziwnego, że płacz o hacki był :P Chociaż po tych wszystkich gordonach itd. to każdy lepszy przy dedzie wyzywa od hacków Like i Sub wciśnięty.
  10. Nie pamiętam w którą stronę jest odwrócona postać po spawnie, ale jeśli w stronę tej głównej hali, to może gdyby ustawić teleport w Sirosixie (nie wiem czy dalej jest) w odpowiednie miejsce to by celowało akurat w zombie? Jak chcesz to zawsze możesz kupić VIPa, który ma aima
  11. Jeśli jakoś Ci się to uda to odpal kilka razy grę, zaloguj się na różne konta, wejdź na jeden room i zabijaj główną postacią pozostałe. Kiedyś działał taki sposób na VM ale nie wiem czy dalej da się to zrobić, jeśli nie to znajomych skombinuj.
  12. Luknijcie na http://sf.kalais.net/ Nie wiem czy się przyda ale tam jest jakaś porównywarka broni i inne bajeranty to może będzie dobre.
  13. Jak nie chcesz kart i przelewów to PSC. SMS i telefon są nieopłacalne. Wejdż na http://www.paysafecard.com/pl/kupno/ Tam masz pokazane jak wygląda PSC (u mnie sprzedają w postaci SMS), możesz wpisać swój adres i zobaczyć w którym sklepie możesz to kupić. Później tylko idziesz do jakiegoś sklepu, który tam wyświetliło, kupujesz, wracasz do domu, wybierasz kupno NX za PSC i wklepujesz kod z tej karty.
  14. Ok dzięki. Napisałem o 15, odp i kod otrzymałem o 18. Za pomoc dostajesz plusik, a temat do zamknięcia.
×
×
  • Dodaj nową pozycję...