Jump to content

zL Dark ReturN

Member
  • Posts

    1679
  • Joined

  • Last visited

Everything posted by zL Dark ReturN

  1. Nu ai cum sa folosesti functia strfind pe un caracter. Acea functie se foloseste pe un sir.
  2. M'as apuca de RPG2. Am vazut ca nu mai sunt copii in staff. Ce ziceti?

    1. Show previous comments  12 more
    2. zL Dark ReturN

      zL Dark ReturN

      L'am anulat ca am zis ca nu mai intru in mafii

    3. eB PANDAHERE
    4. Alex99

      Alex99

      Mai merge key logger?, ai mai spart si tu cv?.

  3. Nume: Vesc Factiune: Civil Mesajul tau: Slabuti cei prezenti, respect generatia 2014 cu Dizz lider
  4. In foreach la If trebuie sa ai PayerInfo[pAdmin], nu PlayerInfo[playerid][pAdmin].
  5. if(PlayerInfo[i][pAdmin] == 1) if(PlayerInfo[i][pAdmin] == 2) if(PlayerInfo[i][pAdmin] == 3) if(PlayerInfo[i][pAdmin] == 4) if(PlayerInfo[i][pAdmin] == 5) if(PlayerInfo[i][pAdmin] == 6 Daca ai scris pe undeva asa, pune ")" la final dupa 6.
  6. Nu tine de aria de programare. T/C.
  7. Pentru a nu mai vedea posturi de genul voi închide topicul. Daca doriti un mod care sa nu dea fvr mereu cand scrie cineva in chat, ci o comanda mai simpla de acl cere / a anunta ca se da fvr, aveti aici: https://forum.b-zone.ro/topic/339119-sugestii-de-creatii/page-1
  8. Puteai lasa mai multe detalii. Sunt pe telefon si mi'e greu sa'mi dau seama din poze ce trebuie sa faci. Oricum fundalul cu munte si ecranul de start sunt frumoase. Imi place cum ai pozitionat start si quit.
  9. Nu oferim ajutor pentru programele piratate. Oricum, partea aceasta tine de programare, nu de ceea ce ai postat tu.
  10. Cica double - G5 main Ori :))

  11. Frumos portofoliul. Imi place originalitatea de care dai dovada. Cum stai cu borderele?
  12. Acel moment cand fratiorul da cu codu', e vina lui, dar sora da statusuri cu: "Adminii astia noi au uitat de unde au plecat" :))))))) Glume mai bune ca asta nu vedeti pe toata comunitatea

    1. Show previous comments  13 more
    2. eB PANDAHERE

      eB PANDAHERE

      manc popcorn si ma uit la ce se mai intampla

    3. Andr3y00B Comunistu

      Andr3y00B Comunistu

      Mi-ai făcut pofta de popcorn acum.

    4. Ocaust
  13. Te-ai gandit vreodata la un sistem de clan pe C.S. 1.6? UP.B-ZoNe.Ro are asa ceva. Detalii aici: https://forum.b-zone.ro/topic/361074-actualizari-server/?p=5447604

  14. @@Shanker Nebunul, e C#. Program facut in Visual Studio. Sursa: using B_Zone_Launcher.Properties; using Microsoft.Win32; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace B_Zone_Launcher { public partial class BzoneLauncher : Form { public const int WM_NCLBUTTONDOWN = 0xA1; public const int HT_CAPTION = 0x2; [DllImportAttribute("user32.dll")] public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); [DllImportAttribute("user32.dll")] public static extern bool ReleaseCapture(); public BzoneLauncher() { InitializeComponent(); userName.Text = (string)Registry.GetValue(@"HKEY_CURRENT_USER\SOFTWARE\SAMP", "PlayerName", null); rpg1Pic.ImageLocation = "https://www.game-state.com/89.33.242.95:7777/350x20_FFFFFF_FFFFFF_000000_000000.png"; rpg2Pic.ImageLocation = "https://www.game-state.com/89.33.242.97:7777/350x20_FFFFFF_FFFFFF_000000_000000.png"; rpg3Pic.ImageLocation = "https://www.game-state.com/89.33.242.92:7777/350x20_FFFFFF_FFFFFF_000000_000000.png"; rpg4Pic.ImageLocation = "https://www.game-state.com/89.33.242.96:7777/350x20_FFFFFF_FFFFFF_000000_000000.png"; mixPic.ImageLocation = "https://www.game-state.com/89.33.242.115:7777/350x20_FFFFFF_FFFFFF_000000_000000.png"; } private void header_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { ReleaseCapture(); SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0); } } private void exit_Click(object sender, EventArgs e) { Close(); } private void minimize_Click(object sender, EventArgs e) { WindowState = FormWindowState.Minimized; } object minimizeOnHover = Resources.ResourceManager.GetObject("minimize_hover"); object minimizeOutHover = Resources.ResourceManager.GetObject("minimize"); object exitOnHover = Resources.ResourceManager.GetObject("exit_hover"); object exitOutHover = Resources.ResourceManager.GetObject("exit"); private void minimize_MouseEnter(object sender, EventArgs e) { minimize.Image = (Image)minimizeOnHover; } private void minimize_MouseLeave(object sender, EventArgs e) { minimize.Image = (Image)minimizeOutHover; } private void exit_MouseEnter(object sender, EventArgs e) { exit.Image = (Image)exitOnHover; } private void exit_MouseLeave(object sender, EventArgs e) { exit.Image = (Image)exitOutHover; } private void connect_Click(object sender, EventArgs e) { RegistryKey myKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\SAMP", true); if (myKey != null) { myKey.SetValue("PlayerName", userName.Text, RegistryValueKind.String); } myKey.Close(); string path = (string)Registry.GetValue(@"HKEY_CURRENT_USER\SOFTWARE\SAMP", "gta_sa_exe", null); path = path.Replace("gta_sa.exe", "samp.exe"); ProcessStartInfo startInfo = new ProcessStartInfo(path); if (serverChoice.Text == "RPG1 Server") startInfo.Arguments = "-c -h89.33.242.95"; if (serverChoice.Text == "RPG2 Server") startInfo.Arguments = "-c -h89.33.242.97"; if (serverChoice.Text == "RPG3 Server") startInfo.Arguments = "-c -h89.33.242.92"; if (serverChoice.Text == "RPG4 Server") startInfo.Arguments = "-c -h89.33.242.96"; if (serverChoice.Text == "MIX Server") startInfo.Arguments = "-c -h89.33.242.115"; if (serverChoice.Text != "") Process.Start(startInfo); } private void forum_Click(object sender, EventArgs e) { System.Diagnostics.Process.Start("http://forum.b-zone.ro"); } } } Daca nu intelegi ceva intreaba si iti explic.
  15. Evident ca o am. Si daca n'as avea, n'ar fi greu sa fac programul iar de la 0, nu'mi ia mult.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.