Search Results
/gcolor is command for gang color it will not spawn you in your team spawn problem is in command /spawnme show the code of /spawnme command
189
change
PHP код:
format(PlayerInfo[playerid][Status], 11, "General Administrator");Â
to
PHP код:
format(PlayerInfo[playerid][Status], 25, "General Administrator");Â
290
1 question why you are using this code for getting player cash?
PHP Code:
Dinero(playerid, Dinero) //542 line
{
    new
   Â
        Dinero = GetPlayerMoney(playerid)
   Â...
173
PHP Code:
new countvar=4;//Top on script
forward CountDOwn();
public CountDown()
{
       if(countvar != 0)
       {
                countvar--;
      ...
856
PHP код:
if(PlayerInfo[iPlayer][power] > PlayerInfo[playerid][power]) return KickAdmin(playerid);Â
164
Try this
PHP код:
CMD:asellallhouses(playerid, params[])
{
    if (PlayerInfo[playerid][pAdmin] >= 4)
    {
        new playername[MAX_PLAYER_NAME];
        GetP...
278
Working fine for me i have tested this code
give a try with this example
PHP код:
//on top of script
new zone1;Â
then
PHP код:
public OnGameModeInit()
{
    zone1 ...
360
Try to flash with different color like
PHP код:
GangZoneFlashForPlayer(playerid, spk, 0xFF0000FF);Â
360
try this
PHP код:
stock SetPlayerPosaoCP(playerid, Float:X, Float:Y, Float:Z, Float:size)
{
    if(PosaoCP[playerid])
    {
    DestroyDynamicCP(PosaoCP[playerid]);
    }
...
156
change this
PHP код:
    foreach(new i : Player)
    {
        if(PlayerInfo[i][pHelper] > 0 && !PlayerInfo[i][pToggleHelper] || PlayerInfo[i][pAdmin] >...
289
something like that
PHP код:
public OnPlayerSpawn(playerid)
{
SetPlayerVirtualWorld(playerid, playerid+1);
return 1;
}Â
It will assign virtual world id with playerid+1 like if anyone ...
176
PHP код:
if(PlayerInfo[playerid][pHelper] < 1 && PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use th...
289
try this
PHP код:
CMD:hc(playerid, params[])
{
    if(PlayerInfo[playerid][pHelper] < 1 || PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid, COLOR_GREY, ...
289
Try this
PHP код:
enum MapInfo
{
        Float:XPOS,
        Float:YPOS,
        Float:ZPOS
};
new Float:gMapSpawns1[][MapInfo] =
{
        //Coords   Â...
340
Edit
Try this
PHP код:
CMD:c(playerid, params[])
{
if(!IsPlayerAnyClanMember(playerid)) return SendClientMessage(playerid, -1, "Error: You aren't in any clan.");
if(isnull(params))Â...
166
Tested on my server working perfect give a try
PHP код:
CMD:setvip(playerid, params[])
{
         new months,str[128],ID;
         if(!IsPlayerAdmin(playerid) || pInfo[pla...
574
Command:
PHP код:
CMD:loc(playerid, params[])Â
{Â
    new giveplayerid, string[256], giveplayer[25];Â
    if(sscanf(params, "u", giveplayerid)) return SendClientMessage2(play...
376
Replacement
PHP код:
Houses[i][EHousePickup] = CreateDynamicPickup(Houses[i][EHouseOwnerSQLID]>0?19522:1273,16,Houses[i][EHouseX], Houses[i][EHouseY], Houses[i][EHouseZ]);Â
to
PH...
238
try this
PHP код:
new Float: PlayerPosX[MAX_PLAYERS], Float: PlayerPosY[MAX_PLAYERS], Float:PlayerPosZ[MAX_PLAYERS];//AT top
CMD:spec(playerid,params[])
{
    new Float:x, Floa...
211