Go Back  
Reply
 
Thread Tools
Old 10-31-2011   #21
ryant001
Member
 
Join Date: Oct 2011
Posts: 427
Likes: 115
Liked 218 Times in 140 Posts
Mentioned: 18 Post(s)
Tagged: 0 Thread(s)
i guess that if you don't have the act.dat anymore then this app won't do you any good, right?
ryant001 is offline   Reply With Quote
Old 10-31-2011   #22
Breamer
Apprentice
 
Join Date: Sep 2010
Posts: 14
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
I use kmeaw, but consider rebug because of this.

1.Is it easy to install rebug, and then back to kmeaw if I want that later?

2.Does everything just work as easy on rebug as on kmeaw?

3.Is there any problems with flaws or negative aspects with rebug?
Breamer is offline   Reply With Quote
Old 10-31-2011   #23
AugustSKY
Member
null
 
Join Date: Oct 2010
Posts: 36
Likes: 20
Liked 6 Times in 4 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Originally Posted by Breamer View Post
1.Is it easy to install rebug, and then back to kmeaw if I want that later
Yes.


Originally Posted by Breamer View Post
2.Does everything just work as easy on rebug as on kmeaw?
Yes.

Originally Posted by Breamer View Post
3.Is there any problems with flaws or negative aspects with rebug?
No.
AugustSKY is offline   Reply With Quote
Old 10-31-2011   #24
jbald
Member
 
Join Date: Oct 2011
Location: Viçosa, Alagoas, Brazil
Posts: 145
Likes: 26
Liked 13 Times in 10 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Originally Posted by Breamer View Post
I use kmeaw, but consider rebug because of this.

1.Is it easy to install rebug, and then back to kmeaw if I want that later?

2.Does everything just work as easy on rebug as on kmeaw?

3.Is there any problems with flaws or negative aspects with rebug?
there is a tutorial made by @itskamel teaching how to install the rebug cfw. you just need search in the forum
jbald is offline   Reply With Quote
Old 10-31-2011   #25
darklinkpower
Apprentice
 
Join Date: Mar 2011
Posts: 3
Likes: 1
Liked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
It works!! Tested on Kmeaw, i was a little afraid, but i tried it and it worked flawlessly. Just make sure to copy the correct vsh.self and there will be no problems
darklinkpower is offline   Reply With Quote
Old 10-31-2011   #26
RazorX
Apprentice
 
Join Date: Sep 2010
Posts: 7
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
someone should make a tcl file for ps3mfw builder that patches the vsh.self instead of having to replace your vsh.self which is dangerous then you could just build it in to your cfw
RazorX is offline   Reply With Quote
Old 10-31-2011   #27
just_idle
Member
 
Join Date: Oct 2011
Posts: 92
Likes: 3
Liked 10 Times in 8 Posts
Mentioned: 3 Post(s)
Tagged: 0 Thread(s)
Originally Posted by RazorX View Post
someone should make a tcl file for ps3mfw builder that patches the vsh.self instead of having to replace your vsh.self which is dangerous then you could just build it in to your cfw
i've made one for only the vsh.self, but it is hard for me to adopt it for rebug on the cexsp and swp file. some help??
thought about a file rename?


ReActPSN 2.0 ps3mfw-builder task for 3.55 fw RETAIL only Download:


http://www.megaupload.com/?d=SPMLZLZD

edit:
what's wrong with front page article?

Last edited by just_idle; 11-01-2011 at 12:36 AM.
just_idle is offline   Reply With Quote
Old 11-01-2011   #28
RazorX
Apprentice
 
Join Date: Sep 2010
Posts: 7
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
OMG thats so funny ive just made one and its virtually identical lol

Click here to see full text
#!/usr/bin/tclsh
#
# ps3mfw -- PS3 MFW creator
#
# Copyright (C) Anonymous Developers (Code Monkeys)
#
# This software is distributed under the terms of the GNU General Public
# License ("GPL") version 3, as published by the Free Software Foundation.
#

# Created By RazorX

# Priority: 700
# Description: Patch PSN Activator

# Option --allow-activating-psn: Patch to allow activating psn content offline

# Type --allow-activating-psn: boolean

namespace eval :atch_vsh_psn {

array set :atch_vsh_psn::options {
--allow-activating-psn true
}

proc main { } {
set self [file join dev_flash vsh module vsh.self]

::modify_devflash_file $self :atch_vsh_psn:atch_self
}

proc patch_self {self} {
if {!$:atch_vsh_psn::options(--allow-activating-psn)} {
log "WARNING: Enabled task has no enabled option" 1
} else {
::modify_self_file $self :atch_vsh_psn:atch_elf
}
}

proc patch_elf {elf} {
if {$:atch_vsh_psn::options(--allow-activating-psn)} {
log "Patching [file tail $elf] to allow activating psn content offline"

set offset "0x30b230"
set search "\x4b\xcf\x5b\x45"
set replace "\x38\x60\x00\x00"

catch_die {:atch_elf $elf $search 0 $replace} "Unable to patch self [file tail $elf]"

set offset "0x30ac90"
set search "\x48\x31\xb4\x65"
set replace "\x38\x60\x00\x00"

catch_die {:atch_elf $elf $search 20 $replace} "Unable to patch self [file tail $elf]"

log "WARNING: activating psn content offline requires reActPSN application" 1
}
}
}


how funny is that
RazorX is offline   Reply With Quote
Old 11-01-2011   #29
just_idle
Member
 
Join Date: Oct 2011
Posts: 92
Likes: 3
Liked 10 Times in 8 Posts
Mentioned: 3 Post(s)
Tagged: 0 Thread(s)
i'm no genius on self creation, but manipulation...

edit
anyways, need help on cexsp and swp file for rebug, please. maybe to use a file rename, but how do this?

Last edited by just_idle; 11-01-2011 at 12:41 AM.
just_idle is offline   Reply With Quote
Old 11-01-2011   #30
RazorX
Apprentice
 
Join Date: Sep 2010
Posts: 7
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
ive made a few tcl files but never one that replaces hex code so i wasnt sure how at first
RazorX is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



PS3Hax.net is Copyright © 2010-2013.
Use of this site is governed by our Terms of Use and Privacy Policy. All Trademarks and images are owned by their respected owners.
Posts and links are subject to each author on this forum and are no way affiliated with the operations and/or opinions of ps3hax.net
All times are GMT -5. The time now is 07:27 AM.