| 
| Welcome, Guest |  
| You have to register before you can post on our site. 
 
 |  
 
 
 
| Online Users |  
| There are currently 268 online users. » 1 Member(s) | 263 Guest(s)
 Baidu,  Google,  Bing,  Facebook,  tonmoybiswas8767
 |  
 
| Latest Threads |  
| [GameMode] Brasil Vida Id... Forum: Portuguese/Portugu?s
 Last Post: Brasil Vida Ideal
 6 hours ago
 » Replies: 0
 » Views: 5
 |  
| Grand Gang War (GGW) Forum: Advertisements
 Last Post: coladaciren
 Yesterday, 10:00 AM
 » Replies: 0
 » Views: 20
 |  
| u4gm Battlefield 6 Season... Forum: Art
 Last Post: iiak32484
 Yesterday, 07:46 AM
 » Replies: 0
 » Views: 24
 |  
| u4gm Bonestorm Crushes Pa... Forum: Life
 Last Post: iiak32484
 Yesterday, 07:45 AM
 » Replies: 0
 » Views: 24
 |  
| u4gm FC 26 Ultimate Team ... Forum: Tech
 Last Post: iiak32484
 Yesterday, 07:43 AM
 » Replies: 0
 » Views: 28
 |  
| u4gm Battlefield 6 Season... Forum: Chat
 Last Post: iiak32484
 Yesterday, 07:42 AM
 » Replies: 0
 » Views: 16
 |  
| How to Use Sleep Pots for... Forum: General Discussions
 Last Post: BrightNestK
 2025-10-29, 07:03 AM
 » Replies: 0
 » Views: 31
 |  
| undefined symbol Forum: Portuguese/Portugu?s
 Last Post: leobradoks
 2025-10-25, 08:58 PM
 » Replies: 1
 » Views: 1,597
 |  
| SA:MP Custom Character Li... Forum: General Discussions
 Last Post: Dilshad
 2025-10-22, 04:15 PM
 » Replies: 0
 » Views: 66
 |  
| Anyone got old rp scripts... Forum: General Discussions
 Last Post: Bilal
 2025-10-21, 01:02 PM
 » Replies: 5
 » Views: 5,284
 |  
 |  | 
 
| Tutorial on Pawn |  
| Posted by: HydraLazy  - 2021-03-28, 11:04 AM - Forum: Questions and Suggestions 
- Replies (4) |  
| 
	
		
|  | 
				Hey,
 ? ? ? ?I have a message to open.mp team that there are many newbie want to learn pawn , I know there are many tutorial written but the problem is that its difficult to understand through reading and also there are many tutorial in videos but they are directly starting samp scripting not pawn basic. So I suggest to one of you should start video tutorial it will hel the whole world not only me
 
 
 
 Peace Out
 |  
		|  |  |  
 
|  rename file ini |  
| Posted by: Lord_Bukake  - 2021-03-27, 02:28 PM - Forum: Pawn Scripting 
- Replies (1) |  
| 
	
		
|  | 
				Hi, how can i rename a server .ini file?
 
 
 i'm doing a command to rename server ini files, but i can't find the function or method.
 
 Could you help me? thank u
 |  
		|  |  |  
 
| How to increase the size of DIALOG_STYLE_PASSWORD ? |  
| Posted by: CrypticSin  - 2021-03-26, 09:49 PM - Forum: Pawn Scripting 
- Replies (8) |  
| 
	
		
|  | 
				Hi im trying to figure out how to increase the size of this dialogue im using as it's currently at its default size.
 
 
 Is there a way to enlarge the box so the whole text of the title?is shown?
 
 
 
 
 
 
 
 
 PHP Code: ? ? ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD, "Title: With this text i can only see half of it, how to increase the dialogue size?", "Please enter a password below:", "Register", "Cancel"); 
 |  
		|  |  |  
 
 
| date_format convert to my language |  
| Posted by: Zow  - 2021-03-26, 12:01 PM - Forum: Pawn Scripting 
- No Replies |  
| 
	
		
|  | 
				 PHP Code: Month_Convert(month)
 
 
 {
 
 ? ? new string[12];
 
 ? ? new monthmsg[12];
 
 switch(month)
 
 {
 
 ? ? case 1:? monthmsg = "??????";
 
 ? ? case 2:? monthmsg = "??????????";
 
 ? ? case 3:? monthmsg = "??????";
 
 ? ? case 4:? monthmsg = "??????";
 
 ? ? case 5:? monthmsg = "???????";
 
 ? ? case 6:? monthmsg = "????????";
 
 ? ? case 7:? monthmsg = "???????";
 
 ? ? case 8:? monthmsg = "???????";
 
 ? ? case 9:? monthmsg = "???????";
 
 ? ? case 10: monthmsg = "??????";
 
 ? ? case 11: monthmsg = "?????????";
 
 ? ? case 12: monthmsg = "???????";
 
 }
 
 format(string, sizeof(string), "%s", monthmsg);
 
 return string;
 
 }
 
 
 
 
 
 PHP Code: hook OnPlayerLogin(playerid)
 {
 
 ? ? inline _LoadVIP()
 
 ? ? {
 
 ? ? ? ? new
 
 ? ? ? ? ? ? expire,
 
 ? ? ? ? ? ? expiry_date[3],
 
 ? ? ? ? ? ? expiry_month,
 
 ? ? ? ? ? ? expiry_year[5],
 
 ? ? ? ? ? ? expiry_time[10],
 
 ? ? ? ? ? ? rows
 
 ? ? ? ? ;
 
 
 
 ? ? ? ? cache_get_row_count(rows);
 
 
 
 ? ? ? ? if(rows) {
 
 ? ? ? ? ? ? cache_get_value_name_int(0, "vip_level", Player_VIPLevel[playerid]);
 
 ? ? ? ? ? ? cache_get_value_name(0, "expirydate", expiry_date, sizeof(expiry_date));
 
 ? ? ? ? ? ? cache_get_value_name_int(0, "expirymonth", expiry_month);
 
 ? ? ? ? ? ? cache_get_value_name(0, "expiryyear", expiry_year, sizeof(expiry_year));
 
 ? ? ? ? ? ? cache_get_value_name(0, "expirytime", expiry_time, sizeof(expiry_time));
 
 ? ? ? ? ? ? cache_get_value_name_int(0, "expire", expire);
 
 
 
 ? ? ? ? ? ? if (expire <= 0) {
 
 ? ? ? ? ? ? ? ? VIP_RemovePlayer(playerid);
 
 ? ? ? ? ? ? ? ? va_SendClientMessage(playerid, COLOR_RED, "VIP ????????????????? %s %s %s %s!", expiry_date, Month_Convert(expiry_month), expiry_year, expiry_time);
 
 ? ? ? ? ? ? ? ? Player_VIPLevel[playerid] = 0;
 
 ? ? ? ? ? ? ? ? return;
 
 ? ? ? ? ? ? }
 
 ? ? ? ? ? ? va_SendClientMessage(playerid, COLOR_BLUE, "?????? VIP ????? %d", VIP_GetPlayerLevel(playerid));
 
 ? ? ? ? ? ? va_SendClientMessage(playerid, COLOR_RED, "??????????? %s %s %s %s", expiry_date, Month_Convert(expiry_month), expiry_year, expiry_time);
 
 ? ? ? ? }
 
 ? ? }
 
 ? ? static const query[] = "\
 
 ? ? ? ? SELECT \
 
 ? ? ? ? ? ? vip_level, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '%%d') as expirydate, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '%%m') as expirymonth, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '%%Y') as expiryyear, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '%%T') as expirytime, \
 
 ? ? ? ? ? ? TIMESTAMPDIFF(SECOND, CURRENT_TIMESTAMP(), vip_expire_date) as expire \
 
 ? ? ? ? FROM \
 
 ? ? ? ? ? ? vips \
 
 ? ? ? ? WHERE \
 
 ? ? ? ? ? ? u_id = %d\
 
 ? ? ";
 
 
 
 ? ? MySQL_TQueryInline(MySQL_GetHandle(), using inline _LoadVIP, query, Player_GetAccountID(playerid));
 
 }
 
 
 I feel so weird to this one?
 
 any suggest? or just keep it
 
 
 
 
 PHP Code: ? ? static const query[] = "\
 ? ? ? ? SELECT \
 
 ? ? ? ? ? ? vip_level, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '%%d') as expirydate, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '%%m') as expirymonth, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '%%Y') as expiryyear, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '%%T') as expirytime, \
 
 ? ? ? ? ? ? TIMESTAMPDIFF(SECOND, CURRENT_TIMESTAMP(), vip_expire_date) as expire \
 
 ? ? ? ? FROM \
 
 ? ? ? ? ? ? vips \
 
 ? ? ? ? WHERE \
 
 ? ? ? ? ? ? u_id = %d\
 
 ? ? ";
 
 
 here's the original one from gta-open
 
 
 
 
 PHP Code: ? ? static const query[] = "\
 ? ? ? ? SELECT \
 
 ? ? ? ? ? ? vip_level, \
 
 ? ? ? ? ? ? DATE_FORMAT(vip_expire_date, '"SQL_DATETIME_FORMAT"') as expiry, \
 
 ? ? ? ? ? ? TIMESTAMPDIFF(SECOND, CURRENT_TIMESTAMP(), vip_expire_date) as expire \
 
 ? ? ? ? FROM \
 
 ? ? ? ? ? ? vips \
 
 ? ? ? ? WHERE \
 
 ? ? ? ? ? ? u_id = %d\
 
 ? ? ";
 
 |  
		|  |  |  
 
| How to add music to skin selection menu? |  
| Posted by: CrypticSin  - 2021-03-25, 08:35 PM - Forum: Pawn Scripting 
- Replies (4) |  
| 
	
		
|  | 
				Hi i'm trying to figure out how i can add music to a skin selection menu, i would appreciate it if someone can help thanks.
 
 
 
 Code: public OnPlayerRequestClass(playerid, classid)
 {
 
 SetPlayerPos(playerid, 2014.6443,1077.2521,48.8207);
 
 SetPlayerFacingAngle(playerid, 357.1971);
 
 SetPlayerCameraPos(playerid,? 2014.9019, 1083.7701, 49.8680);
 
 SetPlayerCameraLookAt(playerid, 2014.8658, 1082.7725, 49.7031);?
 
 return 1;
 
 }
 |  
		|  |  |  
 
| How do I prevent a player from getting into a specific car? |  
| Posted by: Boxi  - 2021-03-24, 06:49 PM - Forum: Pawn Scripting 
- Replies (4) |  
| 
	
		
|  | 
				Hello everyone C: a question, how do I make that a player can not enter a specific car? I explain:
 
 
 
 Code: new carvid_0;
 
 
 carvid_0?= CreateVehicle(506,539.846,-1287.868,16.946,359.176,6,0,-1);
 
 I need that they can't get into that specific vehicle, I can do it but only using the model of the car and that would prevent them from getting into all the cars of that model, but I only want that one. Does anyone know what I have to do? thanks c:
 |  
		|  |  |  
 
 
 |