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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,523
» Latest member: Alik1212
» Forum threads: 2,416
» Forum posts: 12,368

Full Statistics

Online Users
There are currently 380 online users.
» 0 Member(s) | 379 Guest(s)
Bing

Latest Threads
Possibility of Multiplaye...
Forum: General Discussions
Last Post: sandrawelker
4 hours ago
» Replies: 0
» Views: 14
United Gaming Life Rolepl...
Forum: Advertisements
Last Post: Cruncher
Yesterday, 06:18 PM
» Replies: 0
» Views: 45
Adding new vehicles and s...
Forum: Programming
Last Post: __.A.__
2025-09-15, 02:52 AM
» Replies: 2
» Views: 233
How to create a custom SA...
Forum: Tech
Last Post: HELLHOUND
2025-09-15, 12:12 AM
» Replies: 1
» Views: 844
Silly little render a did...
Forum: Art
Last Post: HELLHOUND
2025-09-14, 09:00 PM
» Replies: 0
» Views: 120
HWID BAN
Forum: Questions and Suggestions
Last Post: HELLHOUND
2025-09-14, 08:44 PM
» Replies: 1
» Views: 952
Manual sorting of servers...
Forum: Questions and Suggestions
Last Post: HELLHOUND
2025-09-14, 08:35 PM
» Replies: 1
» Views: 770
San Fierro Cops And Robbe...
Forum: Advertisements
Last Post: Dr0pp
2025-09-13, 08:33 PM
» Replies: 0
» Views: 151
Zona América del Sur Free...
Forum: Advertisements
Last Post: kevinberriosflores
2025-09-12, 02:16 PM
» Replies: 1
» Views: 187
Busco copia de gamemode S...
Forum: Spanish/Espa?ol
Last Post: briancristaldo2021
2025-09-11, 11:14 AM
» Replies: 0
» Views: 188

 
  removed
Posted by: Grate Maharlika - 2020-10-17, 03:49 PM - Forum: Support - Replies (4)

removed


  Error on weapon-config.inc
Posted by: DaZzY - 2020-10-16, 04:33 PM - Forum: Pawn Scripting - Replies (7)

Hello?

i want use the include weapon config to make a damage informer but i get this error:?



Quote:weapon-config.inc(1589) : error 035: argument type mismatch (argument 2)



how to fix it please ?


  << SA:MP Luftschlacht Server TEST <<
Posted by: Palps - 2020-10-16, 04:10 PM - Forum: General Discussions - Replies (2)

Sup,



on the following sunday at 4 PM (UTC) will be the official server test of SA:MP



Luftschlacht, which has been in Development since 4 Months!



It's a Deathmatch Server which a completly new concept inspired by BATTLEFRONT 2.



We are inviting you, to join us. We are still searching for 3-5 testers on top of our 10.





For more information, you can join our Discord.



https://discord.gg/b28JTaC



Enjoy your stay!


  Open.mp - idea for client concept
Posted by: daddy. - 2020-10-16, 01:05 PM - Forum: Art - Replies (7)

Hi. Here is something I've done just in photoshop (I didn't coded anything) which means that this is just an idea of what the client might look like ;)



First of all, here is blank design without any filled info:



[Image: openmpclientdesignconcept-0.png]



Now here is the design filled with info,

and you can see cursor at one of the server hostnames, that means if you click on servers hostname, number of players or ping you get more information about that server on the left side,

with button CONNECT which connects you to the server.

Also, I forgot to add the "Add Server to fav." button but it can be easily added maybe to the right of nickname bar or to the left of favorites button (heart).



[Image: openmpclientdesignconcept-2.png]

I receive every praise and remark on my work and I would be grateful if you would leave your opinion as well :)


  Salutare
Posted by: Doc. - 2020-10-16, 12:37 PM - Forum: Romanian/Rom?na - Replies (6)

Salutare, romanasi! Deschid un server de trucking international cu un amic englez si mi-ar prinde bine niste ajutor pe partea de mapping/developing. Forumul vi l dau in pm, daca e cineva interesat sa participe faceti-va cont acolo si imi lasati un PM. Aici nu stiu cat de activ voi fi momentan.


Lightbulb Needed includes?
Posted by: SalikDavince - 2020-10-15, 02:29 PM - Forum: Pawn Scripting - Replies (1)

Hi all, I would like to know about activity of user "mauzen", first and foremost, I would like to get lost includ "mfex" and other inkluda created by this user, in connection with the loss of connection with the forum, this is not possible, and on the website of nausena include also not available. (translated via Yandex translator).


Wink Needed includes?
Posted by: SalikDavince - 2020-10-15, 08:29 AM - Forum: General Discussions - No Replies

Hi all, I would like to know about activity of user "mauzen", first and foremost, I would like to get lost includ "mfex" and other inkluda created by this user, in connection with the loss of connection with the forum, this is not possible, and on the website of nausena include also not available. (translated via Yandex translator).


  Problem with ctime
Posted by: Demo - 2020-10-14, 05:06 PM - Forum: Pawn Scripting - No Replies

Hey im using southclaws pawn-ctime version (https://github.com/Southclaws/pawn-ctime) and actually got a problem with my function "WhichDayWillItBe".

It worked fine before with Ryders version.



Function:

Code:
stock WhichDayWillItBe(const iDay)

{

? ? new

? ? ? ? tmWhichDay[e_tm],

? ? ? ? thedate[6];



? ? localtime(Time:gettime(), tmWhichDay);

? ?

? ? tmWhichDay[tm_mday] = iDay;



? ? mktime(tmWhichDay);

?

? ? strftime(thedate, sizeof(thedate), "%d.%m", tmWhichDay);

? ? return thedate;

}





Example:

Code:
hook OnGameModeInit()

{

? ? for(new i = 0; i < 20; i)

? ? {

? ? ? ? new formdate[6], whichday2;

? ? ? ? whichday2 = -i;

? ? ? ? format(formdate, sizeof(formdate), "%s",WhichDayWillItBe(whichday2));

? ? ? ? printf("Whichday[%d]: %s",i,formdate);

? ? }



? ? return 1;

}





Returns:

Code:
[02:49:57] Whichday[0]: 14.09



... working fine till first day of a month but then:



[02:49:57] Whichday[12]: 02.09



[02:49:57] Whichday[13]: 01.09



[02:49:57] Whichday[14]: 00.09



[02:49:57] Whichday[15]: -1.09



[02:49:57] Whichday[16]: -2.09



[02:49:57] Whichday[17]: -3.09



[02:49:57] Whichday[18]: -4.09



[02:49:57] Whichday[19]: -5.09





Im using this to get the last 7 days in dd.mm format, after 01.09 it should actually show 31.08 but returns 00.09 ... -1.09 for me



Hope someone can help me with that.


  Question about skin and team ...
Posted by: DaZzY - 2020-10-13, 06:25 PM - Forum: Pawn Scripting - Replies (12)

Hello i have a Gamemode with many teams ... ( TDM )

And i have a team Justice with 3 skin ( cops , swat , army )

I want army skin have a different spawn position not like cops and swat? ( cops , swat , army are the same teams )

there is some of?my code :

Quote:new const Float:g_SpawnJustice[][4] = {
{-2190.1560, 613.9122,35.1641,116.1742},//
{-2185.8408, 704.4630,53.8906,248.9940},
{-2206.7517, 665.4793,49.4375,175.6908}
};


case 2: { //>>>>>>>>>> THIS case is on OnPlayerSpawn...

? ?
? /
?
? ? ? ? ? ? iRandom = random(sizeof(g_SpawnJustice));
SetPlayerPos(playerid, g_SpawnJustice[iRandom][0], g_SpawnJustice[iRandom][1], g_SpawnJustice[iRandom][2]);
SetPlayerFacingAngle(playerid, g_SpawnJustice[iRandom][3]);

}

I have used?if(GetPlayerSkin(playerid) == 287) army skin and that does'nt work??

Help please :D and i know my english sorry ...


  This may be deleted.
Posted by: Willcnr09 - 2020-10-13, 06:12 PM - Forum: Pawn Scripting - Replies (1)

This may be deleted.