Üzenetek megjelenítése

Ez a szekció lehetővé teszi a felhasználó által írt összes hozzászólás megtekintését. Vedd figyelembe, hogy csak azokba a fórumokba írt hozzászólásokat látod, amelyekhez hozzáférésed van.


Üzenetek - tja

Oldalak: 1 [2] 3 4 ... 8
16
Segítségkérés / Sa-MP win7-en
« Dátum: 2011. március 11. - 21:20:09 »
Akkor kompatibilításon állíts. Vagy nyisd meg MTA-t és ott tudod állítani a grafot. Úgy marad samp-ben is.

17
Segítségkérés / Sa-MP win7-en
« Dátum: 2011. március 11. - 21:14:37 »
Kompatibilitást is lehet állítgatni ha nem jó.

18
Segítségkérés / GetIpCounty Ladminba! 1error string already defined
« Dátum: 2011. március 11. - 21:12:44 »
2szer deklaráltad a stringet. Próbáld meg így:
 
//729 sor! public OnPlayerConnect(playerid)
{
new //Kezdõdik a GetIpCountry Connect része
    MaxPlayers = GetMaxPlayers(),
    IP[16];
GetPlayerIp(playerid, IP, sizeof IP);
format(string, sizeof string, \"  {FFFF00}%s {00FF00}Csatlakozott a szerverhez.| {FFFFFF}Ország: {AAFFCC}%s|\", jatekosnev(playerid), GetIpCountry(IP));
for(new p; p < MaxPlayers; p++)
{
    if(!IsPlayerConnected(p) || p == playerid) continue;
    SendClientMessage(p, 0x00CEE23A, string);
}
format(string, sizeof string, \" %s IP Adress: %s |\", string, IP);
SendClientMessage(playerid, 0x00CEE23A, string);
//Vége a GetIpCountry Connect részének
PlayerInfo[playerid][Deaths] = 0;
PlayerInfo[playerid][Kills] = 0;
PlayerInfo[playerid][Jailed] = 0;
PlayerInfo[playerid][Frozen] = 0;
PlayerInfo[playerid][Level] = 0;
PlayerInfo[playerid][LoggedIn] = 0;
PlayerInfo[playerid][Registered] = 0;
PlayerInfo[playerid][God] = 0;
PlayerInfo[playerid][GodCar] = 0;
PlayerInfo[playerid][TimesSpawned] = 0;
PlayerInfo[playerid][Muted] = 0;
PlayerInfo[playerid][MuteWarnings] = 0;
PlayerInfo[playerid][Warnings] = 0;
PlayerInfo[playerid][Caps] = 0;
PlayerInfo[playerid][DoorsLocked] = 0;
PlayerInfo[playerid][pCar] = -1;
for(new i; i<PING_MAX_EXCEEDS; i++) PlayerInfo[playerid][pPing] = 0;
PlayerInfo[playerid][spamCount] = 0;
PlayerInfo[playerid][spamTime] = 0;
PlayerInfo[playerid][PingCount] = 0;
PlayerInfo[playerid][PingTime] = 0;
PlayerInfo[playerid][FailLogin] = 0;
PlayerInfo[playerid][ConnectTime] = gettime();
//------------------------------------------------------
//770!!! sor: new PlayerName[MAX_PLAYER_NAME], string[128], str[128], file[256];
GetPlayerName(playerid, PlayerName, MAX_PLAYER_NAME);
new tmp3[50]; GetPlayerIp(playerid,tmp3,50);

19
Segítségkérés / Sa-MP win7-en
« Dátum: 2011. március 11. - 21:08:51 »
Lehet hogy nem oldja meg de 1 próbát megér.
Töröld a Dokumentumok mappából a \"GTA San Andreas User Files\" mappát.

20
SA-MP: Szerverfejlesztés / sSpeedoMeter
« Dátum: 2011. március 11. - 20:02:14 »
Nekem is bejön.

21
Fórum Archívum (Témák/Fórumok) / Töröld légyszíves!
« Dátum: 2011. március 11. - 20:00:19 »
Nem, az foreach.
A hiba pedig hogy SetPlayerToFacePlayer-ként van deklarálva.
Vagyis a SetPlayerFaceToPlayer-t cseréld le SetPlayerToFacePlayer-re.

22
Segítségkérés / meik a legjobb admin script?
« Dátum: 2011. március 11. - 15:43:25 »
Amit magadnak írsz :D

23
Pluginok és Programok / [Forráskód c#] Memória hack
« Dátum: 2011. március 11. - 15:42:57 »
Valójában a system32 fájlokból szedi ki az infót, és azt módosítja..
Singleplayerbe mûködik(teszteltem), samp-ba nem tudom. Már vagy 3 hónapja nem sampoztam :S

24
Pluginok és Programok / [Forráskód c#] Memória hack
« Dátum: 2011. március 11. - 14:59:04 »
Gondoltam hogy ha kurta leírta a c++ost, leírom én is a c#-ost.
 
#region hack
// C# Signature for the FindWindow() API
[DllImport(\"USER32.DLL\")]
public static extern IntPtr FindWindow(
   string lpClassName,
   string lpWindowName
);
// C# Signature for the WriteProcessMemory() API
[DllImport(\"kernel32.dll\")]
static extern bool WriteProcessMemory(
   IntPtr hProcess,
   IntPtr lpBaseAddress,
   byte[] lpBuffer,
   UIntPtr nSize,
   out IntPtr lpNumberOfBytesWritten
);
// C# Signature for the OpenProcess() API
[DllImport(\"kernel32.dll\")]
public static extern IntPtr OpenProcess(
   UInt32 dwDesiredAccess,
   Int32 bInheritHandle,
   UInt32 dwProcessId
);
// C# Signature for the GetWindowThreadProcessId() API
[DllImport(\"user32.dll\", SetLastError = true)]
static extern uint GetWindowThreadProcessId(
   IntPtr hWnd,
   out uint lpdwProcessId
);
#endregion
public static bool EditMemory(int Address, uint Value) {
   UInt32 ProcID;
   IntPtr bytesout;
   IntPtr WindowHandle = FindWindow(null, \"GTA: San Andreas\");
   if (WindowHandle == null) { return false; }
   GetWindowThreadProcessId(WindowHandle, out ProcID);
   IntPtr ProcessHandle = OpenProcess(0x1F0FFF, 1, ProcID);
   WriteProcessMemory(ProcessHandle, (IntPtr)Address, BitConverter.GetBytes(Value), (UIntPtr)sizeof(uint), out bytesout);
   return true;
}

 
Szükség lehet még erre is:
 
using System.Runtime.InteropServices;

 
Példa a használatra:
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace codhack {
public class ButtonclsForm : System.Windows.Forms.Form {
private System.Windows.Forms.Button button1;
public ButtonclsForm() {
   Text = \"Gta San Andreas pénz hack. by straY\'\";
   ShowInTaskbar = true;
   //Button
   this.button1 = new Button();
   this.button1.Text = \"Add a pénzem!\";
   this.button1.Name = \"button1\";
   this.button1.Size = new System.Drawing.Size(72, 30);
   this.button1.Location = new System.Drawing.Point((ClientRectangle.Width - button1.Size.Width) / 2, ClientRectangle.Height - 60);
   this.Controls.AddRange(new System.Windows.Forms.Control[] { this.button1 });
   this.button1.Click += new System.EventHandler(btnMoney_Click);
}
static public void Main() {
   Application.Run(new ButtonclsForm() );
}
#region hack files
// C# Signature for the FindWindow() API
[DllImport(\"USER32.DLL\")]
public static extern IntPtr FindWindow(
   string lpClassName,
   string lpWindowName
);
// C# Signature for the WriteProcessMemory() API
[DllImport(\"kernel32.dll\")]
static extern bool WriteProcessMemory(
   IntPtr hProcess,
   IntPtr lpBaseAddress,
   byte[] lpBuffer,
   UIntPtr nSize,
   out IntPtr lpNumberOfBytesWritten
);
// C# Signature for the OpenProcess() API
[DllImport(\"kernel32.dll\")]
public static extern IntPtr OpenProcess(
   UInt32 dwDesiredAccess,
   Int32 bInheritHandle,
   UInt32 dwProcessId
);
// C# Signature for the GetWindowThreadProcessId() API
[DllImport(\"user32.dll\", SetLastError = true)]
static extern uint GetWindowThreadProcessId(
   IntPtr hWnd,
   out uint lpdwProcessId
);
#endregion
public static bool EditMemory(int Address, uint Value) {
   UInt32 ProcID;
   IntPtr bytesout;
   IntPtr WindowHandle = FindWindow(null, \"GTA: San Andreas\");
   if (WindowHandle == null) { return false; }
   GetWindowThreadProcessId(WindowHandle, out ProcID);
   IntPtr ProcessHandle = OpenProcess(0x1F0FFF, 1, ProcID);
   WriteProcessMemory(ProcessHandle, (IntPtr)Address, BitConverter.GetBytes(Value), (UIntPtr)sizeof(uint), out bytesout);
   return true;
}
private void btnMoney_Click(object sender, EventArgs e) {
   uint money = 99999999;
   EditMemory(0xB7CE50, money);
}
private void InitializeComponent() {
   this.SuspendLayout();
   //
   // ButtonclsForm
   //
   this.ClientSize = new System.Drawing.Size(418, 262);
   this.Name = \"ButtonclsForm\";
   this.ResumeLayout(false);
}
}
}

 
Persze ez csak egy alap, lehetne még belerakni 1-2 dolgot.

25
Média / Welcome to "Fabulous" Las Venturas RPG NPC rendszer
« Dátum: 2011. március 10. - 18:50:17 »
Jólett :D
Amugy a mafiozok így beszélnek?
 
Csá tesóm. Mi a pálya öcsém?[/quote]

26
Kérdések, Segítség / C++
« Dátum: 2011. február 25. - 22:03:51 »
Én inkább a visual c++t ajánlom.. Könyveket meg nem árt beszerezni :D

27
Off Telep / Viszlát.
« Dátum: 2011. február 25. - 19:45:00 »
Gondolom rossz jegyek miatt eltiltották.

28
Kérdések, Segítség / Mobil net
« Dátum: 2011. február 24. - 15:10:33 »
Xzibit..
 
csak 0.facebook-nál nem számolja az adatforgalmi díjat, mert valami szerzõdésük van a t-mobillal. [/quote]

29
Bemutatkozás / ZeRo
« Dátum: 2011. február 23. - 13:57:06 »
Szép bemutatkozás
...
 
olyan \"bmx-es alkat\".     Ezért inkább thai-boxolok.    [/quote]
Énis bmx-ezek, valamint thai-boxolok.. Hova jársz thai-boxolni? :D

30
Segítségkérés / Idöjárás +skin
« Dátum: 2011. február 16. - 14:49:39 »
Mivel Antonyo-éhoz kellene ZCMD és sscanf2..

Oldalak: 1 [2] 3 4 ... 8
SimplePortal 2.3.7 © 2008-2024, SimplePortal