Forum: Scripting Help
01/03/2013, 09:09 AM
|
|
Replies: 13
Views: 147
|
Forum: Scripting Help
10/02/2013, 08:51 AM
|
|
Replies: 1
Views: 58
|
Forum: Scripting Help
10/02/2013, 08:07 AM
|
|
Replies: 4
Views: 104
|
Forum: Scripting Help
04/02/2013, 01:00 PM
|
|
Replies: 4
Views: 111
|
Forum: Scripting Help
27/01/2013, 03:57 PM
|
|
Replies: 8
Views: 150
|
Forum: Scripting Help
26/01/2013, 05:59 PM
|
|
Replies: 3
Views: 123
|
Forum: Scripting Help
19/01/2013, 07:28 AM
|
|
Replies: 1
Views: 108
|
Forum: Scripting Help
17/01/2013, 02:43 PM
|
|
Replies: 2
Views: 61
|
Forum: Scripting Help
17/01/2013, 02:38 PM
|
|
Replies: 3
Views: 90
Re: NPC
public OnFilterScriptInit()
{
ConnectNPC("MyFirstNPC","mynpc");
return 1;
}
I got OnFilterScriptInit
|
Forum: Scripting Help
17/01/2013, 02:33 PM
|
|
Replies: 3
Views: 90
NPC
I am tryng to create a NPC using http://forum.sa-mp.com/showthread.php?t=110195
but when I add the
public OnFilterScriptInit()
{
ConnectNPC("MyFirstNPC","mynpc");
return 1;
}
|
Forum: Scripting Help
15/01/2013, 01:20 PM
|
|
Replies: 8
Views: 253
|
Forum: Scripting Help
13/01/2013, 10:48 AM
|
|
Replies: 10
Views: 214
Re: VIP System Help
CMD:setvip(playerid, params[])
{
if (IsPlayerAdmin(playerid) )
{
new string[200], pos, level;
if(!params[0]||!(pos=chrfind(' ',params)+1)||!params[pos]) return SendClientMessage(playerid,...
|
Forum: Scripting Help
13/01/2013, 10:12 AM
|
|
Replies: 10
Views: 214
|
Forum: Scripting Help
13/01/2013, 09:39 AM
|
|
Replies: 10
Views: 214
|
Forum: Scripting Help
08/01/2013, 06:02 AM
|
|
Replies: 19
Views: 412
|
Forum: Scripting Help
03/01/2013, 02:36 PM
|
|
Replies: 5
Views: 115
|
Forum: Scripting Help
03/01/2013, 02:34 PM
|
|
Replies: 2
Views: 95
|
Forum: Scripting Help
03/01/2013, 02:30 PM
|
|
Replies: 3
Views: 97
|
Forum: Scripting Help
03/01/2013, 08:36 AM
|
|
Replies: 4
Views: 109
|
Forum: Scripting Help
02/01/2013, 09:36 PM
|
|
Replies: 5
Views: 102
|
Forum: Scripting Help
02/01/2013, 05:17 PM
|
|
Replies: 4
Views: 109
Re: Need help With this :D
#define COLORNAME COLOUR(colorpicker.com)
At that on the top of your screen but then
#define Prisonerscolor COLOUR
#define Commandoscolor COLOUR
Take the colour from colorpicker.com and add...
|
Forum: Scripting Help
02/01/2013, 05:14 PM
|
|
Replies: 2
Views: 95
Hospital SPAWN button bug.
Hello fellows,
I am creating my own GM, and I've stranded on OnPlayerDeath it's doing really weird.
I'do get the spawn button on death and when I press it I go to the hospital but I dont spawn?...
|
Forum: Scripting Help
02/01/2013, 01:03 PM
|
|
Replies: 14
Views: 1,210
Re: Trash Report With Reason
Cmon men if you can't do this =( maby look at samp wiki for string ect.
format(string, sizeof(string), "%s has marked your report invalid reason: %s", GetPlayerNameEx(playerid), reason);
|
Forum: Scripting Help
30/12/2012, 10:56 AM
|
|
Replies: 20
Views: 395
|
Forum: Scripting Help
30/12/2012, 10:50 AM
|
|
Replies: 20
Views: 395
Re: Warning 213 tag mismatch
enum hInfo//Naming the enum
{
hOwner[24],//This will be where it will store the house owner name, in a 24 bit size array.
hOwned,//To store if the house is owned or not.
hLevel,
hLocked,...
|