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
    559

    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
    559

    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
    559

    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
    559

    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 05: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 10: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 05:19:06 AM.
    http://bh-re-db.pcriot.com/ <- Biohazard / Resident Evil
    Code Database

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, 05:41:23 PM
  2. Artemis Project - GUI
    By Berion in forum Research & Development
    Replies: 22
    Last Post: 10-25-2009, 10:22:20 AM
  3. Project Artemis - Specifications
    By Lazy Bastard in forum Research & Development
    Replies: 23
    Last Post: 05-17-2009, 03:50:10 PM
  4. Team CodeMajic join Project Artemis!
    By Lazy Bastard in forum Research & Development
    Replies: 50
    Last Post: 01-28-2009, 09:27:33 PM
  5. Dev Project
    By -MIPs- in forum School of Hacking
    Replies: 19
    Last Post: 11-16-2006, 05:42:23 PM
Collapse this box.

Visitors found this page by searching for:

open ps2 loader 0.9

scph-102.bin

slps 25088 codebreaker

slps-25088 codebreaker

Slps-25088 armax

Codigos de final fantasy X international NTSCJ para codebreaker

artemis ps2 project and openps2loader

slps-25088 cheat

slps25088 game shark

SLPS-25088 CODEBREAKER item code

scph102c free download

artemis projectview error 9ffx slps 25088 cheatopenps2loader 0.9open-ps2-loader.0.9.elfpsone cpuFFGriefersps2 loader 0.9 finalSLPS-25088 gamesharkeurope v01.70(27022003) consoleslps-25088 freezefinal fantasy x international cheats codebreakerslps 25088 codebreaker codesSLUS-20694 Onimusha 3 cheat TXTffx SLPS-25088 codebreakerOpen PS2 Loader ProjectSLES-53702 codesps2cc gamesharksles-53702.pnachFinal Fantasy X international SLPS 25088 armax codesar max slps 25088final fantasy x international codebreakerproject artemis ps2project artemis ps2 downloadopenps2loader mods for silent hill 4cheats.txtx artemisfinal fanatasy 10 codemajic codes PS1DRV.ELFfinal fantasy x international slps-25088 codesdownload europe v01.70(27022003) consoleps2 cheat artemisPS2rd 0.5.3 slps 25088 gameshark codespnach pcsx2 final fantasy x slps-25088cheats.txt artemisonimusha 2 samurais destiny gameshark v4 codesfree download mcboot for latest version SCPh-90004CBps2sdk-portopenps2 r561open ps2 loader 0.9 r561ffx eu pnach cheatsgtlcpimp downloadsslus 20216 cheat gameshark codeps2rd.elfDownload SLES 53702.zipdownload free Europe v01.70(27022003)Consoleplaystation2 videolanps2rd confg settings to boot cheat.txt in massSLUS 20216 gameshark codeProject Artemis#ffx international cheat enginefinal fantasy x international (j) slps-25088 gamesharkhow to use codemajic with a crosover cableslps 25088 equipment codebreakeropen ps2 loader r561 downloadopen ps2 loader r561psp2 bios europe v01.70(27022003) ConsoleWWE SmackDown! Vs. RAW 2006 sles 53676 gamesharkslps 25088 pnachdownload ps1drv.elf bios europe v01.70 (2722003) consoleps2link protocolopen ps2 loader latest version free downloadopenps2loader cheatcodebreaker codes onimusha 4 ntscjonimusha 2 sles code breakercechzm1ffx slps 25088 gameshark codeffx international slps 25088 cheatsffx slps 25088 cheatsffx slps 25088 patchffx slps 25088 item cheatfinal fantasy x international [slps 25088] cheatsartemis projectview network portsdescargar mcboot open loader 0.9ffx international pnachcodebreaker ffx slpsSCES 53372ffgrieverfinal fantasy 10 international open loadercodebreaker para slps-25088onimusha dawn of dreams j codebreakerSLES-53982 MUwwe smackdown! vs. raw openps2loaderCode breaker Final fantasy X international PS2tourist trophy ntsc:us codebreakerfinal fantasy x pnach pcsx2ffx international gameshark elfntpb ps2ccslps-25088 [ffx international] codebreaker codepnatch final fantasy x ps2 downloadcodebreaker elf scph-75004 ntpbclient ps2 patchSLUS-20694 Onimusha3 チートSLUS-20694 cheat openps2loader ubuntu pingopen-ps2-loader 0.9 elfpcxs2 ffx cheats final fantasy x international [slps-25088] codebreakerfinal fantasy x international slps codebreaker SLPS-25088 code breakerartemis and openps2loaderslps-25088 codebreaker codesfinal fantasy x slps 25088 codesps2rd 0.5.1final fantasy x international slps-25088 codebreakescph 102.binopenps2loader compatibility wwe smackdown vs raw 2009dead to rights openps2loaderopen ps2 loader cheat engineslps-25088 memory cardartemis ps2 project patches functionArtemis download ps2code breaker final fantasy x slps 25088pnach final fantasy x international slps-25088elf final fantasy x international slps-25088flash tools 0.5.3 mediafirecodebreaker svr 2006 SLEScodebreaker all codes for onimusha dawn of dreams ntscj europe v01.70

Posting Permissions

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