Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 401 online users. » 1 Member(s) | 398 Guest(s) Bing, Google, fikriarisaputra10281
|
Latest Threads |
Liberty City map
Forum: Pawn Scripting
Last Post: ziyadprogamer
2025-06-28, 04:55 PM
» Replies: 2
» Views: 2,141
|
GameText styles in open.m...
Forum: Pawn Scripting
Last Post: Miki
2025-06-28, 01:25 PM
» Replies: 1
» Views: 48
|
Script[gamemodes/gamemode...
Forum: Pawn Scripting
Last Post: Miki
2025-06-27, 05:08 PM
» Replies: 1
» Views: 429
|
Want to edit my profile n...
Forum: Chat
Last Post: Hera.
2025-06-26, 08:41 PM
» Replies: 1
» Views: 562
|
Farsi
Forum: Other
Last Post: acc.gangbeni
2025-06-25, 08:21 AM
» Replies: 2
» Views: 3,066
|
Las Venturas Gang Wars - ...
Forum: Advertisements
Last Post: lvgwgta
2025-06-22, 06:47 PM
» Replies: 0
» Views: 58
|
[Request] Linko Gaming Ro...
Forum: General Discussions
Last Post: JamesC
2025-06-20, 07:34 PM
» Replies: 0
» Views: 75
|
RevolutionX DM/Stunt/Race...
Forum: Advertisements
Last Post: DerekZ905
2025-06-18, 03:12 PM
» Replies: 0
» Views: 91
|
samp-cef
Forum: Questions and Suggestions
Last Post: jamespssamp
2025-06-18, 11:36 AM
» Replies: 0
» Views: 78
|
Offering Pawn Scripting S...
Forum: Pawn Scripting
Last Post: Mido
2025-06-07, 01:30 PM
» Replies: 0
» Views: 309
|
|
|
I have a question |
Posted by: melissawimmer219 - 2023-12-08, 04:03 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
Dear community,
i think the question is clear. I want to set my 'spawn-ojects' to a virtual world so that you just see the objects when you select your skin.
Thanks!
|
|
|
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
- Deathmatch Zones System: This mod introduces dynamic zones and weapons for deathmatch gameplay, enhancing the PVP experience in SAMP.
- 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.
- Getting Damaged Text: Adds an immersive feature where players receive on-screen text notifications when taking damage, providing a more responsive gameplay experience.
- Multi Commands Line: This utility mod allows for executing multiple commands in a single line, greatly enhancing the efficiency of gameplay and server administration.
- 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.
|
|
|
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]
|
|
|
|