Project 1999

Go Back   Project 1999 > Red Community > Red Rants and Flames

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 11-05-2011, 10:12 AM
Tamiah2011 Tamiah2011 is offline
Sarnak


Join Date: Aug 2011
Posts: 290
Default Player hacking still in pvp

R99 and staff we still have a few player using some type of run hack, Had a few player outrunning a 50 lvl druid with there Jboots.Its either some type of run hack or a problem with programming, 50lvl sow should have np keeping up with jbppt speed unless it bard speed. 1 player was necro(gnome) and other player was a pally(Dwarf), maybe a short player issue...
  #2  
Old 11-05-2011, 12:13 PM
PVPBetaChamps PVPBetaChamps is offline
Banned


Join Date: Oct 2011
Posts: 152
Default

could have been a dual core issue

wrong forum btw, dumb fuck
  #3  
Old 11-05-2011, 03:31 PM
Bkab Bkab is offline
Sarnak

Bkab's Avatar

Join Date: Oct 2011
Location: Ohio
Posts: 307
Default

tamiah here you go pal, please read this and follow the steps accordingly.
http://uncyclopedia.wikia.com/wiki/HowTo:Commit_Suicide
__________________
  #4  
Old 11-05-2011, 04:30 PM
Naez 4.20 Naez 4.20 is offline
Banned


Join Date: Oct 2011
Location: s0cal
Posts: 99
Send a message via ICQ to Naez 4.20 Send a message via AIM to Naez 4.20 Send a message via MSN to Naez 4.20 Send a message via Yahoo to Naez 4.20
Default

We have modified the Flower Power cheat engine.

[You must be logged in to view images. Log in or Register.]

CTRL+INS: Decrease Runspeed
CTRL+HOME: Increase Runspeed
CTRL+PgUp: Increase Z-Axis by 1
CTRL+PgDwn: Decrease Z-Axis by 1
CTRL+END: Turn on No Fall DMG
CTRL+DEL: Turn on zero gravity

PHP Code:
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;

namespace 
ProcessMemoryReaderLib
{
    
/// <summary>
    /// ProcessMemoryReader is a class that enables direct reading a process memory
    /// </summary>
    
class ProcessMemoryReaderApi
    
{
        
// constants information can be found in <winnt.h>
        
[Flags]
        public 
enum ProcessAccessType
        
{
            
PROCESS_TERMINATE = (0x0001),
            
PROCESS_CREATE_THREAD = (0x0002),
            
PROCESS_SET_SESSIONID = (0x0004),
            
PROCESS_VM_OPERATION = (0x0008),
            
PROCESS_VM_READ = (0x0010),
            
PROCESS_VM_WRITE = (0x0020),
            
PROCESS_DUP_HANDLE = (0x0040),
            
PROCESS_CREATE_PROCESS = (0x0080),
            
PROCESS_SET_QUOTA = (0x0100),
            
PROCESS_SET_INFORMATION = (0x0200),
            
PROCESS_QUERY_INFORMATION = (0x0400)
        }

        
// function declarations are found in the MSDN and in <winbase.h> 

        //        HANDLE OpenProcess(
        //            DWORD dwDesiredAccess,  // access flag
        //            BOOL bInheritHandle,    // handle inheritance option
        //            DWORD dwProcessId       // process identifier
        //            );
        
[DllImport("kernel32.dll")]
        public static 
extern IntPtr OpenProcess(UInt32 dwDesiredAccessInt32 bInheritHandleUInt32 dwProcessId);

        
//        BOOL CloseHandle(
        //            HANDLE hObject   // handle to object
        //            );
        
[DllImport("kernel32.dll")]
        public static 
extern Int32 CloseHandle(IntPtr hObject);

        
//        BOOL ReadProcessMemory(
        //            HANDLE hProcess,              // handle to the process
        //            LPCVOID lpBaseAddress,        // base of memory area
        //            LPVOID lpBuffer,              // data buffer
        //            SIZE_T nSize,                 // number of bytes to read
        //            SIZE_T * lpNumberOfBytesRead  // number of bytes read
        //            );
        
[DllImport("kernel32.dll")]
        public static 
extern Int32 ReadProcessMemory(IntPtr hProcessIntPtr lpBaseAddress, [InOutbyte[] bufferUInt32 sizeout IntPtr lpNumberOfBytesRead);

        
//        BOOL WriteProcessMemory(
        //            HANDLE hProcess,                // handle to process
        //            LPVOID lpBaseAddress,           // base of memory area
        //            LPCVOID lpBuffer,               // data buffer
        //            SIZE_T nSize,                   // count of bytes to write
        //            SIZE_T * lpNumberOfBytesWritten // count of bytes written
        //            );
        
[DllImport("kernel32.dll")]
        public static 
extern Int32 WriteProcessMemory(IntPtr hProcessIntPtr lpBaseAddress, [InOutbyte[] bufferUInt32 sizeout IntPtr lpNumberOfBytesWritten);


    }

    public class 
ProcessMemoryReader
    
{

        public 
ProcessMemoryReader()
        {
        }

        
/// <summary>    
        /// Process from which to read        
        /// </summary>
        
public Process ReadProcess
        
{
            
get
            
{
                return 
m_ReadProcess;
            }
            
set
            
{
                
m_ReadProcess value;
            }
        }

        private 
Process m_ReadProcess null;

        private 
IntPtr m_hProcess IntPtr.Zero;

        public 
void OpenProcess()
        {
            
//            m_hProcess = ProcessMemoryReaderApi.OpenProcess(ProcessMemoryReaderApi.PROCESS_VM_READ, 1, (uint)m_ReadProcess.Id);
            
ProcessMemoryReaderApi.ProcessAccessType access;
            
access ProcessMemoryReaderApi.ProcessAccessType.PROCESS_VM_READ
                
ProcessMemoryReaderApi.ProcessAccessType.PROCESS_VM_WRITE
                
ProcessMemoryReaderApi.ProcessAccessType.PROCESS_VM_OPERATION;
            
m_hProcess ProcessMemoryReaderApi.OpenProcess((uint)access1, (uint)m_ReadProcess.Id);
        }

        public 
void CloseHandle()
        {
            
int iRetValue;
            
iRetValue ProcessMemoryReaderApi.CloseHandle(m_hProcess);
            if (
iRetValue == 0)
                throw new 
Exception("CloseHandle failed");
        }

        public 
byte[] ReadProcessMemory(IntPtr MemoryAddressuint bytesToReadout int bytesRead)
        {
            
byte[] buffer = new byte[bytesToRead];

            
IntPtr ptrBytesRead;
            
ProcessMemoryReaderApi.ReadProcessMemory(m_hProcessMemoryAddressbufferbytesToReadout ptrBytesRead);

            
bytesRead ptrBytesRead.ToInt32();

            return 
buffer;
        }

        public 
void WriteProcessMemory(IntPtr MemoryAddressbyte[] bytesToWriteout int bytesWritten)
        {
            
IntPtr ptrBytesWritten;
            
ProcessMemoryReaderApi.WriteProcessMemory(m_hProcessMemoryAddressbytesToWrite, (uint)bytesToWrite.Lengthout ptrBytesWritten);

            
bytesWritten ptrBytesWritten.ToInt32();
        }




    }

  #5  
Old 11-05-2011, 04:42 PM
Smedy Smedy is offline
Planar Protector

Smedy's Avatar

Join Date: Mar 2011
Posts: 4,577
Default

notacult totally a cult
__________________
Quote:
Originally Posted by Slathar View Post
you clean plaque off peoples teeth for a living and are only able to do that because your daddy hired you. your waist is also wider than your shoulders and you’re 5’2.
Videos
Wipe it clean.
  #6  
Old 11-05-2011, 11:55 PM
Tamiah2011 Tamiah2011 is offline
Sarnak


Join Date: Aug 2011
Posts: 290
Default

I am guessing more then half the player on R99 are using some type of hack program atm, It amazes me how fare people will go to cheat such a simple game.Waiting on the bann hammer for theses cheaters for good.
  #7  
Old 11-06-2011, 12:04 AM
Bkab Bkab is offline
Sarnak

Bkab's Avatar

Join Date: Oct 2011
Location: Ohio
Posts: 307
Default

i am guessing you have down syndrome, you were dropped on your head, your mother smoked and drank alcohol while pregnant with you, or you played with lead paint toys and ate paint chips as a kid. or all of the above.
__________________
  #8  
Old 11-06-2011, 06:42 AM
Glam Glam is offline
Aviak

Glam's Avatar

Join Date: Oct 2009
Location: Kungälv
Posts: 85
Default

Bkak is so ful of shit that no one even come close to be so stupid as him.... He most be the only one missing to get a brain when gud was dealing it out..... he just get a bottle ful of shit......
__________________
//Glam SK Troll "Europa"(Swedish Viking in red plate)
Plutten Hfl Drood (The Dog Hunter)
  #9  
Old 11-06-2011, 06:49 AM
Rogean Rogean is offline
¯\_(ツ)_/¯

Rogean's Avatar

Join Date: Oct 2009
Location: Massachusetts
Posts: 5,381
Default

Lol is that C#?

What a joke...
__________________
Sean "Rogean" Norton
Project 1999 Co-Manager

Project 1999 Setup Guide
  #10  
Old 11-06-2011, 09:06 AM
Smedy Smedy is offline
Planar Protector

Smedy's Avatar

Join Date: Mar 2011
Posts: 4,577
Default

Rogean checked your ones and zeros and laughed naez, that's what u get for tryin 2 be l33t
__________________
Quote:
Originally Posted by Slathar View Post
you clean plaque off peoples teeth for a living and are only able to do that because your daddy hired you. your waist is also wider than your shoulders and you’re 5’2.
Videos
Wipe it clean.
Closed Thread


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


All times are GMT -4. The time now is 07:46 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.