| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 6,723
» Latest member: rentmax01
» Forum threads: 2,512
» Forum posts: 12,589
Full Statistics
|
| Online Users |
There are currently 323 online users. » 0 Member(s) | 320 Guest(s) Bing, Google, Yandex
|
| Latest Threads |
[LIVE] [FRESH START] Ulti...
Forum: Advertisements
Last Post: Neville
3 hours ago
» Replies: 1
» Views: 209
|
[ULP] Gamemode Base para ...
Forum: Offtopic
Last Post: xcleone
Yesterday, 02:22 AM
» Replies: 0
» Views: 144
|
RSC - (CW/TG | Sandbox)
Forum: Gamemodes
Last Post: 1NS
2026-07-23, 05:28 PM
» Replies: 0
» Views: 40
|
🎮 Free SA-MP Server Hosti...
Forum: Chat
Last Post: Centnodes
2026-07-23, 03:55 PM
» Replies: 16
» Views: 6,502
|
Waklert 150 Armodafinil f...
Forum: Chat
Last Post: Alintawilliams00
2026-07-23, 10:25 AM
» Replies: 0
» Views: 24
|
Waklert 150 Australia Th...
Forum: General Discussions
Last Post: barrymarshal00
2026-07-23, 09:11 AM
» Replies: 0
» Views: 37
|
Issue
Forum: General Discussions
Last Post: avoid
2026-07-21, 12:27 PM
» Replies: 0
» Views: 47
|
VPN/Proxy Block for Your ...
Forum: Libraries
Last Post: Crazy_ArKzX
2026-07-18, 03:01 AM
» Replies: 0
» Views: 83
|
Anti VPN/Proxy pro seu Se...
Forum: Portuguese/Português
Last Post: Crazy_ArKzX
2026-07-18, 02:59 AM
» Replies: 0
» Views: 77
|
Unban
Forum: Chat
Last Post: _Levii
2026-07-17, 09:41 PM
» Replies: 0
» Views: 86
|
|
|
| mysql_query to tquery inline |
|
Posted by: Zow - 2021-04-23, 05:07 PM - Forum: Pawn Scripting
- Replies (1)
|
 |
this one work
Code: GetVehicleCount(playerid)
{
? ? new threadCheck[128], count;
? ? mysql_format(ourConnection, threadCheck, sizeof(threadCheck), "SELECT COUNT(*) FROM vehicles WHERE VehicleOwnerDBID = %d", PlayerInfo[playerid][pDBID]);
? ? new Cache: result = mysql_query(ourConnection, threadCheck);
? ? cache_get_value_index_int(0, 0, count);
? ? cache_delete(result);
? ? return count;
}
this is first time to using inline but its not work as I expect
Code: GetVehicleCountEx(playerid) {
? ? new count;
? ? inline _CountVehicle()
? ? {
? ? ? ? new rows;
? ? ? ? if(cache_get_row_count(rows))
? ? ? ? {
? ? ? ? ? ? cache_get_value_index_int(0, 0, count);
? ? ? ? }
? ? }
? ? MySQL_TQueryInline(ourConnection, using inline _CountVehicle, "SELECT COUNT(*) FROM vehicles WHERE VehicleOwnerDBID = %d", PlayerInfo[playerid][pDBID]);
? ? return count;
}
|
|
|
|
| PAWN compiler on VSCode |
|
Posted by: Behemoth - 2021-04-22, 07:48 PM - Forum: Pawn Scripting
- Replies (2)
|
 |
Hi,
I've recently moved over to VSCode for programming and was wondering if anyone has ever used it for PAWN. If so, could you share how you've got the compiler working on it?
Tried playing around but I've had no luck.
Thanks
|
|
|
|
| HELP! How to Change RP name return chat remove underline OnPlayerText but return 0 ? |
|
Posted by: PutuSuhartawan - 2021-04-22, 10:50 AM - Forum: Pawn Scripting
- Replies (7)
|
 |
Code: public OnPlayerText(playerid, text[])
{
? //new AdaSays[90];
// format(AdaSays, sizeof(AdaSays), ""COL_WHITE"Says: %s", text);
// ProcessChatText(playerid, AdaSays);
? //TalkMessage(ACTION_DISTANCE, playerid, "", text);
? SEM(playerid, ""COL_RED"DEBUG: "COL_WHITE"message text example");
? new string[228];
? format(string, sizeof(string), "%s says: %s", GetRPName(playerid), text);
? CloseMessage(playerid, COLOR_WHITE, string);
? //format(string, sizeof(string), "%s says: %s", GetRPName(playerid), text);
//Log("logs/chatlogplayer.log", string);
? format(string,sizeof(string),"%s", text);
? SetPlayerChatBubble( playerid, string,0xFFFFFFFF,20.0,5500);
? return 1;
}
|
|
|
|
| How to get the exacly pos where a bomb drops? |
|
Posted by: annety - 2021-04-20, 06:03 AM - Forum: Support
- Replies (4)
|
 |
I want to make a server with a good PvP like CS-GO
For that i need to make good granades: like smoke,flash,molotov
The effect i can manage to do by using textdraws, create explosion, drunk effect...
But there is only a thing i need someone with more expirience to help me:
How to get the exacly position where bombs when players throw?
To create that flashbang,smoke,molotov effect...
How to get it?
|
|
|
|
| GPS Like GTA 4? |
|
Posted by: Boxi - 2021-04-20, 03:20 AM - Forum: Pawn Scripting
- Replies (3)
|
 |
I would like to know is there any way to make this style of gps, which is marked on the map the path to follow as seen in the image:?
|
|
|
|
|