Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 6,509
» Latest member: crazyosman365
» Forum threads: 2,233
» Forum posts: 12,033

Full Statistics

Online Users
There are currently 347 online users.
» 1 Member(s) | 342 Guest(s)
Bing, Google, Yandex, Baidu, Artysh

Latest Threads
Command does not work in-...
Forum: Pawn Scripting
Last Post: PANZEHIR_
2024-11-23, 06:36 PM
» Replies: 0
» Views: 41
White Screen
Forum: Support
Last Post: Phat202146_real
2024-11-21, 02:50 PM
» Replies: 0
» Views: 39
I get error 021 using y_h...
Forum: Pawn Scripting
Last Post: daniscript18
2024-11-18, 11:34 PM
» Replies: 0
» Views: 57
Il reste des français sur...
Forum: French/Fran?ais
Last Post: tysanio
2024-11-18, 05:39 AM
» Replies: 2
» Views: 465
Object creation issues
Forum: Programming
Last Post: K1271
2024-11-15, 11:51 PM
» Replies: 0
» Views: 56
Is the SAMP Hosting the s...
Forum: General Discussions
Last Post: OperaGX
2024-11-14, 09:33 PM
» Replies: 0
» Views: 74
Run time error 19: "File ...
Forum: Pawn Scripting
Last Post: Rexey
2024-11-14, 03:50 AM
» Replies: 0
» Views: 64
How to Compile Your Gamem...
Forum: Tutorials
Last Post: thelante
2024-11-13, 08:50 AM
» Replies: 3
» Views: 467
Modeller wanted
Forum: Development Updates
Last Post: acc.gangbeni
2024-11-11, 05:10 PM
» Replies: 9
» Views: 16,503
SA:MP forum offline
Forum: Portuguese/Portugu?s
Last Post: weslley_script
2024-11-09, 05:27 PM
» Replies: 7
» Views: 9,926

 
  FCNPC for open.mp
Posted by: BotLevel.Bobu - 2023-11-30, 07:20 PM - Forum: Pawn Scripting - Replies (4)

Code:
[Error] Skipping legacy plugin 'FCNPC'; It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp


Where do I find the FCNPC plugin for open.mp version ?
Or is there another plugin that works good with NPCS ?


Heart Liberty City RolePlay! - 46.183.184.33:5733
Posted by: NAYANthegamer - 2023-11-30, 04:23 PM - Forum: Advertisements - No Replies

Liberty City Roleplay !
Server's IP : 46.183.184.33:5733


Lightbulb Servidor San Andreas Brasil v7 BETA
Posted by: VitorAragao404 - 2023-11-30, 02:28 PM - Forum: Portuguese/Portugu?s - Replies (1)

Servidor SA-MP RPG Raiz criado do zero, atualmente com algo em torno de 30 mil linhas de código, toda semana estamos atualizando, seja um dos primeiros a se registrar e ganhe VIP totalmente gratuito por 7 dias.

ip1.sanandreas.net.br:7000

Print list: https://pasteboard.co/jFFOsFiHOUOa.png

Print in game: https://pasteboard.co/K6BRgX0ygj7e.png


Lightbulb HOST SAMP, CRIE SEU SERVIDOR DE GTA SA RP, FACÇÕES, HOJE, COM PREÇOS ACESSÍVEIS
Posted by: VitorAragao404 - 2023-11-30, 02:27 PM - Forum: Portuguese/Portugu?s - No Replies

Se você está procurando a melhor e mais barata hospedagem de servidor SAMP do Brasil, então você está no lugar certo! Aqui na San Andreas Hosting, oferecemos uma variedade de planos de hospedagem para atender às suas necessidades, com preços acessíveis e ofertas gratuitas e descontos.

https://sanandreas.net.br/index.html


https://pasteboard.co/7PEX7AcssuQU.png

https://pasteboard.co/DNy8SQBtnzvP.png


  [DUVIDA] Desenvolvimento do Projeto
Posted by: gabriel.hfscp - 2023-11-30, 01:08 PM - Forum: Portuguese/Portugu?s - No Replies

Olá,

Em meio a todo o caos que podemos ver que está ocorrendo com o SA:MP, imagino que muitos assim como eu estão em dúvida sobre o OPEN. PARLAMENTAR.

Como está o andamento do projeto? Pude ver que disponibilizaram uma versão do OPEN. MP SERVER, e que a versão CLIENT está em desenvolvimento ainda...
Já seria possível acessar servidores que utilizam o OPEN. PARLAMENTAR?
O que difere ele do SAMP?

Vamos nos comunicando por aqui, obrigado pela atenção de todos.



Não estou utilizando acentos nas letras, pelo visto essa plataforma de fórum não utiliza a codificação que nos atenderia


  Find the number into a text
Posted by: BotLevel.Bobu - 2023-11-29, 09:42 PM - Forum: Pawn Scripting - Replies (2)

Hi  !  I need your help.  I want to find the number in a random text.

 For example:

Code:
#include <open.mp>

main()
{
    new randomText.1[50] = " Hi, my name is John and I am 29 years old.";
    new randomText.2[50] = " Hey there, I choose the number 17.");
    new randomText.3[50] = " I want to be the number 1.");

    new Age; 
    new LottoNr;
    new Number;
    
    FindTheNumber(randomText.1, Age);
    printf(" Number found: %d", Age);

    FindTheNumber(randomText.2, LottoNr);
    printf(" Number found: %d", LottoNr);

    FindTheNumber(randomText.3, Number);
    printf(" Number found: %d", Number);

}


  Query open.mp servers in Rust
Posted by: Carlos - 2023-11-29, 11:30 AM - Forum: Releases - No Replies

openmultiplayer-query

Implements the needed builders and parsers for SA:MP's/Open Multiplayer's Query Mechanism, allowing a developer to retrieve data from a running server.

You cannot send RCON packets yet.

Examples

You can check

Code:
tests/packet.rs
to see how the tests for this library are crafted.

Code:
use openmultiplayer_query::{Packet, Opcodes};

// Assume you have a UDP socket running
let socket = UdpSocket::bind("0.0.0.0:0")?;

// We'll send a packet to 149.56.84.18:7777
let address: Ipv4Addr = "149.56.84.18".parse::<Ipv4Addr>().unwrap();
let port = 7777;

let mut packet = PacketBuilder::new(Opcodes::I, address, port)?;
// ...
packet.build()?; // This is needed in order to populate the data buffer with query data.

// Send the packet through the socket.
socket.send_to(packet.get_data().unwrap(), (address, port))?;
let mut recv_buf = [0u8; 2048];
socket.recv(&mut recv_buf)?;
let result: Result<Packet::InformationPacket, _> = (&recv_buf[..]).try_into();
// Use result as you please


  [0.3-DL] net4game - reaktywacja
Posted by: n4gn4g - 2023-11-26, 03:09 PM - Forum: Serwery - Replies (1)

Powrót do złotych lat Los Santos: Net4Game - nowe wyzwania i stary klimat!
Czy pamiętasz czasy, w których rozgrywka w Los Santos była prawdziwą przyjemnością, łącząc przyjazny i rozbudowany skrypt, wraz z luźną i wciągająca grą RolePlay?

Teraz masz szansę do tego wrócić! Net4Game powraca, chociaż nie jesteśmy poprzednimi właścicielami tego serwera, to staramy się przywrócić stare emocje, tworząc i wzorując się na tym co zapamiętaliście sprzed lat. To zupełnie nowa historia, a jednocześnie sentyment do starych zasad gry. Serwer oparty jest na wersji SA-MP 0.3DL, wykorzystując jego wszystkie możliwości, urozmaicając nasza mapę o nowe miejsca do gry. Twoja postać będzie mogła wcielić się w kogo tylko chce, poczynając od zwykłego cywila pracującego w biznesach aż po prawdziwego króla półświatka przestępczego.

System grup

Tworzenie różnorodnych biznesów, organizacji  przestępczych i porządkowych oraz zwyczajnych grup stało się prostsze i wygodniejsze niż kiedykolwiek wcześniej. W naszym panelu grup znajdziesz zaawansowany system uprawnień, możliwość zarządzania pojazdami, system produktów dostępnych do zamawiania i sprzedaży, nadzór nad aktywnością członków, magazyn grupowy, zarządzanie budynkami i możliwość składania zgłoszeń przez innych graczy.

Oferujemy różnorodność w rodzajach biznesów, które każdy z was może założyć:
  • Grupy party
  • Organizacje przestępcze
  • Organizacje publiczne
  • Radio
  • Bary / Restauracje
  • Siłownie
  • Strzelnice
  • Warsztaty samochodowe
  • Salony samochodowe
  • Firmy ochroniarskie
  • Mafie / Kartele
  • Sklepy zoologiczne
  • Taxi
  • Nauka jazdy

[Image: 36HIvMA.png]

[Image: F03HKcE.png]

[Image: B4LuKvB.png]

[Image: uWD6vgj.png]

Organizacje przestępcze

Organizacje przestępcze stanowią kluczowy element rozgrywki, a nasz skrypt dostarcza wiele systemów, które uczynią twoje doświadczenia bardziej ekscytującymi. Każda organizacja otrzymuje dostęp do systemu wyścigów, zaawansowanego systemu narkotyków, handlu na cornerach, okradania, pracy szmuglera, handlu bronią, walki o strefy i wiele innych. Wszystkie organizacje przestępcze będą nadzorowane przez wyznaczonego opiekuna, który tworzy różne eventy, nagradza za grę IC i prowadzi projekty, takie jak: Robbery Project.

[Image: YymIMwQ.png]

[Image: xaU5Co6.png]

[Image: kuLRXBM.png]

[Image: qemXoFU.png]

Organizacje publiczne

Organizacje publiczne, podobnie jak organizacje przestępcze, pełnią istotną funkcję w naszej rozgrywce i są przedmiotem ciągłego rozwoju, który wymaga ogromnego nakładu pracy. Naszym priorytetem jest zapewnienie stabilnego rozwoju każdej frakcji, niezależnie od interakcji z innymi graczami, aby każda z nich miała co robić. Postanowiliśmy połączyć dwie frakcje, Medyczną z Fire Departament wprowadzając tym samym losowe zdarzenia na serwerze, dzięki którym będziemy mogli cieszyć się różnorodnymi akcjami.

Warto również wspomnieć, że organizacje, takie jak LSPD (Los Santos Police Department), również otrzymały ważne ulepszenia. Wprowadziliśmy intuicyjny system MDT (Mobile Data Terminal), który umożliwia lepsze nadzorowanie pojazdów i graczy na serwerze. Ponadto, dostępna jest teraz sala sądowa, która umożliwi każdej pozwanej osobie przedstawić swoją wersję zdarzeń w odpowiednich warunkach. Dodatkowo wprowadziliśmy takie elementy jak kolczatki, blokady na koła, namierzanie telefonów i wiele innych udogodnień.

Jednakże naszą główną uwagę skupiamy na rozwoju gry o charakterze przestępczo-porządkowym. Dlatego dokładamy wszelkich starań, aby zapewnić odpowiednią atmosferę i klimat w interakcjach między różnymi organizacjami. Wszystkie działania będą nadzorowane przez opiekunów oraz administrację, którą będzie dążyła do tego, aby frakcje kładły główny nacisk na grę IC.

[Image: WFEQhLo.png]
[Image: 53cAWm5.png]

[Image: W9vlw38.png]


Jeśli jesteś zainteresowany naszym projektem, zapraszamy na naszego Discorda: >KLIK<, gdzie znajdziesz wszystkie nowości i informacje dotyczące naszych dalszych planów. Wspieramy także otwarte testy, więc dołącz i pomóż nam doskonalić nasz skrypt!

Przewidywana data startu: grudzień/święta 2023.


  SFSE: Stunt, Race, Deathmatch and Minigames!
Posted by: SFSE - 2023-11-24, 08:06 PM - Forum: Advertisements - No Replies

play.SF-SE.net:7777 or 149.202.42.25:7777

Hello!

On the hunt for a friendly SA:MP / open.mp community with lots of different gamemodes? SFSE might be worth a look...

Some of our standout features include:

- Freeroam
- Fallout
- Derby
- Race
- Capture the flag
- Maze
- Cops and Robbers
- Battle Royale
- Dogfight
- Stunt War
- Deathmatches
- Jobs
...and much more!

Again, you can reach us at play.SF-SE.net:7777 or 149.202.42.25:7777

Why not check out our website as well? You can find us at www.sf-se.net

Cheers!


  [ENG] Astral Roleplay | 0.3 DL
Posted by: serthmiller - 2023-11-24, 02:30 PM - Forum: Advertisements - No Replies

Astral Roleplay -  0.3 DL


------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Get ready for an adrenaline-fueled adventure as a brand-new GTA San Andreas Roleplay server is on the verge of opening its virtual doors. This eagerly anticipated server promises to deliver an immersive and dynamic gaming experience set within the sprawling landscapes of San Andreas. With a meticulous attention to detail, the server administrators have crafted a unique RP environment that captures the essence of the Grand Theft Auto universe. Players can expect a vast array of opportunities to shape their characters' destinies, from engaging in thrilling criminal enterprises to pursuing legitimate careers, all within a living, breathing virtual city. Whether you're a seasoned RP enthusiast or a newcomer to the scene, this server is poised to provide an unparalleled level of excitement and interaction. Get ready to forge alliances, make enemies, and create your own narrative in this highly anticipated GTA SA RP server launch. The streets of San Andreas are calling, and a new era of virtual roleplaying is about to begin!

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Welcome to Astral Roleplay
We are a Serious English Roleplay server that will be opening soon. At the moment we require Legall and Illegal Faction Leaders, and there are a few Staff Positions open. We have a fully functional script ready for everyone to enjoy, Some of our features are
GOV Factions , Illegal Factions , Warehouse/Blackmarket , Vehicle Dealerships , Jobs , Bank with Savings system , MDT System, Casino system, Trunk System ( Can place weapons inside trunk where gun is visible inside ) , Police Object System , Packages System for drugs Graffiti System, Boxing styles, Advertisement System, Dynamic Business system, House System and Motels Systems, Radio System ( Walkie Talkie ), and Much More!
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Need Legal & Illegal Faction Leaders
Hiring Staff / Mappers
Opening Now!



Address: 144.217.174.215:1510



[Image: 636e0a6918e57475a843f59f_icon_clyde_black_RGB.svg] https://discord.gg/zm6YnX2wgJ [Image: 636e0a6918e57475a843f59f_icon_clyde_black_RGB.svg]