| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 6,640
» Latest member: brunorsch
» Forum threads: 2,475
» Forum posts: 12,524
Full Statistics
|
| Online Users |
There are currently 163 online users. » 1 Member(s) | 157 Guest(s) Applebot, DuckDuckGo, Bing, Google, Yandex, moatasem.saidi
|
| Latest Threads |
Indonesian
Forum: Other
Last Post: 14March
2026-06-04, 02:31 PM
» Replies: 9
» Views: 18,122
|
GTA-MULIPLAYER.CZ
Forum: Advertisements
Last Post: xInVinCiBlE
2026-06-04, 09:02 AM
» Replies: 0
» Views: 39
|
SS7CMD v1.0.0
Forum: Libraries
Last Post: Saints7
2026-06-03, 11:57 AM
» Replies: 2
» Views: 154
|
open.mp Dashboard
Forum: Chat
Last Post: Xyranaut
2026-06-03, 11:52 AM
» Replies: 8
» Views: 428
|
Gametext styles
Forum: Russian/Русский
Last Post: Nexius
2026-06-03, 11:19 AM
» Replies: 2
» Views: 2,550
|
CZ CNR cops and robbers
Forum: Advertisements
Last Post: Mhmd m
2026-06-03, 11:01 AM
» Replies: 0
» Views: 46
|
MySQL for open.mp
Forum: Plugins
Last Post: Xyranaut
2026-06-01, 09:17 PM
» Replies: 0
» Views: 106
|
Hosted tab in 2023
Forum: General Discussions
Last Post: Mhmd m
2026-06-01, 06:38 PM
» Replies: 7
» Views: 11,740
|
FCNPC for open.mp
Forum: Pawn Scripting
Last Post: Nexius
2026-06-01, 12:59 PM
» Replies: 8
» Views: 8,338
|
pawnobots for openmp
Forum: Pawn Scripting
Last Post: Nexius
2026-06-01, 12:57 PM
» Replies: 1
» Views: 181
|
|
|
| Message separator issue |
|
Posted by: unix - 2021-04-24, 02:05 AM - Forum: Pawn Scripting
- No Replies
|
 |
Hello,
I am having an issue with the code below - it only works once for one player which has the ascending player id - for other it will just bug out and send out 2 dots ".." completely not doing the work as previously for the asc. player id.
Code: stock SendMessageToPlayer(playerid, color, text[], len = 124)
{
new
? ? text2[ 256 ],
maxstring = 384;
if(strlen(text) > len)
{
? ? strmid(text2, text, len, maxstring);
? ? strdel(text, len, maxstring);
? ? strins(text, " ..", len, maxstring);
? ? strins(text2, ".. ", 0, maxstring);
? ? SendClientMessage(playerid, color, text);
? ? SendClientMessage(playerid, color, text2);
? ? return 1;
}
else return SendClientMessage(playerid, color, text);
}
|
|
|
|
| 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;
}
|
|
|
|
|