| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 6,610
» Latest member: Karthik
» Forum threads: 2,453
» Forum posts: 12,483
Full Statistics
|
| Online Users |
There are currently 134 online users. » 0 Member(s) | 130 Guest(s) Bing, Google, Applebot, Yandex
|
| Latest Threads |
LS-RCR - Los Santos Rolep...
Forum: Advertisements
Last Post: Karthik
6 hours ago
» Replies: 0
» Views: 22
|
mysql_samp
Forum: Plugins
Last Post: NullSablex
7 hours ago
» Replies: 1
» Views: 344
|
How to make a command req...
Forum: General Discussions
Last Post: alejandrojoseph
Today, 07:59 AM
» Replies: 0
» Views: 22
|
Starting a Roleplay Serve...
Forum: Chat
Last Post: Jimmy96k
Yesterday, 10:14 PM
» Replies: 0
» Views: 29
|
Starting a Roleplay Serve...
Forum: General Discussions
Last Post: Jimmy96k
Yesterday, 09:56 PM
» Replies: 1
» Views: 39
|
[BETA] Renaissance DM — O...
Forum: Advertisements
Last Post: DrVandersexxx
Yesterday, 04:15 PM
» Replies: 1
» Views: 132
|
PROJECT: RENEWAL ROLEPLAY...
Forum: Advertisements
Last Post: zin
2026-05-16, 08:26 PM
» Replies: 1
» Views: 99
|
Map Pack by: AZZO #1
Forum: Maps
Last Post: MikeNGRP
2026-05-15, 08:52 AM
» Replies: 1
» Views: 1,995
|
[balkan] Ultimate 2020 - ...
Forum: Gamemodes
Last Post: Sardena
2026-05-15, 03:12 AM
» Replies: 11
» Views: 25,210
|
🚀 Free SA-MP Hosting + Op...
Forum: Chat
Last Post: Centnodes
2026-05-12, 05:20 PM
» Replies: 0
» Views: 115
|
|
|
| server launcher help |
|
Posted by: unbelievable_10 - 2019-07-09, 04:06 PM - Forum: Support
- Replies (3)
|
 |
i want to put in this code server password so when player connects through button that launcher (.exe) writes password for him
Code: [color=#000000][size=small] ? ? ? ?private void button1_Click(object sender, EventArgs e)
? ? ? ?{
? ? ? ? ? ?System.Diagnostics.Process.Start("samp://75.127.13.245:7780");
? ? ? ?}
[/size][/color]
|
|
|
|
| Better way of doing this ? |
|
Posted by: mouiz - 2019-07-07, 06:38 PM - Forum: Pawn Scripting
- Replies (1)
|
 |
Is there a better way of getting the size of an enum ?
Code: enum modes
{
? ??MODE_fgrs,
? ? MODE_gdsrg,
? ? MODE_lol,
? ? MODE_third
};
new Modes [modes];
new size = sizeof (Modes);
|
|
|
|
| How to solve this !? (Difficulty: Expert) |
|
Posted by: mouiz - 2019-07-07, 06:05 PM - Forum: Pawn Scripting
- Replies (2)
|
 |
I want to clear all the elements of an enumerator in an automatic manner using a stock so i won't need to update this stock everytime i add a new variable/element to the enum. But there is a problem, it works only if there are integer variables in the enum.?How can i make it work which?arrays and integers both :
Code: enum player_data
{
? ? password [26],
? ? player_mode,
? ? spawned,
? ? kills,
? ? deaths
};
stock ClearPlayerData (playerid)
{
? ??for (new i = 0; i < sizeof (PlayerInfo []); i)
? ? {
? ? ? ? PlayerInfo [playerid][player_data : i] = 0;
? ? }
? ? return 1;
}
|
|
|
|
|