• 0

    posted a message on Halfmonty's SMP server highly modded
    New Server and Old Server working!
    USE urls
    rpg.halfmonty.net (where the action is ;D)
    and
    ffa.halfmonty.net
    place them in the ip field
    Posted in: Alpha - SMP Servers
  • 0

    posted a message on 66 to 1 ratio of a workbench :D
    Quote from CKSlider »
    I jus finished it this morning, tell me what you think!


    Check out
    http://minecraftwb.com/index.php/community/contests/contests
    you might win something for that
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on Delete this thread please.
    Temp Bump - friend can't find it and search is "not available"
    Posted in: Mods Discussion
  • 0

    posted a message on The funny side of griefing
    Quote from xmacro »
    We all know that there are different levels of griefing, from severe to mild. But some griefs are done for the lulz instead of frustrating anyone.

    Anyone run across some griefing that just made you laugh? Post pics here.

    I found this on the PC Gamer server a few days ago, thought it was funny given the placement to PC Gamer's main building



    perhaps you guys will see it with a smaller pic

    [img][/img] Not [img][/img] for large pics...
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on MCWorkBench
    Quote from dazman76 »
    This looks like a useful little utility, nice work :smile.gif:

    Thanks

    I started making this because my cheat sheet kept on being misplaced... and then I saw http://minecraftwb.com and though - "hay, this would be cool in application form"

    LOL - Just found a Pic of my very first test of the idea. Used notepad to test the output.
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on MCWorkBench
    BUMP
    Reserved for future post.
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on I keep seeing videos of hidden pathways
    There is 1 other way - use hey0 cuboid and adminuim as walls (Cuboid can quickly delete {/cfill 0 or /cdel} and fill {/cfill 7})
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on I keep seeing videos of hidden pathways
    Its SuperLlama's Runecraft - Hidden door
    viewtopic.php?f=1012&t=29244
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on Lock this thread (hMod thread)
    Quote from RyanJaymz »
    I have a question. How do you move someone from groups in-game? For example, if I jail one of my vips, I don't want him to have the ability to warp out, so I added a group I call sh*tlist which can't do anything, including build. How would I go about doing this in game? Can someone give me an example?

    Like say I bobthebuilder is a vip, but for some reason I've jailed him and want to move him to my sh*tlist, how would I do that?


    The in game command to do this is /modify
    You are looking for /modify {name of player} group {groupname}
    MAKE SURE OF THE EXACT SPELLING FROM YOUR GROUPSFILE (admins are the same as Admins)
    so to move bobthebuilder from Vip to sh*tlist (we use douche) it would be

    /modify bobthebuilder group sh*tlist
    and back would be
    /modify bobthebuilder group vip

    just as something nice
    /modify {playername} prefix {color}
    http://www.minecraftwiki.net/wiki/Classic_Server_Protocol
    -scroll down for color codes (enter it without the &)
    also accepts
    /modify {playername} prefix {color}{prefix}
    so
    /modify axeblade346 prefix cAdmin_
    would make chat messages look like
    Admin_axeblade346

    (which it could have just been /setgroup {name} {group})
    Posted in: Server Support and Administration
  • 0

    posted a message on MCWorkBench
    My version number will include the date it was released (mmddyyyy) to make it easy to know just how up to date your version is.
    like 1.1a 10202010 is version 1.1 alpha from 20 October 2010

    Just some of the Code (it is the same per item , just number that changes)
    Private Sub CBItemValue_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CBItemValue.SelectedIndexChanged
            'set the pic to normal
            PBWB.Image = My.Resources.MCworkBench
            'PBWB.Image = My.Resources.arrow        'Change Name to Value and make the pics
            Select Case CBItemValue.Text
                Case "Stone"
                    TBitemdatavalue = 1
                Case "Grass"
                    TBitemdatavalue = 2
    ....
       Case "Green Record"
                    TBitemdatavalue = 2257
            End Select
            'Fixes Commen Errors
            Select Case TBitemdatavalue
                'fix Planted seeds to Item
                Case 59
                    TBitemdatavalue = 295
                    'fix  Half wooden doors to Full item
                Case 64
                    TBitemdatavalue = 324
                    'Fix signs Preplaced and Wall to Item
                Case 63
                    TBitemdatavalue = 323
                Case 68
                    TBitemdatavalue = 323
                    'Fix Half iron door to full item
                Case 71
                    TBitemdatavalue = 330
                    'Fix Placed Reeds to Item
                Case 83
                    TBitemdatavalue = 338
            End Select
            Change()
        End Sub
    
     'Changes Values back into names
        Private Sub GName()
            Select Case N
                Case 1
                    CBItemValue.Text = "Stone"
                Case 2
                    CBItemValue.Text = "Grass"
                Case 3
                    CBItemValue.Text = "Dirt"
                Case 4
                    CBItemValue.Text = "Cobblestone"
    ...
          CBItemValue.Text = "Fishing Rod"
                Case 2256
                    CBItemValue.Text = "Gold Record"
                Case 2257
                    CBItemValue.Text = "Green Record"
            End Select
    
        End Sub
    
    --- Reset() just changes images back to normal
    
    ---Change() changes to images background according to selected item and changes the workbench item
    
    '' makes the command to use
      Private Sub Makecode()
            LBGiveLine.ForeColor = Color.Black
            TBText = ""
            'add give command
            TBText = TBText + TBGiveCommand.Text + " "
            'add item
            ''Temp Test
            ' TBitemdatavalue = CBItemValue.Text()
            If TBitemdatavalue = "" Then
                TBText = TBText + "NO ITEM! "
                LBGiveLine.ForeColor = Color.Red
            Else
                TBText = TBText + TBitemdatavalue + " "
            End If
            'add qty
            If CBGiveAmmount.Text = "" Then
                TBText = TBText + "NO QTY! "
                LBGiveLine.ForeColor = Color.Red
            Else
                TBText = TBText + CBGiveAmmount.Text + " "
            End If
    
            'add player
            If TBGiveTo.Text = "" Then
                TBText = TBText
            Else
                TBText = TBText + TBGiveTo.Text + " "
            End If
            'show the command
    
            LBGiveLine.Text = TBText
        End Sub
    
    -- then there is the code to update the command to use if text values of item,qty or name changes
    (also updates on item clicks)
    
        'Min and Max Buttons
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            'minimode
            Pos = Me.Location
            Dim temp As Point = New Point()
            temp.X = My.Computer.Screen.Bounds.Width - 900
            temp.Y = 0
            Me.Location = temp
            Me.Width = 800
            Me.Height = 58
            Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
            Me.TopMost = "True"
        End Sub
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            'maximode
            Me.Location = Pos
            Me.Width = 800
            Me.Height = 754
            Me.FormBorderStyle = Windows.Forms.FormBorderStyle.Sizable
            Me.TopMost = "False"
        End Sub
    'updates the item value and changes the name in the list (list changes the rest) when image is clciked
     Private Sub Item1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Item1.Click
            N = 1
            GName()
        End Sub
    ....
    End class


    There is one piece of code I didn`t mention here , youtube video gives you a hint about it.

    My todo list before next version
    (note - gather includes mining / making (lava+water=Obsidian) / harvesting...
    Number after is the ammount of them that I need to add)
    '' Add Gather - 42
    '' Do Furnace- 6
    '' Add Making- 4 (Chainmail - Use fire as materail)
    " -- add fixes once done
    " ---- Wood:
    " ----http://minecraftwb.com/index.php/game-database/data-values/item/wood-2
    " ----The correct Dec value is 5. (17 is log)
    " ----Diamond Axe:
    " ----http://minecraftwb.com/index.php/game-database/data-values/item/diamond-axe
    " ----The correct Dec Value is 279. (270 is wooden pick axe)
    " ----Cloth (White)
    " ----The version used in Alpha is Dec 35 not Dec 36 - I made the mistake too....
    " ----http://minecraftwb.com/index.php/game-database/data-values/item/cloth

    Other thing that needs to be added:
    '' Add Hits to Gather + Time per Item - 42
    " Search -- sounded a lot easier than it seems to be.

    Thing that I am thinking to make as a separate app - MCHey0ADMINS? (perhaps make a Hey0 version of this one)
    "--/modify commands (everyone seems to have problems with this) (ranks, chat colors and prefixes...)
    "--/cuboid commands with what they do
    "--/tp - with a playerlist that can be added to
    "--/tphere - with a playerlist that can be added to
    "--/kit
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on MCWorkBench
    MCWorkbench , The app that makes giving easy.
    MCWorkbench is a external application that help your with
    1. Itemname / Itempicture to ItemID conversion
    2. A fast way to know the exact /give command to type in
    3. How to make the item if no one can give it to you.

    Works in Windows XP SP3 and newer
    Needs .Net 3.5 or higher
    Min resolution is currently 860 x 800



    " target="" data-ensure-absolute>
    " frameborder="0" allowfullscreen sandbox="allow-forms allow-scripts allow-same-origin allow-popups">

    Basic use. /give
    Type in your give command (standard one is /i in the app)
    Select the item from the list-box (first letter searching works in it) or by clicking on the image
    Choose an qty or type it in.
    Enter the name of the player to give it too. (no name in most mods means player who typed it in)
    Enter the command in game according to the text in the command output window.
    It auto corrects , like unusable wall sign becomes normal signs (item)
    ▲▲▲ makes it switch to Mini mode in witch it runs on top of all applications in the windows bar next to the close x

    ▼▼▼ makes it switch back to Normal mode.

    Basic use. Workbench
    Select the item from the list-box (first letter searching works in it) or by clicking on the image
    If it can be made it will show in the workbench area , check furnace image too for all smelting.

    Public Beta - Stable - V1.1a 10202010
    http://www.mediafire.com/file/fso0ryrwr8fu8ci/MCWorkBenchV1.1a.exe
    = still to be added / fixed
    -- Just saw - Subject: Improved Chat Functionality Mod - Might use it for faster ingame intergration - need to test it as soon as MC login is back.
    -- Goining to make item name list Alphabetical
    -- add a better picture of Burning Furnace and Crops
    -- Fix Item values in pictures (Minecraft workbench fixed a few since 20th of October 2010)
    -- Make furnace better (time it takes to smelt , fuel needed to smelt 1...)
    -- add gathering / mining -- (Use a iron pick axe to mine Diamond ore for diamonds)

    Thanks to :
    Minecraft workbench - http://minecraftwb.com/index.php/game-database/items
    for all pictures and help

    Halfmonty SMP server - http://halfmonty.tumblr.com/
    for aiding in the first few beta tests (THANKS WAGO!) and for ideas.

    Like it?
    Donate some -

    Thank you.

    Any suggestions or bugs.
    PM me or E-mail it to [email protected]
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on Magic Mod Gametype Concepts
    We had a few pigs spawn and had some Fun and I got this Idea for a game


    PIG Hearding

    Need /Spawnmob PIG 1 - Triggered on a Block click

    Staduim Protected from "Grief" with Cuboid (hey0 Addon) -- Admin must add themselves to Cuboid to be able to change it.
    Pigs movement need to be Monitored.
    IS there a way to show score? Like Change blocks from Water To Lava on a Score Board (Change Signs text?)

    Perhaps A 5x5x5 RUNECRAFT rune of Diamond and Gold to make a rune for a Fast Staduim of Glass and Spunge

    Add player into Teams if Friendly Fire is enabled

    2 Holes on each side to Heard the pig into (perhaps more for more teams) Surrounded by Spunge


    +2 Point If you get the Pig thru the hole
    Killing the Pig = -3
    Scoring in the wrong hole counts towards the teams hole you scored in
    If Friendly Fire (teams) is enabled faling thry the hole is -1 Point
    Falling Of in Normal mode - Warp to Middel of Stadium (respawn)
    Falling Of in Friendly Fire - Delay of a few Seconds (10 should be enough) before respawn
    Falling Of in Friendly Fire (HARD) - Delay of a lot of Seconds (30 should be enough) before respawn
    Falling Of in Friendly Fire (DEATH) - Gets warped to the Spectator Box (out of game)
    Posted in: Alpha - Survival Multiplayer Discussion
  • 0

    posted a message on Lock this thread (hMod thread)
    Quote from hey0 »

    Quote from killie01 »
    i have a warp problem
    a warp in file:
    warpname:152.69999998807907:105.0:-383.322120346383:-13228.0205:64.20001:group1,group2
    but if i have 2 groups OR users it crashes and no one can use it

    That means it wasn't designed for that. One group only.


    We had that problem to, Just make 2 warps close to each other with a small difference in the names.

    Any one else seem to Bomb out when warping (its random , tried it a few times from same start to warp)
    It happens a lot on our server. We have tried a smaller render distance, less players, even announcements when you gonna warp so no one else warps. (Is "Warp Crash" a term?)
    Posted in: Server Support and Administration
  • 0

    posted a message on New Minecraft Game Database
    Quote from minecraftwb »
    Thanks Axeblade for the catch we will get on it. We look forward to seeing what you come up with, feel free to pm us or sign up on our forums to share!

    I have send you a PM so long with a Youtube (unlisted) link so long.

    Thanks for a Great Database , it aided me a lot so far.
    Posted in: Discussion
  • 0

    posted a message on Axe's Thread. Tutorials and stuff. Hey0 and Halfmonty
    MCWorkBench.
    Its is now available for download - still a few minor "bugs" (item values in images)
    http://www.minecraftforum.net/viewtopic.php?f=1012&t=61025

    Quote from oldtext »
    Youtube Video of FIRST build - still a few Bugs in it.
    " target="" data-ensure-absolute>" frameborder="0" allowfullscreen sandbox="allow-forms allow-scripts allow-same-origin allow-popups">
    A little App with 2 modes.
    Mini Mode is a bar that has all the Item Names in it to choose from and it gives you the /item (or other give command)
    command to type for it.
    In Max Mode it has a picture of all the spawn able items and the Workbench Image for it.
    Still to do for Max Mode. Click on image to view its info. (click on Torch - see sticks is needed. Click on Sticks , see
    wood is need, wood -> stumps , stump Mine tree with axe / hand)
    And for both modes. Type command into game.


    Other Stuff I made So far.
    MCedit Schematics
    Minecart SpeedBoost (Air Block trick version)
    Minecart speed boost Both Ways
    The 576 blocks long version
    A Spawn that takes you to the middle with water. (new version in use on Halmonty's server)
    http://www.mediafire.com/file/cnyss466i6092lz/DrainSpawn.schematic
    Posted in: Alpha - Survival Multiplayer Discussion
  • To post a comment, please .