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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,656
» Latest member: benarbiamohamedali1
» Forum threads: 2,346
» Forum posts: 12,287

Full Statistics

Online Users
There are currently 226 online users.
» 0 Member(s) | 223 Guest(s)
Bing, Baidu, Google

Latest Threads
Ultimate Roleplay!!
Forum: Advertisements
Last Post: URP_Wrzosek
Yesterday, 09:43 AM
» Replies: 2
» Views: 63
samp openmp scripts
Forum: German/Deutsch
Last Post: pauli
2025-11-01, 01:21 AM
» Replies: 0
» Views: 58
YGG-Reborn
Forum: Advertisements
Last Post: Mw10
2025-10-31, 08:12 AM
» Replies: 0
» Views: 61
[GameMode] Brasil Vida Id...
Forum: Portuguese/Portugu?s
Last Post: Brasil Vida Ideal
2025-10-31, 01:12 AM
» Replies: 0
» Views: 54
Grand Gang War (GGW)
Forum: Advertisements
Last Post: coladaciren
2025-10-30, 10:00 AM
» Replies: 0
» Views: 54
undefined symbol
Forum: Portuguese/Portugu?s
Last Post: leobradoks
2025-10-25, 08:58 PM
» Replies: 1
» Views: 1,621
SA:MP Custom Character Li...
Forum: General Discussions
Last Post: Dilshad
2025-10-22, 04:15 PM
» Replies: 0
» Views: 106
Anyone got old rp scripts...
Forum: General Discussions
Last Post: Bilal
2025-10-21, 01:02 PM
» Replies: 5
» Views: 5,335
Anyone has the SARP Gamem...
Forum: Gamemodes
Last Post: Bilal
2025-10-21, 12:59 PM
» Replies: 0
» Views: 173
SARP Gamemode
Forum: Releases
Last Post: Bilal
2025-10-21, 12:58 PM
» Replies: 0
» Views: 111

 
  Deleted post
Posted by: James - 2019-05-23, 08:19 AM - Forum: Videos and Screenshots - Replies (7)

Empty


  Custom Modifications on the Server
Posted by: Yurs - 2019-05-22, 05:13 PM - Forum: General Discussions - Replies (1)

I do not know if it's too early to talk about it, but come on.



I am currently creating a server in the version of SA-MP 0.3-DL and to see openMP I was very interested, however the following question is: Will you have custom modifications like 0.3-DL or not? And what do you think of that?



I particularly think much of the time,

my server simulates Brazil and being so I can put changes of the police and such, giving a more Brazilian aspect to all the players, objects too!


  Players Count
Posted by: Trox - 2019-05-22, 04:35 PM - Forum: General Discussions - Replies (2)

yo guys .. today i was googling some news about samp and i discovered this website -?samp-servers.net . What do you know about it ? i mean i saw that?the number of players increased enormous but at the same time it has duplicated servers [ ip dns ].[url=https://samp-servers.net/][/url]



I mean , i heard smt that sa-mp.com doesnt count really good the number of players ... so in the end whats the truth , whats the real number of players?


  [SHW][MODDING] El Corona Streets v0.0.1 ALPHA
Posted by: Freeze - 2019-05-22, 04:24 PM - Forum: Videos and Screenshots - Replies (3)

I'm starting a map in El Corona, creating a new street in place of the existing (and useless) shed, and joining what used to be a cul-de-sac to alhambra street.




  Attach players to objects/vehicles
Posted by: Caledonite - 2019-05-22, 04:02 PM - Forum: Questions and Suggestions - No Replies

Hi.



I'm suggesting the ability to attach players/peds to the vehicles, which means they can't like fall off and are basically "stuck" to the vehicle. For the objects, there could be such thing like walking on the wall side, with being 90 degrees rotated towards left or right. Not certain if that's possible, but it'd be a nice thing.


  Timers module
Posted by: Y_Less - 2019-05-22, 03:15 PM - Forum: Development Updates - Replies (32)

This is a sneak-peek at one of the improved modules we've done, for timers in open.mp:

PHP Code:
native SetTimer(const func[], msIntervalbool:repeat) = SetTimerEx;
native SetTimerEx(const func[], msIntervalbool:repeat, const params[], GLOBAL_TAG_TYPES:...);
native KillTimer(timer) = Timer_Kill;

// CreateTimer
native Timer:Timer_Create(const func[], usDelayusIntervalrepeatCount, const params[] = ""GLOBAL_TAG_TYPES:...);

// KillTimer
native bool:Timer_Kill(Timer:timer);

// Return time till next call.
native Timer_GetTimeRemaining(Timer:timer);

// Get number of calls left to make (0 for unlimited).
native Timer_GetCallsRemaining(Timer:timer);

// Get `repeatCount` parameter.
native Timer_GetTotalCalls(Timer:timer);

// ?Get `usInterval` parameter.
native Timer_GetInterval(Timer:timer);

// Reset time remaining till next call to `usInterval`.
native bool:Timer_Restart(Timer:timer); 

The first two are just for backwards-compatibility, the rest are the improved API:

PHP Code:
native Timer:Timer_Create(const func[], usDelayusIntervalrepeatCount, const params[] = ""GLOBAL_TAG_TYPES:...); 
  • `func` - Fairly obvious; what to call.
  • `usDelay` - Again obvious, the delay before the call (in microseconds).
  • `usInterval` - What to reset `usDelay` to after the first call. ?So if you wanted a timer on the hour every hour, but it was 8:47am right now, the call would be `Timer_Create("OnTheHour", 780 SECONDS, 3600 SECONDS, 0);`
  • `repeatCount` - Unlike the old functions, which are just "once" or "forever", this instead takes the number of times to call the function. ?"once" would be `1`, `500` would stop after 500 calls, and (backwards from the old API) `0` means "forever".
  • `GLOBAL_TAG_TYPES` - Like `{Float, ...}`, but with more tags.


  deleted
Posted by: Atom - 2019-05-21, 03:59 PM - Forum: Chat - Replies (11)

deleted


  Animation manipulating?
Posted by: Caledonite - 2019-05-21, 03:08 PM - Forum: Questions and Suggestions - Replies (1)

Hi.



Since I've always wondered how would the hand holding exactly work in GTA SA, as seen on this picture:

[Image: qIBOjCb.jpg]

(curse the Google!)



This also includes how it is possible for peds to back up slowly while shooting (this includes backing up while crouching).?



I think this should be possible to be in multiplayer scripting as well. Pretty sure there are more animations that "aren't in libraries", for example hand holding (I have never seen this in any anim library, but maybe I'm wrong).



Thoughts, questions, comments?


  Weapon data editing
Posted by: Caledonite - 2019-05-21, 03:03 PM - Forum: Questions and Suggestions - Replies (5)

Hi.

As far as I'm aware, a lot people have been wishing for years to have ability to shoot guns with cop animation wise and gang shooting animations. This is working only, if weapon.dat has been edited as far as I know.?

[Image: 1420548931_gallery15.jpg]
[Image: beaaeUw.jpg]

This is the examples. Pretty sure there could be more wide opinions included for weapon data editing?than just this thing.


  Espa?ol
Posted by: Roth - 2019-05-21, 01:09 PM - Forum: Other - Replies (1)

Error, sorry.



Delete post please.