Hacking Need beta testers for my projects

Status
Not open for further replies.

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
Wait a few days :)
I will send you SMA v1.8 and SMA Guides v1 to create Videos ;)

BTW
Final release very soon
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
SMA Guide v1.0
Step by step Guide (with "Talk Module")
* Show, Edit or create Guides
Download: http://www.mediafire.com/?sopt0e2x4zu6fq8

smaguide1.png

smaguide2.png

smaguide3.png
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
SMA Guide V1.0 B

Download: http://www.mediafire.com/?8jquybdqxgxhijj
Changelog:
* Show Fixed (Create/ Edit Guide (if stop pressed))
* Stop added (Create/ Edit Guide)
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
Spayrosam Multi-App is Done :)
Yet only 4 Guides then i'll release SMA FINAL ;)

HD Guides created with PS ;)
If you'd like to translate a guide, contact me. I'll then send you the Templates

I'll add "Live Support" to SMA Guide later. (OTHER USERS CAN HELP YOU)



Download: http://www.mediafire.com/?y3yxusg5x9ps7li

* Included Guides
  • BannerBomb Hack wii 3.x-4.1
  • BannerBomb Hack wii 4.2
  • Nintendo Wii MAC-Address
  • Download LetterBomb
  • LetterBomb Hack

  • HackMii Installer
  • Make a NAND backup
  • MyMenuifyMod

EDIT:
BTW


This version of SMA Guide support Local network (You can start guides from other OS..)

To test it Code:
Code:
#include 
#include 
#include 

Global $socketS
GUICreate("Test Local network support")
$Button1 = GUICtrlCreateButton("Start", 20, 20, 260, 25, $WS_GROUP)
GUISetState(@SW_SHOW)

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
UDPCloseSocket($socketS)
UDPShutdown()
Exit
Case $Button1
UDPStartup()
$socketS = UDPOpen("127.0.0.1", 65433)
UDPSend($socketS, "S")
EndSwitch
WEnd

Send exe: http://www.mediafire.com/?joaz23dubws1fvx
 

Anon10W1z

Well-Known Member
Member
Joined
Feb 18, 2012
Messages
1,112
Trophies
0
Location
Somewhere over the rainbow
XP
184
Country
United States
Spayrosam Multi-App is Done :)
Yet only 4 Guides then i'll release SMA FINAL ;)

HD Guides created with PS ;)
If you'd like to translate a guide, contact me. I'll then send you the Templates

I'll add "Live Support" to SMA Guide later. (OTHER USERS CAN HELP YOU)

[media]http://www.youtube.c...h?v=64t6Q39XcL4[/media]

Download: http://www.mediafire...y3yxusg5x9ps7li

* Included Guides
  • BannerBomb Hack wii 3.x-4.1
  • BannerBomb Hack wii 4.2
  • Nintendo Wii MAC-Address
  • Download LetterBomb
  • LetterBomb Hack
  • HackMii Installer
  • Make a NAND backup
  • MyMenuifyMod
EDIT:

BTW

This version of SMA Guide support Local network (You can start guides from other OS..)

To test it Code:
Code:
#include 
#include 
#include 

Global $socketS
GUICreate("Test Local network support")
$Button1 = GUICtrlCreateButton("Start", 20, 20, 260, 25, $WS_GROUP)
GUISetState(@SW_SHOW)

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
UDPCloseSocket($socketS)
UDPShutdown()
Exit
Case $Button1
UDPStartup()
$socketS = UDPOpen("127.0.0.1", 65433)
UDPSend($socketS, "S")
EndSwitch
WEnd

Send exe: http://www.mediafire...joaz23dubws1fvx
not working here, win7 home premium 64 bit as follows:

Line 11396 (File "E:\sma\Spayrosam Multi-App Guide.exe"):



Error: The requested action with this object has failed.
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
SAPI 64-bit Issues (SAPI.SpVoice) :(
Do You have any idea.

You can see in the code below:
Code:
#include 
#include 
#include 
#include 
#include 
#include 
#include 

Global Enum Step *2 $SPF_ASYNC, $SPF_PURGEBEFORESPEAK, $SPF_IS_FILENAME, $SPF_IS_XML, $SPF_IS_NOT_XML, $SPF_PERSIST_XML, $SPF_NLP_SPEAK_PUNC, _
$SPF_NLP_MASK, $SPF_VOICE_MASK, $SPF_UNUSED_FLAGS, $m_speakFlags = BitOR($SPF_ASYNC, $SPF_IS_XML, $SPF_PURGEBEFORESPEAK)
Global $voice = ObjCreate("SAPI.SpVoice")

GUICreate("Speak Test", 365, 80, -1, -1)
$Input1 = GUICtrlCreateInput("Welcome This is a Test.", 10, 8, 345, 20)
$Button1 = GUICtrlCreateButton("Speak it!", 205, 40, 150, 25)

;List
$Voicelist = GUICtrlCreateCombo("", 8, 40, 150, 20, $CBS_DROPDOWNLIST)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetBkColor(-1, 0x000000)
$xVoice = ""
For $Token In $voice.GetVoices
$xVoice &= "|" & ($Token.GetDescription())
Next
If $xVoice = "|Microsoft Sam" Then $Voice_No_list = True
GUICtrlSetData($Voicelist, $xVoice, "Microsoft Sam")
VoiceList_Click()

GUISetState(@SW_SHOW)

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit

Case $Button1
GUICtrlSetState($Button1, $GUI_DISABLE)
Sleep(200)
_SpeakStart(GUICtrlRead($Input1))
GUICtrlSetState($Button1, $GUI_ENABLE)

Case $Voicelist
VoiceList_Click()
EndSwitch
WEnd

Func VoiceList_Click()
$voice.Voice = $voice.GetVoices().Item(_GUICtrlComboBoxEx_GetCurSel(GUICtrlGetHandle($Voicelist)))
EndFunc   ;==>VoiceList_Click

Func _SpeakStart($_SpkText, $VoicepitchValue = 0)
$SpkText = '' & $_SpkText & ""
$voice.Speak($SpkText, $m_speakFlags)
EndFunc   ;==>_SpeakStart

Edit:
BTW
newsmaguide.png
 

pepxl

GFX W!Z4RD
Member
Joined
Jun 19, 2009
Messages
3,263
Trophies
1
XP
328
Country
do you have Sam on you 64bit because i have Anna which could be an issue
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
Replace
GUICtrlSetData($Voicelist, $xVoice, "Microsoft Sam")
With
$xVoice = StringTrimLeft($xVoice, 1)
If $xVoice = "|Microsoft Sam" Then $Voice_No_list = True
$SplitxVoice = StringSplit($xVoice, "|")
If $SplitxVoice[0] >= 1 Then GUICtrlSetData($Voicelist, $xVoice, $SplitxVoice[1])
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
Step by step Guide with
  • Talk Module
  • 3D Wiimote
  • 3D Wii
  • Local network support

Included Guides
  • BannerBomb Hack wii 3.x-4.1
  • BannerBomb Hack wii 4.2
  • Nintendo Wii MAC-Address
  • Download LetterBomb
  • LetterBomb Hack
  • HackMii Installer
  • Install a patched IOS236
  • Install Priiloader
  • Make a NAND backup
  • MyMenuifyMod

Default Voice Fixed
Download http://www.mediafire.com/?v9fsprfym0c9m0j
 

snakepliskin2334

Well-Known Member
Member
Joined
Mar 25, 2012
Messages
226
Trophies
0
Age
36
XP
234
Country
United States
The cIOSs ModMii uses were recommended by Joostin and are the same as his recommendations in this thread.

btw, I've volunteered to be a beta tester (and spayrosam approved). So there will not be any hard feelings between this app and ModMii. Just a little healthy competition :D. I know there are things this app will be able to do that ModMii cannot. But I doubt this app will do all that ModMii is capable of either. In the end, I think this app and ModMii will probably be the two most commonly used Wii-related Windows apps out there, and I'm happy to share the spotlight with such a sweet looking tool!

@[member='VashTS'], IOS70/80 can 003 brick wii's that used to be Korean and were region changed. There is no foolproof way to detect if a Wii used to be Korean, so installing a patched IOS60 to slots 70/80 is a great precaution to take (ModMii does it also).

hey i am in dont forget about me man (:
 

Anon10W1z

Well-Known Member
Member
Joined
Feb 18, 2012
Messages
1,112
Trophies
0
Location
Somewhere over the rainbow
XP
184
Country
United States
Step by step Guide with
  • Talk Module
  • 3D Wiimote
  • 3D Wii
  • Local network support
Included Guides
  • BannerBomb Hack wii 3.x-4.1

  • BannerBomb Hack wii 4.2


  • Nintendo Wii MAC-Address

  • Download LetterBomb

  • LetterBomb Hack


  • HackMii Installer

  • Install a patched IOS236

  • Install Priiloader

  • Make a NAND backup

  • MyMenuifyMod
Default Voice Fixed
Download http://www.mediafire...v9fsprfym0c9m0j
does 64-bit work now?
 

Anon10W1z

Well-Known Member
Member
Joined
Feb 18, 2012
Messages
1,112
Trophies
0
Location
Somewhere over the rainbow
XP
184
Country
United States

LWares87

Well-Known Member
Member
Joined
Oct 19, 2008
Messages
1,706
Trophies
0
Location
Colchester, England
XP
565
Country
United Kingdom
A bit of a n00b question: Just to ask, what does this application exactly do? As there isn't a explanation in the opening post.
 

DeadlyFoez

XFlak Fanboy
Banned
Joined
Apr 12, 2009
Messages
5,920
Trophies
0
Website
DeadlyFoez.zzl.org
XP
2,875
Country
United States
I can make some vids dude.
EDIT: SMA multi-app (LOL that was my first word not caps) guide confuses me. What am I supposed to do when It opens? How do I create guides?
I figured you'd at least know a little bit about the app being that you offered to make videos. Did you end up making them for him?
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
A bit of a n00b question: Just to ask, what does this application exactly do? As there isn't a explanation in the opening post.

SMA is an application for Windows which does several things for the Wii.
  • Nand
    - Manage your NAND
    - Searches a NAND dump for all installed titles
    - Download Covers (FULL/Front/3D/Disc) Region: EN|FR|DE|ES|IT|NL|PT|US|JA|KO|ZH
    - Show Title infos (GameTDB)
    - Search Trailers (Online)
  • Backup
    - Download Trailers/Fanart/FULL/Front/3D/Disc Region: EN|FR|DE|ES|IT|NL|PT|US|JA|KO|ZH
    - Show Title infos (GameTDB)
    - Search Trailers (Online)
    - Instal &/ delete Games
    - Download settings (User Default|WiiFlow|USB Loader GX|CFG USB Loader)
    - WBFS, Fat32 and NTFS are supported
    - Play Trailers (*.thp Files)
  • Games Wiki
    - Search games (any portion of a game's name/ID) Region: EN|FR|DE|ES|IT|NL|PT|US|JA|KO|ZH
    - Show Title infos (GameTDB)
    - Search Trailers (Online)
  • Hack WII
    - Hack any Wii
    - Complete Softmod
    - HD Guides
    * Talk Module
    * 3D Wiimote
    * 3D Wii
    * Local network support

    - Format HDD to
    * Fat32 (Max 2TB)
    * WBFS
    * NTFS
    - generate Themes (8 themes)
  • Update WII
    - Channels
    - IOSs
    - CIOSs
    ...
  • Loader themes
    - Download themes for
    * Wiiflow
    * USB loader GX
    * CFG Loader
    * Homebrew Channel
  • Homebrew
    - Download (Wiiflow|USB loader GX|CFG Loader|Wiimc)
    * Forwarders
    * Priiloader Boot.dol s
    * Apps
  • Media
    - manage Media
    - Show Movies
    - Play Music
It can easily guide you to do Everything ;)
Release weekend :)
 

Anon10W1z

Well-Known Member
Member
Joined
Feb 18, 2012
Messages
1,112
Trophies
0
Location
Somewhere over the rainbow
XP
184
Country
United States
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • SylverReZ @ SylverReZ:
    @Xdqwerty, It only shows that if you do 'View Source', right below that it'll tell you the SQL response query. I feel like a nerd lol.
  • SylverReZ @ SylverReZ:
    But for everyone, it said unexpected database error.
    +1
  • BigOnYa @ BigOnYa:
    Just said database error for me
    +2
  • Xdqwerty @ Xdqwerty:
    @BigOnYa, she said it only said "too many connections" when you view the source
    +1
  • Xdqwerty @ Xdqwerty:
    btw gonna try to actually beat touhou 6
    +1
  • SylverReZ @ SylverReZ:
    @Xdqwerty, Have fun.
    +1
  • Xdqwerty @ Xdqwerty:
    @SylverReZ, i recall playing some hard undertale fangames way before playing touhou, like the genocide asgore fangame or the mettaton neo 2.0 one
  • Xdqwerty @ Xdqwerty:
    so atleast im already kinda used to bullet hell games
  • Xdqwerty @ Xdqwerty:
    and yea i played both undertale and deltarune too although those are a piece of cake compared to any touhou game
  • Xdqwerty @ Xdqwerty:
    aaaaaaannnnnnd i already lost all my continues
  • Xdqwerty @ Xdqwerty:
    I only set three default lives btw
  • Xdqwerty @ Xdqwerty:
    cuz of score
  • Xdqwerty @ Xdqwerty:
    i think i first should focus more on beating the game rather than obtaining a high score
  • Xdqwerty @ Xdqwerty:
    good night
  • K3Nv2 @ K3Nv2:
    yawn
  • BigOnYa @ BigOnYa:
    -deleted-
  • K3Nv2 @ K3Nv2:
    Stop ctrl cing me
  • BigOnYa @ BigOnYa:
    Sorry, here ctrl-Z
  • K3Nv2 @ K3Nv2:
    Ctrl u 2 u
  • BigOnYa @ BigOnYa:
    Damn, that turned my tv channel, you got powers
  • K3Nv2 @ K3Nv2:
    The fbi will be knocking on your door soon
  • Psionic Roshambo @ Psionic Roshambo:
    They all went mad after looking at my browser history
  • BigOnYa @ BigOnYa:
    Why, cause beastiality is not legal in Florida yet?
  • K3Nv2 @ K3Nv2:
    @Psionic Roshambo, they rewrote the constitution when they saw your browser history
    K3Nv2 @ K3Nv2: @Psionic Roshambo, they rewrote the constitution when they saw your browser history