| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 375 online users. » 0 Member(s) | 370 Guest(s) Bing, Baidu, Google, Yandex, DuckDuckGo
|
| Latest Threads |
Ultimate Roleplay!!
Forum: Advertisements
Last Post: URP_Wrzosek
2025-11-03, 09:43 AM
» Replies: 2
» Views: 71
|
samp openmp scripts
Forum: German/Deutsch
Last Post: pauli
2025-11-01, 01:21 AM
» Replies: 0
» Views: 62
|
YGG-Reborn
Forum: Advertisements
Last Post: Mw10
2025-10-31, 08:12 AM
» Replies: 0
» Views: 66
|
[GameMode] Brasil Vida Id...
Forum: Portuguese/Portugu?s
Last Post: Brasil Vida Ideal
2025-10-31, 01:12 AM
» Replies: 0
» Views: 58
|
Grand Gang War (GGW)
Forum: Advertisements
Last Post: coladaciren
2025-10-30, 10:00 AM
» Replies: 0
» Views: 57
|
undefined symbol
Forum: Portuguese/Portugu?s
Last Post: leobradoks
2025-10-25, 08:58 PM
» Replies: 1
» Views: 1,625
|
SA:MP Custom Character Li...
Forum: General Discussions
Last Post: Dilshad
2025-10-22, 04:15 PM
» Replies: 0
» Views: 112
|
Anyone got old rp scripts...
Forum: General Discussions
Last Post: Bilal
2025-10-21, 01:02 PM
» Replies: 5
» Views: 5,349
|
Anyone has the SARP Gamem...
Forum: Gamemodes
Last Post: Bilal
2025-10-21, 12:59 PM
» Replies: 0
» Views: 179
|
SARP Gamemode
Forum: Releases
Last Post: Bilal
2025-10-21, 12:58 PM
» Replies: 0
» Views: 114
|
|
|
| DISCORD Chat - SERVER Chat |
|
Posted by: Sean17 - 2020-05-16, 08:55 AM - Forum: Pawn Scripting
- Replies (4)
|
 |
I'l trying to make a Discord - Server chat here's my code:
Code: public DCC_OnChannelMessage(DCC_Channel:channel, DCC_User:author, const message[])
{
new channel_name[100 1];
if(!DCC_GetChannelName(channel, channel_name))
return 0;
new user_name[32 1];
if (!DCC_GetUserName(author, user_name))
return 0;
new userid1[20];
DCC_GetUserId(author, userid1);
if(!strcmp(userid1, CHANNEL_ID)) return 0;
? ? if(channel != BotChannel) return 0;
new str[145];
format(str, sizeof str, "{667aca}[Discord] %s:{ffffff} %s", user_name, message);
? ? for(new i = 0; i < MAX_PLAYERS; i) {
? ? SendClientMessage(i, -1, str); }
? ? return 1;
?}
It dosn't work and also don't have errors...
|
|
|
|
| The Last of Us #Map progress |
|
Posted by: Agus - 2020-05-14, 05:08 AM - Forum: Videos and Screenshots
- Replies (5)
|
 |
THE LAST OF US
MAP PROGRESS
Hi, i'm one of the mappers on the mapping team?of?the server. We still searching new mappers and modders
who wants to join to the server. If you want to talk about it, talk with Riddick#6416 (owner of the server). Or go to the server discord.
?MAP CENTER
Quimey#0808 on discord
Ganton mapping progress started (theres only 40 objects created on this moment)
|
|
|
|
| YSI 5.X on linux compiler. |
|
Posted by: EvilShadeZ - 2020-05-12, 02:01 PM - Forum: Pawn Scripting
- Replies (1)
|
 |
Hello, I have encountered an issue where I can't include YSI in the script.
If I try to include it this way:
Code: #include <YSI_Coding/y_hooks>
The include directive works just fine, but YSI returns an error:
Code: fatal error 111: user error: Did you use `YSI/y_hooks` instead of `YSI\y_hooks`?
But if I try to include the way it wants
Code: #include <YSI_Coding\y_hooks>
fatal error 100: cannot read from file: "YSI_Coding\y_hooks"
So linux doesn't support '\' in paths, as it is a valid file name character.
This user error basically makes YSI incompatible on Linux.
Is there an actual reason why it was done that way?
Seems like #pragma compat 1 does fix my issue.
|
|
|
|
| Per-Player Stuff |
|
Posted by: Pinch - 2020-05-12, 07:51 AM - Forum: Questions and Suggestions
- No Replies
|
 |
There are many "Player"?natives and I dunno what Kye was thinking about?when creating these but some already do what I am intending to suggest?and some just have that Player prefix before the native name?and that's all...
For example, PVars are automatically set back to default values when a player disconnects
Player TextDraws are automatically destroyed too
So what about player objects and similar natives? It's literally just a word "Player" in cases like this
I think that everything related to Player (per-player) should automatically be destroyed or set to default values?on player disconnects by the API...
or -? Doesn't matter!?Just state your opinion on this, please!
EDIT: This is not just because I am lazy but because this clutters our scripts as it can be done internally by the API (faster than we'd do in pure PAWN too)...
|
|
|
|
| [MAP PACK] 5 NEW LS BUILDINGS |
|
Posted by: Name - 2020-05-12, 05:29 AM - Forum: Videos and Screenshots
- Replies (1)
|
 |
FIVE NEW BUILDINGS AROUND LOS SANTOS AREA
Good day! Feedback is always appreciated! Much love! <3
Idlewood warehouse (covering Idlewoods gas station (no object removing)).
Two round buildings around airport area.
Small bar building around Seville area.
New gas station駧Ⅺ碜 garage around Willowfield/Idlewood area.
Apartment complex and warehouse around skatepark (Glen Park) area.
Alright, that is it for now haha... Much love! Leave your thoughts, opinions..?feedback is always appreciated! :33
|
|
|
|
| Collisions & Texture Transparency |
|
Posted by: Manyula - 2020-05-11, 04:39 PM - Forum: Questions and Suggestions
- Replies (1)
|
 |
This is a two-part suggestion:
Part 1: Control over player collisions
SA:MP already gave us toggleable vehicle collisions. Why not have the same thing for player models?
The collision detection should include...
1. player-to-player collisions (Avoid collisions between multiple?players), and
2. bullet-to-player collisions (Allow bullets to traverse through a player)
Part 2: Texture transparency
Think of this as the visual component to collisions. You could make?a vehicle or player model semi-transparent as an indicator for turned off collisions or for the entity's?inability to interact with other players.
|
|
|
|
|