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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 8,106
» Latest member: michealbrown4709
» Forum threads: 2,443
» Forum posts: 12,464

Full Statistics

Online Users
There are currently 265 online users.
» 0 Member(s) | 263 Guest(s)
Yandex, Bing

Latest Threads
Audiobook Publishing – Bo...
Forum: General Discussions
Last Post: michealbrown4709
1 hour ago
» Replies: 0
» Views: 2
GTA San Andreas - The mov...
Forum: Chat
Last Post: ontrelbranch
Today, 03:37 AM
» Replies: 1
» Views: 356
Looking for Players for N...
Forum: Advertisements
Last Post: AlmightyJeremy
Yesterday, 03:36 PM
» Replies: 0
» Views: 29
Algemene Discussies
Forum: Dutch/Nederlands
Last Post: Eamon
Yesterday, 12:03 AM
» Replies: 41
» Views: 85,281
Help me find a current ar...
Forum: Tech
Last Post: KOZYR
2026-04-24, 03:53 PM
» Replies: 0
» Views: 58
Czy SA:MP RP jeszcze żyje...
Forum: Ogólne
Last Post: Sztakier
2026-04-24, 09:11 AM
» Replies: 0
» Views: 60
Donald Trump wars every c...
Forum: Life
Last Post: NoxxeR
2026-04-23, 08:04 PM
» Replies: 0
» Views: 70
Ajuda com salvamento nao ...
Forum: Portuguese/Português
Last Post: zGu1Zin_
2026-04-22, 10:05 PM
» Replies: 0
» Views: 59
PawnPro 3.0 — Extensão VS...
Forum: Portuguese/Português
Last Post: NullSablex
2026-04-19, 10:58 AM
» Replies: 0
» Views: 80
Harmony Maps
Forum: Maps
Last Post: Harmony
2026-04-19, 09:36 AM
» Replies: 0
» Views: 105

 
  timestamp include - i need help
Posted by: justcroatiansamper - 2024-05-10, 02:29 PM - Forum: Pawn Scripting - Replies (1)

Hello, how would it be best to implement timestamp include in this situation? 


Code:
stock CreateLog(FileName[], string[])[/color]
{

    new logstring[256];

    new hour, minute, second, day, month, year;

    gettime(hour, minute, second);

    getdate(day, month, year);

    format(logstring, 256, "[%d.%d.%d - %d:%d:%d] %s\r\n", hour, minute, second, day, month, year, string);

    new File:hFile;

    hFile = fopen(FileName, io_append);

    fwrite(hFile, logstring);

    fclose(hFile);

    return 1;
[color=#000000]}



Link of timestamp:
https://github.com/Agneese-Saini/SA-MP/b...estamp.inc


Thanks :)


  [English] Tierra Robada Roleplay
Posted by: Vicee - 2024-05-06, 08:57 PM - Forum: Advertisements - Replies (3)

Tierra Robada Roleplay is a Grand Theft Auto San Andreas Multiplayer Heavy Roleplay server located in the County of Tierra Robada, the State of San Andreas, primarily the Town of Bayside, El Quebrados, and its surroundings. This is a community where you have a chance to prosper and become what you have always imagined, of course, success comes with work and effort. The community offers you a wide range of opportunities. We invite you to join us today and to invite your friends to experience the charms of roleplay.

Discord: https://discord.gg/66hxDpCd6g

https://www.youtube.com/watch?v=buTu3vhTiEs&t

https://streamable.com/68elit
People who wish to start playing San Andreas Multiplayer and are in need of help, freely join our discord and send us a message, there is always someone to help our players out!



[Image: UH5oOUg.jpg]
[Image: GhmDbsj.jpg]
[Image: siJIQNQ.jpg]
[Image: xm058dO.jpg]
[Image: agMcHK5.jpg]
[Image: 5Rjq1rN.jpg]
[Image: YIACtFY.jpg]
[Image: YlXL3w7.jpg]
[Image: OZhIBkz.jpg]
[Image: 5Xbl605.jpg]
[Image: Yy5Cbzu.jpg]
[Image: COK04K6.jpg]
[Image: o5Uq5vT.jpg]


Wink Anyone a Idea how i make a Spider Mod script for cars?
Posted by: puschkin420 - 2024-05-05, 11:33 AM - Forum: Pawn Scripting - Replies (1)

Hey friends,

have one question to all developers here, i need a Script, that i can as driver as a car, driving on a wall as a Spider, hope u know what i mean, can u help me please?

Like this, but for SAMP/OMP

[Video: https://www.youtube.com/watch?v=J2_MAf91kBQ]


  Please help me out with a basic job.
Posted by: x3nt1s - 2024-05-03, 07:19 AM - Forum: Pawn Scripting - Replies (3)

Hey guys I know this is dumb but it's just for training myself I just need some help with a basic job I wanna make since I've been struggling to make even simple things as that. If the player enters any Combine Harvester they get a mark on the map for Checkpoint 1 then when they go through it they gotta go through the next 3 checkpoints and by the end they get $50. They could repeat it over and over to get the money.

The XYZ coordinates are:
21.3124,62.0883,3.1172 = Checkpoint 1
13.2968,37.2150,3.1172 = Checkpoint 2
64.9920,-32.5298,0.7534 = Checkpoint 3
72.8307,19.9228,0.6094 = Checkpoint 4

Thanks in advance.


  Convoy Trucking
Posted by: pasztor.mark456 - 2024-05-02, 11:59 PM - Forum: Advertisements - No Replies

Hey, if u wanna be a trucker, come to Convoy Trucking: IP: server.convoytrucking.net:7777


Question How can I resolve this?
Posted by: JR_Junior - 2024-05-01, 09:17 PM - Forum: Pawn Scripting - Replies (1)

Hello, I'm trying to create a function with several parameters in string format, but I don't know how to do it, as it's returning the following error:

Code:
error 067: variable cannot be both a reference and an array (variable "string1")

PHP Code:
new string1[15],string2[15];
stock MyFunction(&string1[15],&string2[15])
{
//Some code
string1 ="Hello";
string2 ="Hello 2";


FIXED!

Just removed the &


  Not receiving damage when player fell onto the ground
Posted by: Sizy - 2024-05-01, 02:49 AM - Forum: Pawn Scripting - Replies (10)

I get this error


Code:
C:\Users\User\Desktop\rsrp\gamemodes\RSRP.pwn(1361) : warning 202: number of arguments does not match definition

C:\Users\User\Desktop\rsrp\gamemodes\RSRP.pwn(1378) : warning 213: tag mismatch




Code:
forward OnPlayerFall(playerid);
forward CalculateDamage(Float:fall_height);

public OnPlayerFall(playerid) {
    new Float:fall_height;
    GetPlayerDistanceFromPoint(playerid, 2.0, 2.0, 2.0, fall_height);

    new damage = CalculateDamage(fall_height);

    // Apply damage to the player
    SetPlayerHealth(playerid, GetPlayerHealth(playerid) - damage);

    // You can also send a message to the player informing them about the damage
    SendClientMessage(playerid, COLOR_RED, "You took damage from the fall!");
    return 1;
}

// Function to calculate damage based on fall height
public CalculateDamage(Float:fall_height) {
    if (fall_height <= 0.0) return 0;
    if (fall_height <= 2.0) return 5; // Minimum damage if fall height is less than or equal to 2 meters
    return (fall_height - 2.0) * 2 + 5; // Damage increases linearly with fall height beyond 2 meters
}



please help to fix


Exclamation Trunk open
Posted by: Kriso37 - 2024-04-27, 03:11 PM - Forum: Pawn Scripting - Replies (1)

[Image: snfJf4c.png]
How to open this trunk like this with code,
i tryed setvehicleparamsex but its half open


  someone crashing my server
Posted by: itayuss - 2024-04-26, 02:01 PM - Forum: Support - Replies (3)

hello im using samp 0.3.7
and someone is connecting to the server,
doing something and my server is down...
what can i do please????


  Is this a silly question...?
Posted by: KILLERDOG - 2024-04-26, 12:12 PM - Forum: Questions and Suggestions - No Replies

First off i would like to say a big hello to you guys and its great to see some old faces returning. I have a bit of a silly question here but i was wondering we have openMP but why oh why do we still need SAMP installed. I thought openMP was taking over from SAMP now that certain SAMP members/founders have decided to abandon the project. Will we ever just have and OpenMP installed and not have SAMP. Thanks for reading my post. Hope to see you guys and girls in game. :)