[COMPLETE PACK] MU ONLINE Administrator Tools by [SAKURA DEV]

Started by Sakura Dev, Jul 02, 2023, 07:22 PM

Sakura Dev

Hello good evening,

On this occasion I come to bring you all the Programs that a Mu Online Server Owner must have on his VPS.

These programs will make it easier for you to do many things in your Administrator Role, they are all complete programs and the only ones that you will be missing when managing your Server. They are all working perfectly and without problems.

In order for the Programs to work, they have to configure with the Data of SQL and of your Server.

Tool Pack Contents:


- Item Calculator
- Change Client Images (Interface, Loading Screen, etc)
- CashShop Editor by Louis Update 2
-Bmd-editor
- Coin editor
- Account Editor
- Event Item Bag - Editor
- Item Drop Editor - MuEmu
-Mu Shop Editor
-Mu Editor
-Pentium Tools b.19
-Titan Editor Premium
-ToolKit (Silver Edition)

Corrections and Fixes:


Event Item Bag - Editor

Sorry but you are not allowed to view spoiler contents.


ToolKit: Changelog from its creator


Sorry but you are not allowed to view spoiler contents.


Without further ado, I leave you the Download Link with all the Programs that an Administrator needs.

DOWNLOAD LINK:

You require the following to view this post content:
  • You must thank this post to see the content.


Credits: Contribution and Pack SAKURA DEV
Programs: From their respective owners.

Top Replies

foxwizzy

Nice, thanks, and here's a small convertor for the Shop.txt files that silver tools generates, convertes from .txt to .xml, i use it for my s12e2 server, i dont know if it works for other versions.
I made it in AutoIT so some anti-virus flags it for this, its not a virus, here's the source code:

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=..\..\Downloads\Hopstarter-Adobe-Cs4-File-Adobe-Dreamweaver-XML-01.256.ico
#AutoIt3Wrapper_Outfile=ShopConvert.Exe
#AutoIt3Wrapper_Res_Description=Convert .txt shop files to .xml shop files
#AutoIt3Wrapper_Res_Fileversion=0.1.2.4
#AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y
#AutoIt3Wrapper_Res_ProductName=Shop Convertor
#AutoIt3Wrapper_Res_ProductVersion=0.1
#AutoIt3Wrapper_Res_LegalCopyright=Free To Use
#AutoIt3Wrapper_Res_LegalTradeMarks=None
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.16.1
 Author:         FoxWizzy

 Script Function:
    Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <File.au3>

Global $fod, $rEturn, $rData = '<Shop>' & @CRLF

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Shop Convertor", 308, 149, 328, 373)
$Button1 = GUICtrlCreateButton("Select File", 8, 48, 291, 25)
$Button2 = GUICtrlCreateButton("Convert", 8, 80, 291, 25)
GUICtrlSetState(-1, $GUI_DISABLE)
$Button3 = GUICtrlCreateButton("Save As", 8, 112, 291, 25)
GUICtrlSetState(-1, $GUI_DISABLE)
$Label1 = GUICtrlCreateLabel("Select File", 8, 8, 293, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $Button1
            Call("rdFunc")
        Case $Button2
            Call("fcFunc")
        Case $Button3
            Call("fsFunc")
    EndSwitch
WEnd

Func rdFunc()

    $fod = FileOpenDialog("Select File", @WorkingDir & "\", "Text Files (*.txt)")
    _FileReadToArray($fod, $rEturn)
    If @error <> 0 Then
        MsgBox(0, "Error", "Error Flag: " & @error)
    Else
        GUICtrlSetData($Label1, $fod)
        GUICtrlSetState($Button1, $GUI_DISABLE)
        GUICtrlSetState($Button2, $GUI_ENABLE)
    EndIf

EndFunc   ;==>rdFunc

Func fcFunc()
    Local $a = 1
    For $i = 10 To $rEturn
 - 1 Step 1
        $sString = StringSplit($rEturn[$i], @TAB)
        For $j = 1 To 10
            If $j > UBound($sString) - 1 Then
                ReDim $sString[$j + 1]
                $sString[$j] = " "
            EndIf
        Next
        If $sString[8] <> "0" Then
        Else
            $sString[8] = "-1"
        EndIf
        $rData = $rData & '    <Item Cat="' & $sString[1] & '"    Index="' & $sString[2] & '"    Level="' & $sString[3] & _
                '"    Durability="' & $sString[4] & '"    Skill="' & $sString[5] & '"    Luck="' & $sString[6] & _
                '"    Option="' & $sString[7] & '"    Exc="' & $sString[8] & '"    SetItem="' & $sString[9] & _
                '"    SocketCount="0"    Elemental="0"    Serial="0"    /><!--' & $sString[10] & '-->' & @CRLF
    Next
    $rData = $rData & '</Shop>'
    GUICtrlSetState($Button2, $GUI_DISABLE)
    GUICtrlSetState($Button3, $GUI_ENABLE)
EndFunc   ;==>fcFunc
Func fsFunc()
    $fsd = FileSaveDialog("SaveShop", @WorkingDir, "eXtensible Markup Language (*.xml)", 16, StringTrimRight(GUICtrlRead($Label1), 4))
    If @error <> 0 Then
    Else
        $fo = FileOpen($fsd, 10)
        FileWrite($fo, $rData)
        FileClose($fo)
        MsgBox(0, "Done", "File Converted")
        GUICtrlSetState($Button3, $GUI_DISABLE)
        GUICtrlSetState($Button1, $GUI_ENABLE)
    EndIf
EndFunc   ;==>fsFunc


Download Links:

You require the following to view this post content:
  • You must thank this post to see the content.

true

  •  

momno

  •  

artinoize

  •  

KhongGianOL

  •  

foxwizzy

Nice, thanks, and here's a small convertor for the Shop.txt files that silver tools generates, convertes from .txt to .xml, i use it for my s12e2 server, i dont know if it works for other versions.
I made it in AutoIT so some anti-virus flags it for this, its not a virus, here's the source code:

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=..\..\Downloads\Hopstarter-Adobe-Cs4-File-Adobe-Dreamweaver-XML-01.256.ico
#AutoIt3Wrapper_Outfile=ShopConvert.Exe
#AutoIt3Wrapper_Res_Description=Convert .txt shop files to .xml shop files
#AutoIt3Wrapper_Res_Fileversion=0.1.2.4
#AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y
#AutoIt3Wrapper_Res_ProductName=Shop Convertor
#AutoIt3Wrapper_Res_ProductVersion=0.1
#AutoIt3Wrapper_Res_LegalCopyright=Free To Use
#AutoIt3Wrapper_Res_LegalTradeMarks=None
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.16.1
 Author:         FoxWizzy

 Script Function:
    Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <File.au3>

Global $fod, $rEturn, $rData = '<Shop>' & @CRLF

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Shop Convertor", 308, 149, 328, 373)
$Button1 = GUICtrlCreateButton("Select File", 8, 48, 291, 25)
$Button2 = GUICtrlCreateButton("Convert", 8, 80, 291, 25)
GUICtrlSetState(-1, $GUI_DISABLE)
$Button3 = GUICtrlCreateButton("Save As", 8, 112, 291, 25)
GUICtrlSetState(-1, $GUI_DISABLE)
$Label1 = GUICtrlCreateLabel("Select File", 8, 8, 293, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $Button1
            Call("rdFunc")
        Case $Button2
            Call("fcFunc")
        Case $Button3
            Call("fsFunc")
    EndSwitch
WEnd

Func rdFunc()

    $fod = FileOpenDialog("Select File", @WorkingDir & "\", "Text Files (*.txt)")
    _FileReadToArray($fod, $rEturn)
    If @error <> 0 Then
        MsgBox(0, "Error", "Error Flag: " & @error)
    Else
        GUICtrlSetData($Label1, $fod)
        GUICtrlSetState($Button1, $GUI_DISABLE)
        GUICtrlSetState($Button2, $GUI_ENABLE)
    EndIf

EndFunc   ;==>rdFunc

Func fcFunc()
    Local $a = 1
    For $i = 10 To $rEturn
 - 1 Step 1
        $sString = StringSplit($rEturn[$i], @TAB)
        For $j = 1 To 10
            If $j > UBound($sString) - 1 Then
                ReDim $sString[$j + 1]
                $sString[$j] = " "
            EndIf
        Next
        If $sString[8] <> "0" Then
        Else
            $sString[8] = "-1"
        EndIf
        $rData = $rData & '    <Item Cat="' & $sString[1] & '"    Index="' & $sString[2] & '"    Level="' & $sString[3] & _
                '"    Durability="' & $sString[4] & '"    Skill="' & $sString[5] & '"    Luck="' & $sString[6] & _
                '"    Option="' & $sString[7] & '"    Exc="' & $sString[8] & '"    SetItem="' & $sString[9] & _
                '"    SocketCount="0"    Elemental="0"    Serial="0"    /><!--' & $sString[10] & '-->' & @CRLF
    Next
    $rData = $rData & '</Shop>'
    GUICtrlSetState($Button2, $GUI_DISABLE)
    GUICtrlSetState($Button3, $GUI_ENABLE)
EndFunc   ;==>fcFunc
Func fsFunc()
    $fsd = FileSaveDialog("SaveShop", @WorkingDir, "eXtensible Markup Language (*.xml)", 16, StringTrimRight(GUICtrlRead($Label1), 4))
    If @error <> 0 Then
    Else
        $fo = FileOpen($fsd, 10)
        FileWrite($fo, $rData)
        FileClose($fo)
        MsgBox(0, "Done", "File Converted")
        GUICtrlSetState($Button3, $GUI_DISABLE)
        GUICtrlSetState($Button1, $GUI_ENABLE)
    EndIf
EndFunc   ;==>fsFunc


Download Links:

You require the following to view this post content:
  • You must thank this post to see the content.

kalypso159

  •  


Powered by SMFPacks Ads Manager Mod