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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,262
» Latest member: muqthiabdul8
» Forum threads: 2,379
» Forum posts: 12,294

Full Statistics

Online Users
There are currently 305 online users.
» 0 Member(s) | 303 Guest(s)
Bing, Google

Latest Threads
[MAP PACK] 5 NEW LS BUILD...
Forum: Videos and Screenshots
Last Post: Apollo4430
Today, 12:20 AM
» Replies: 1
» Views: 3,332
Open.mp / SAMP Query
Forum: Releases
Last Post: laex
2025-07-09, 04:07 AM
» Replies: 2
» Views: 94
some text appearing in my...
Forum: Support
Last Post: Sizy
2025-07-08, 07:33 AM
» Replies: 0
» Views: 30
Offensive-Core: TDM
Forum: Gamemodes
Last Post: NikitaFoxze
2025-07-08, 12:13 AM
» Replies: 3
» Views: 3,664
Second Generation Rolepla...
Forum: Advertisements
Last Post: JamesT
2025-07-06, 10:28 AM
» Replies: 0
» Views: 47
Servidor RPG profissões
Forum: Advertisements
Last Post: tcharlesmeurer
2025-07-05, 11:35 PM
» Replies: 0
» Views: 33
EVO Anti-Cheat
Forum: Libraries
Last Post: Eduardo_AC
2025-07-05, 11:05 PM
» Replies: 2
» Views: 95
Developer for Hire – Syst...
Forum: Pawn Scripting
Last Post: ejtamovic
2025-07-04, 08:35 AM
» Replies: 0
» Views: 67
Liberty City map
Forum: Pawn Scripting
Last Post: ziyadprogamer
2025-06-28, 04:55 PM
» Replies: 2
» Views: 2,216
GameText styles in open.m...
Forum: Pawn Scripting
Last Post: Miki
2025-06-28, 01:25 PM
» Replies: 1
» Views: 76

 
Star SAMP Mods Collection🔥
Posted by: xDrPawnx - 2023-12-04, 01:47 PM - Forum: Pawn Scripting - No Replies

GTA SAMP Mods Collection (2012, by DrPawn)

Introduction

Welcome to my personal collection of mods for GTA San Andreas Multiplayer (SAMP) from the year 2012. (0.3d I think)
These mods represent not just my early ventures into the world of programming but also hold a special place in my heart as they were some of the first codes I ever wrote during my first three years as a programmer.

While GTA SAMP may not be as widely played today, the significance of these mods goes beyond their functional purpose in the game. They are a testament to my growth and passion as a developer.
I've decided to publish them on GitHub as a form of digital preservation and to share a piece of my programming journey with others.

Link to Github: https://github.com/IdanSHR/SAMP-Mods-Col...aster/mods

Mod List and Descriptions

  1. Deathmatch Zones System: This mod introduces dynamic zones and weapons for deathmatch gameplay, enhancing the PVP experience in SAMP.

  2. Anti SAWN-Off 202: A balance-focused mod that limits the usage of the overpowered SAWN-Off shotgun bug, aiming to create a more equitable gaming environment with an On/Off switch.

  3. Getting Damaged Text: Adds an immersive feature where players receive on-screen text notifications when taking damage, providing a more responsive gameplay experience.

  4. Multi Commands Line: This utility mod allows for executing multiple commands in a single line, greatly enhancing the efficiency of gameplay and server administration.

  5. Special Vehicles: Introduces unique vehicles not originally found in GTA SAMP, adding a fresh and exciting element to the game's exploration and transportation.

Why Publish Now?

These mods are more than just code; they are a part of my personal history in programming. By sharing them, I hope to not only preserve these early works but also possibly inspire new and veteran programmers in the gaming community. Whether for nostalgic revisits, educational purposes, or just for fun, I believe these mods still hold value.

Acknowledgements
A big thank you to the GTA SAMP community for the support and inspiration during my early days of coding. This project wouldn't have been possible without the vibrant and creative environment fostered by this community.


Wink how can i do that ? o.O
Posted by: mnlw2888 - 2023-12-03, 06:34 AM - Forum: Pawn Scripting - Replies (2)

its new for me how can do that pls help 

https://imgur.com/a/hLaEpOo  << image


  I have added "discord-connector" plugin into my code then also it says fatal error:
Posted by: [Rs]VeNoM - 2023-12-02, 06:16 AM - Forum: Pawn Scripting - Replies (1)

[Image: Untitled.png]

Please Help.


  Circular Progress
Posted by: eubluen - 2023-12-02, 12:29 AM - Forum: Libraries - Replies (2)

Circular Progress
Download:
[url=https://github.com/igdiogo/Circular-Progress-Samp][/url]

freesampscripts - Create source code
blueN - Recreate code with new natives and update funtions


Preview:


  My samp crashes and I can't fix it!!
Posted by: JEYLOS - 2023-12-01, 12:41 PM - Forum: Support - No Replies

Hello, my Samp is crashing, what the crash info tells me :
https://drive.google.com/file/d/1sMLmLU9...sp=sharing
All the ways that I have tested have not worked :
Reinstall Windows.
Reinstall Gta Sa.
Install Version 1.0.
Update Graphic Driver.
Test Other Servers.
Change compotibillity.
Install Cleo.
Install Anticrasher. and.....
Not Fixed My Problem. I even installed all versions of microsoft visual c++ redistributable and replaced the msvcrt.dll file. Except for Crash, my game lags even on the lowest graphics. please help me.

system specification :
H610M-A
I3 12100
Ram 16GB
SSD 250GB
HDD 1TB
PSU 600W


  I am having an issue with my code
Posted by: [Rs]VeNoM - 2023-12-01, 07:43 AM - Forum: Pawn Scripting - Replies (1)

This is my code, this code is of creating an organization vehicle but it says Unknown Command

Code:
CMD:setorgveh(playerid,params[])

{
new orgid, vid;
if(!IsPlayerAdmin(playerid)) return 0;
if(sscanf(params,"ui",orgid, vid)) return SendClientMessage(playerid, 0xFF4500AA, "USAGE:/setorgveh <orgid> <vid>");

new Float:X,Float:Y,Float:Z,Float:A;
    if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER) return SendClientMessage(playerid,0xFF4500AA,"You aren't in any vehicle.");
    GetVehiclePos(GetPlayerVehicleID(playerid),X,Y,Z);
    GetVehicleZAngle(GetPlayerVehicleID(playerid),A);

    if(vid == 1)
    {
    OrgData[orgid][car1] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,60);
    }

    if(vid == 2)
    {
    OrgData[orgid][car2] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,-1);
    }

    if(vid == 3)
    {
    OrgData[orgid][car3] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,-1);
    }
    if(vid == 4)
    {
    OrgData[orgid][car4] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,-1);
    }
    if(vid == 5)
    {
    OrgData[orgid][car5] = CreateVehicle(GetVehicleModel(GetPlayerVehicleID(playerid)),X,Y,Z,A,-1,-1,-1);
    }


    new sl[256];
    format(sl,256,"** You have set vehicle id %d to organization vehicle, %s (Carid:%d).",GetVehicleModel(GetPlayerVehicleID(playerid)),vid);
    SendClientMessage(playerid,0x808000AA,sl);

return 1;
}

Full code : https://pastebin.com/KXLubSGP[url=https://pastebin.com/KXLubSGP][/url]


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

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