Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 379 online users. » 0 Member(s) | 376 Guest(s) Bing, Google, Yandex
|
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: 38
|
I get error 021 using y_h...
Forum: Pawn Scripting
Last Post: daniscript18
2024-11-18, 11:34 PM
» Replies: 0
» Views: 55
|
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
|
|
|
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]
|
|
|
|