wusst ja nicht das hier so viele politker kommen verschieben wäre dann angebracht jetzt
Beiträge von x10
-
-
finde das lied auf keinste weise rassistisch, er hat meiner meinung nach einfach alles auf den punkt gebracht...
-
http://srstats.com/statistics/capacity
server sind auf, aber kann nicht drauf oO? mit neustem update nicht und ohne auch nicht -
-
kann nicht sein, schau im autostart mal nach, vllt ist da iwas.
gib ausführen: msconfig ein
-
funzt wieder
-
wenn man ein fenster im zimmer hat, muss man nichtmal raus!
-
wer redet hier von botten ?
ich hatte mit meinem char spaß ..also auch mit dem geld ... genauso wie andere in wow ...
bin halt nich son 24/7 botter der nix mit dem char macht ...
ich würde es im leben nich bereuen ...
die leute, die es bereuen sind eigtl die dummen ...
denn die müssen ja vorher wissen ob sich der kauf für sie lohnt oder nich ? anscheinend hat sichs ja nich gelohnt ...das nenn ich dann einfach mal dumm^^also so nach dem motto ..einfach mal kaufen ...vill bringt mir das ja iwann mal was ...
ich hab mir damals zb bei serverneustart 500silk geholt, mit pet, prem usw voll durchgestartet ...
hatte ich viel spaß mit ...40euro für ein we voller spaß (mit freunden zs usw.) und später wurds dann mehr botten aber gelohnt hat sichs trotzdem ...anderer thread :
nö sro süchtig war ich noch nie ...
hab halt immer 24/7 gebottet
... früher wo wir noch keine bots hatten war mein höchster char 36 oder so ...süchtig war ich noch nie und ich bezweifel auch dass man von sro süchtig werden kann ..allein schon weil man da per hand sogut wie nix machen kann
-
wahrscheinlich nur der autoselect loader wo die range höher ist mit nem keypresser... xD
-
kann man irgendwie passwort für paysafecard einegebn bei sro.vn? für silk...?
-
Hat das noch jemand das addon?
Garry's Mod IPT Final (The perfect GMod fix.)Damit konnte man beheben, das wenn man zu zweit über hamachi spielt, man die selbe steam id hat und dann von sich gegenseitig die items löschen konnte...
der thread war: http://cs.rin.ru/forum/viewtopic.php?f=29&t=49619
aber er hats rausgenommen und finde es nirgendswo
-
ja ist 100% clean, gehen keine connections raus oder rein
-
I've seen few requests for the range patch so i wanted to do it. I guess the only way to patch it without bypassing gameguard is with injected dll, which need to be injected before gameguard loads. Gameguard detected the patch at startup (protection error), but if we wait the sro to be loaded we can modify the value of pointers with the injected dll. I tried patching static address, but game guard detected it few minutes later. That means zoomhack, etc are not possible.
Binarys: attached
scan: http://www.virustotal.com/file…6ffb15276ff86e-1307849807
source:
Esro Loader.dll.cpp
[cs]#include "windows.h"
[cs]#include "windows.h"void WriteMemory(DWORD address, LPVOID patch, DWORD size)
{
DWORD oldProtect;
VirtualProtect((LPVOID)address, 4, PAGE_EXECUTE_READWRITE, &oldProtect);
memcpy((LPVOID)address, patch, size);
}DWORD WINAPI PatchRangeThread(LPVOID lpParam) //need to wait for sro window or we get protection error
{
while(1)
{
HWND hWnd = FindWindowA("CLIENT", 0);
DWORD pid = 0;
GetWindowThreadProcessId(hWnd, &pid);
if(pid == GetCurrentProcessId())
break;Sleep(10);
}float range = 5000;
WriteMemory(0xD10678, &range, sizeof(float));return 0;
}BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
if(ul_reason_for_call == DLL_PROCESS_ATTACH)
{
CreateMutexA(0, 0, "Silkroad Online Launcher");
CreateMutexA(0, 0, "Ready");CreateThread(0, 0, &PatchRangeThread, 0, 0, 0);
}
return true;
}
[/cs]Esro Loader.cpp
[cs]#include
#include
#include
using namespace std;string OpenFile(char *filter = "sro_client.exe (*.exe*)")
{
OPENFILENAMEA ofn;
char fileName[MAX_PATH] = "";
ZeroMemory(&ofn, sizeof(ofn));ofn.lStructSize = sizeof(OPENFILENAME);
ofn.hwndOwner = NULL;
ofn.lpstrFilter = filter;
ofn.lpstrFile = fileName;
ofn.nMaxFile = MAX_PATH;
ofn.Flags = OFN_EXPLORER | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
ofn.lpstrDefExt = "";string fileNameStr;
if(GetOpenFileNameA(&ofn))
fileNameStr = fileName;return fileNameStr;
}void InjectDLL(HANDLE hProcess, LPCSTR lpszDLLPath)
{
DWORD dwMemSize = lstrlenA(lpszDLLPath) + 1;
LPVOID lpBaseAddr = VirtualAllocEx(hProcess, NULL, dwMemSize, MEM_COMMIT, PAGE_READWRITE);
WriteProcessMemory(hProcess, lpBaseAddr, lpszDLLPath, dwMemSize, NULL);
HMODULE hUserDLL = LoadLibraryA("kernel32.dll");
LPVOID lpFuncAddr = GetProcAddress(hUserDLL, "LoadLibraryA");
HANDLE hThread = CreateRemoteThread(hProcess, NULL, 0, (LPTHREAD_START_ROUTINE)lpFuncAddr, lpBaseAddr, 0, NULL);
WaitForSingleObject(hThread, INFINITE);
FreeLibrary(hUserDLL);
CloseHandle(hThread);
VirtualFreeEx(hProcess, lpBaseAddr, 0, MEM_RELEASE);
}HANDLE CreateSusProc(LPCSTR appName, LPSTR commandLine, LPCSTR dllPath)
{
STARTUPINFOA si;
PROCESS_INFORMATION pi;memset(&si, 0, sizeof(si));
CreateProcessA(appName, commandLine, 0, NULL, FALSE, CREATE_SUSPENDED, NULL, NULL, &si, &pi);
InjectDLL(pi.hProcess, dllPath);
return pi.hThread;
}int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
char dllpath[MAX_PATH];
GetCurrentDirectoryA(sizeof(dllpath), dllpath);
strcat_s(dllpath, "\\esroLoaderdll.dll");string args = " 0 /38 0 0";
string path = OpenFile();
path += args;
HANDLE hThread = CreateSusProc("sro_client.exe", (LPSTR)path.c_str(), dllpath);
ResumeThread(hThread);
return 0;
}
[/cs]quelle und dl link
http://www.elitepvpers.com/for…o-loader-range-patch.html
Meint ihr das funzt?
edit: grade selber ausprobiert, funzt
</iostream> -
Server Check um : 11:02 Uhr
Server ON um : 11:08 Uhr -
schon populated..xD
edit: voll
-
kurz vor 11 hab ich dc bekommen, dann war er check
-
das kannst du auch selber schnell ändern, lad dir autoit und änder die namen, das wars doch schon^^ dann suchste noch in google wie du es fabrlich hervorheben kannst. glaub mir du lernst was udn kannst es deinen wünschen anpassen
-
muss ich da nicht auf iwas achten? die passen rein wenn cih sie kaufe xD?
-
ddr3 möcht ich
-
Moin, möchte mir gerne 8gb Arbeitsspeicher zulegen, sollte unter 100 euro noch liegen und trozdem gut sein.
Welche Informationen braucht ihr alles, ich suche sie dann schnellst möglich zusammen.
Dankeedit aus everest gezogen:
Motherboard:
CPU Typ QuadCore Intel Core 2 Quad Q6600, 2400 MHz (9 x 267)
Motherboard Name MSI MS-7502 (Medion OEM)
Motherboard Chipsatz Intel Bearlake G33
Arbeitsspeicher 3072 MB
DIMM1: Swissbit SEU12864D4B72EP-30 1 GB DDR2-667 DDR2 SDRAM (5-5-5-15 @ 333 MHz) (4-4-4-12 @ 266 MHz) (3-3-3-9 @ 200 MHz)
DIMM2: SEU06464D4B71EP-30 512 MB DDR2-667 DDR2 SDRAM (5-5-5-15 @ 333 MHz) (4-4-4-12 @ 266 MHz) (3-3-3-9 @ 200 MHz)
DIMM3: Swissbit SEU12864D4B72EP-30 1 GB DDR2-667 DDR2 SDRAM (5-5-5-15 @ 333 MHz) (4-4-4-12 @ 266 MHz) (3-3-3-9 @ 200 MHz)
DIMM4: SEU06464D4B71EP-30 512 MB DDR2-667 DDR2 SDRAM (5-5-5-15 @ 333 MHz) (4-4-4-12 @ 266 MHz) (3-3-3-9 @ 200 MHz)
BIOS Typ Award (12/26/07)
Anschlüsse (COM und LPT) Kommunikationsanschluss (COM1)
Anschlüsse (COM und LPT) Kommunikationsanschluss (COM2)Anzeige:
Grafikkarte ATI Radeon HD 5700 Series (1024 MB)
Grafikkarte ATI Radeon HD 5700 Series (1024 MB)
Grafikkarte ATI Radeon HD 5700 Series (1024 MB)
3D-Beschleuniger ATI Radeon HD 5770 (Juniper)
Monitor Acer AL1916 [19" LCD] (L780C0544044)
Monitor PnP-Monitor (Standard) [NoDB] (010LNWQ12713)Multimedia:
Soundkarte ATI Radeon HDMI @ ATI Juniper/Broadway - High Definition Audio Controller
Soundkarte Realtek ALC888/1200 @ Intel 82801IB ICH9 - High Definition Audio Controller [A-2]Datenträger:
IDE Controller Standard AHCI 1.0 Serieller-ATA-Controller
Festplatte Generic Flash HS-CF USB Device
Festplatte Generic Flash HS-MS/SD USB Device
Festplatte Generic Flash HS-SM USB Device
Festplatte WDC WD5000AACS-00ZUB0 ATA Device (465 GB, IDE)
Optisches Laufwerk DTSoftBusCd00
Optisches Laufwerk HL-DT-ST DVDRAM GH20NS10 ATA Device (DVD+R9:10x, DVD-R9:10x, DVD+RW:20x/8x, DVD-RW:20x/6x, DVD-RAM:12x, DVD-ROM:16x, CD:48x/32x/48x DVD+RW/DVD-RW/DVD-RAM)
S.M.A.R.T. Festplatten-Status OKPartitionen:
C: (NTFS) 306.9 GB (104.9 GB frei)
D: (NTFS) 20481 MB (15930 MB frei)
E: (NTFS) 101.6 GB (101.5 GB frei)
Speicherkapazität 428.5 GB (222.0 GB frei)