Posts: 71
Threads: 16
Joined: Apr 2015
Код:
new Float:MMSpawns[][4] = {
{131.7872, 1062.7228, 29.4692,90.5000},
{131.2800, 1031.1852, 29.4692,2.7241},
{89.4745, 1031.3414, 29.8652,177.5425},
{90.0045, 1063.1929, 30.3272,6.7742},
{90.1623, 1097.7803, 30.3272,95.4250},
{131.8577, 1097.4308, 30.3272,353.9040},
{111.2754, 1077.2242, 14.9312},
{111.1654, 1053.0736, 14.9312}
};
try add angle
Код:
{111.2754, 1077.2242, 14.9312},
{111.1654, 1053.0736, 14.9312}
Posts: 201
Threads: 19
Joined: Dec 2013
Hey I'm not a scripter (cool)
but that is my first time to fix a bug,look,What should you do is to :
on line 57:
pawn Код:
if(InMM[playerid] == 1)return SendClientMessage( playerid, -1, ""0xFFFF00AA"ERROR: "0xFFFF00AA" You are already in a DM arena! Type /leave to exit!" );
replace it with this:
pawn Код:
if(InMM[playerid] == 1)return SendClientMessage( playerid, -1,"{0xFFFF00AA}ERROR: {0xFFFF00AA} You are already in a DM arena! Type /leave to exit!" );
Means to make the colors inside a { } not in "" ,because that made it doubled "
If it helped give me rep.Thanks for trying my fix.
Posts: 201
Threads: 19
Joined: Dec 2013
Quote:
Originally Posted by icra
To convert an ARGB color to RGB, just remove the last 2 and the first 2 characters from the string.
Example:
0xFFFF00AA = FFFF00
The code will become:
Код:
pawn Код:
if(InMM[playerid] == 1)return SendClientMessage( playerid, -1,"{FFFF00}ERROR: {FFFF00} You are already in a DM arena! Type /leave to exit!" );
|
Oh yeah,I forgot that first and last 2 characters ,Told you,my first fixing a code
Anyway,I hope me and icra helped.