+ Reply to Thread
Page 41 of 42 FirstFirst ... 313233343536373839404142 LastLast
Results 401 to 410 of 419

Thread: Project Artemis

  1. #401
    Join Date
    Aug 2009
    Location
    France
    Posts
    6

    Default

    Quote Originally Posted by misfire View Post
    Igbal, your Perl version is rather old (5.6.2 was released in November 2003). I recommend updating to ActivePerl 5.10, which you can run from MinGW too.
    Ok, I'll do it.

    I used to use cygwin (which has a kind of automated packaging system) but only few software are compatible with it (minGW and cygwin work differently).
    When you have to set up minGW, either you use the "MinGW Installer" (v5.1.6 2009-10-02) or you download each package and try to extract them in the right folder.
    It's very annoying to do that manually and you have to fight with dependencies (a need b.dll but what zip contains it ?)

    I think they lack people to pack and keep up-to-date all that stuff.

    Anyway, thanks for your reply

  2. #402
    Join Date
    Sep 2006
    Location
    Germany
    Posts
    549

    Default

    Any success?

    With PS2rd r561, ntpbclient explicitly requires Perl 5.10 or higher.

  3. #403
    Join Date
    Aug 2009
    Location
    France
    Posts
    6

    Default

    No, sorry.

    Here is what I did :

    remove svn-ps2rd
    open a MINGW32 bash
    hg clone http://bitbucket.org/misfire/ps2rd svn-ps2rd
    cd svn-ps2rd

    I s/GetSyscallHandler/GetSyscall/g 'ed some files as it seems my PS2SDK is a bit old now

    make release

    Dragged and dropped svn-ps2rd\release\ps2rd-0.5.3-wip in RadHostClient

    Switch on the PStwo and put (the first) Ratchet&Clank CD in
    uLE
    host:/ps2rd-0.5.3-wip/ps2/ps2rd.elf
    ...Ready...
    [CROSS]

    a) I ran "perl ntpbclient halt"
    nothing happened
    so ^C

    b) I ran "perl ntpbclient dump 1 10 test.txt"
    nothing
    ^C
    test.txt : 0 bytes

    Here are attached network logs for a) and b) from wireshark
    I started recording just after pressing [CROSS] but I may have missed a packet

    PC : 192.168.0.1
    PS2: 192.168.0.10

    Hope it will help you
    Attached Files Attached Files

  4. #404
    Join Date
    Sep 2006
    Location
    Germany
    Posts
    549

    Default

    First, I really recommend building against a recent PS2SDK version; otherwise, there could be unforeseen side effects.

    Did you enable auto hooking or activated a proper master code? Each game must be hooked for debugging/cheating.
    I have no idea if Ratchet & Clank is even supported, see compatibility list:
    http://bitbucket.org/misfire/ps2rd/wiki/Compat
    Also try a different game.

    Last but not least, this will crash your PS2: perl ntpbclient dump 1 10 test.txt
    You're trying to dump from address 1 to 10 to a text file. But user memory starts at 0x00080000 and it's definitely no text format...

  5. #405
    Join Date
    Aug 2009
    Location
    France
    Posts
    6

    Default

    First, I really recommend building against a recent PS2SDK version; otherwise, there could be unforeseen side effects.
    I'm using http://gshi.org/downloads/gshi_ps2sdk.7z.
    I compiled PS2SDK from svn on my Ubuntu Lucid and recompiled ps2rd : no luck.
    It's maybe a hardware bug as I'm using the SCPH-75004 PSTwo and seems the only one facing this problem.

    Did you enable auto hooking or activated a proper master code? Each game must be hooked for debugging/cheating.
    My understanding was :
    - ps2rd.elf is a kind of server (PS2 side) which handles requests from ntpbclient
    - with ntpbclient, we send commands to the server (start, stop, dump)
    - we receive data (dumps), compare them, and find some interesting addresses
    - once we have these addresses, we need a 'master code' to make a specific code (an address forced to a specified value) apply

    But I don't see these features with ntpbclient.
    We can only dump, not write.
    Is it a regression ? ps2cc allowed this.

    I have no idea if Ratchet & Clank is even supported, see compatibility list:
    http://bitbucket.org/misfire/ps2rd/wiki/Compat
    Also try a different game.
    I tried with FFXII but still nothing so I'm having issues others don't have.

    Last but not least, this will crash your PS2: perl ntpbclient dump 1 10 test.txt
    You're trying to dump from address 1 to 10 to a text file. But user memory starts at 0x00080000 and it's definitely no text format...
    The purpose of this command was just to see "transferring data" that is to say : prove that the server is running and responding to my requests.

    I don't get by receiving anything.
    With ps2cc, I can see "client connected" which prove me that the server is alive but then I'm stuck with a "recv error" (the server never sends anything)

    In that way, I think a "ping" feature would be great.

  6. #406
    Join Date
    Sep 2006
    Location
    Germany
    Posts
    549

    Default

    The gshi_ps2sdk.7z package is rather outdated. Get a fresh and crispy toolchain from http://bitbucket.org/ps2dev/ps2toolchain.

    Your understanding is basically right, but you always need to hook the game, no matter if you're debugging or just cheating. (The debugger code is actually called by the cheat engine.)

    You're right that writing to PS2 memory is not supported at the moment; it's on the to-do list.

    I'm using "ntpbclient halt/resume" to see if a game is compatible. You could also run the standard ping command to see if PS2's network stack is up and running.

  7. #407
    Join Date
    Sep 2006
    Location
    Germany
    Posts
    549

    Default

    I just released PS2rd 0.5.3 which mainly adds support for Open PS2 loader:
    http://debugon.org/2010/08/ps2rd-0-5-3/

    A list of all changes:
    Code:
    - Improved compatibility with Open PS2 Loader; cheat system and video mode
      patcher integrate flawlessly.
    - Added ability to select game cheats manually (press up/down).
    - Activated cheats are now copied to cheat engine only once.
    - Added code type E for compatibility with other cheat systems.
    - Fixed freezing when there's no game in drive.
    - Added quick hack to enable launching ELFs from mass (to be improved).
    - Clear screen if Y>25.
    - Moved setting cheats.file to loader.cheats.

  8. #408
    Join Date
    Aug 2008
    Posts
    334

    Default

    I was trying to think of an easy way to automatically set the Search Area in ps2cc today after the initial dump, I was thinking something along the lines of check initial dump results tab column / row 1 address and times by the found number to find the end address for the second search and so on sorry if this sounds too obvious.
    Last edited by kh2k4; 12-08-2010 at 06:01:04 PM.

  9. #409
    Join Date
    Aug 2008
    Posts
    334

    Default

    I think i've found a bug in PS2rd when I write these codes to separate cheat names
    Texture Mapping isn't effected but if I put them both under the same cheat name, it works , I'm using a scepadread memcpy mastercode the same also happens for auto-hook.

    Example
    SCPH-50003 V9 Europe v01.70 (27/02/2003) - Extracted OSDSYS ELF Mastercode
    902536fc 0c098c37

    PlayStation Driver
    00365358 0000000? - Disc Speed (0=Standard, 1=Fast)
    0036535C 0000000? - Texture Mapping (0=Standard, 1=Smooth)
    Last edited by kh2k4; 02-01-2011 at 11:26:55 AM.

  10. #410
    Join Date
    Aug 2008
    Posts
    334

    Default

    Tumbleweed gently blows past , seriously it's like a cemetery around here somebody say something at least, has PS2rd suspended development due in parts to devs concentrating more on OPS2L?
    Last edited by kh2k4; 02-19-2011 at 06:19:06 AM.
    http://bh-re-db.pcriot.com/ <- Biohazard / Resident Evil
    Code Database

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Project Artemis: Live PS2 Hacking System
    By Lazy Bastard in forum Last Generation & Retro Hacking
    Replies: 5
    Last Post: 08-08-2010, 06:41:23 PM
  2. Artemis Project - GUI
    By Berion in forum Research & Development
    Replies: 22
    Last Post: 10-25-2009, 11:22:20 AM
  3. Project Artemis - Specifications
    By Lazy Bastard in forum Research & Development
    Replies: 23
    Last Post: 05-17-2009, 04:50:10 PM
  4. Team CodeMajic join Project Artemis!
    By Lazy Bastard in forum Research & Development
    Replies: 50
    Last Post: 01-28-2009, 10:27:33 PM
  5. Dev Project
    By -MIPs- in forum School of Hacking
    Replies: 19
    Last Post: 11-16-2006, 06:42:23 PM
Collapse this box.

Visitors found this page by searching for:

scph-102.bin

open ps2 loader 0.9

slps 25088 codebreaker

slps-25088 codebreaker

artemis ps2 project and openps2loader

slps25088 game shark

scph102c free download

SLPS-25088 CODEBREAKER item code

final fantasy x international cheats codebreaker

Final Fantasy X international SLPS 25088 armax codes

FFGriefers

slps 25088 codebreaker codes

artemis projectview error 9

SLES-53702 codes

ffx SLPS-25088 codebreaker

slps-25088 freeze

ps2cc gameshark

ar max slps 25088

SLPS-25088 gameshark

SLUS-20694 Onimusha 3 cheat TXT

psone cpu

europe v01.70(27022003) console

download free Europe v01.70(27022003)Consoleslps 25088 equipment codebreakerDownload SLES 53702.zipopen ps2 loader r561 downloadps2rd.elfopen ps2 loader r561ffx international cheat engineslus 20216 cheat gameshark codegtlcpimp downloadsProject Artemis#ps2 cheat artemisPS2rd 0.5.3 onimusha 2 samurais destiny gameshark v4 codesdownload europe v01.70(27022003) consolecheats.txt artemischeats.txtx artemisproject artemis ps2 downloadpsp2 bios europe v01.70(27022003) ConsoleWWE SmackDown! Vs. RAW 2006 sles 53676 gamesharkdownload ps1drv.elfplaystation2 videolanps2rd confg settings to boot cheat.txt in mass bios europe v01.70 (2722003) consoleSLUS 20216 gameshark codeslps 25088 pnachhow to use codemajic with a crosover cableSLPS-25088 code breakerfinal fantasy x international slps codebreaker final fantasy x international [slps-25088] codebreakerpcxs2 ffx cheatsopen-ps2-loader 0.9 elfopenps2loader ubuntu pingSLUS-20694 cheat SLUS-20694 Onimusha3 チートntpbclient ps2 patchps2rd 0.5.1final fantasy x international slps-25088 codebreakescph 102.bincodebreaker all codes for onimusha dawn of dreams ntscj cechzm1SLES-53982 MUffgrieverps2link protocolartemis and openps2loaderslps-25088 codebreaker codesfinal fantasy x international (j) slps-25088 gamesharkopen ps2 loader 0.9 r561openps2 r561final fantasy x international codebreakerproject artemis ps2openps2loader mods for silent hill 4final fanatasy 10 codemajic codes PS1DRV.ELFps2sdk-portfree download mcboot for latest version SCPh-90004CBfinal fantasy x international slps-25088 codespnach pcsx2 final fantasy x slps-25088slps 25088 gameshark codesopenps2loader 0.9europe v01.70final fantasy x slps 25088 codesSCES 53372

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts