Jump to content

Ryder_RO

Membru
  • Posts

    535
  • Joined

  • Last visited

    Never

Posts posted by Ryder_RO

  1. Care ma ajuta sa fac comanda asta in ZCMD :)

    NU imi iese :)))

    CMD:lasercol(playerid,params[]) {
    new tmp[256];
    tmp = strtok(cmdtext, idx);
    if (!strlen(tmp)) {
    SendClientMessage(playerid, 0x00E800FF, "Usage: /lasercol [color]");
    return 1;
    }
    if (!strcmp(tmp, "red", true)) SetPVarInt(playerid, "color", 18643);
    else if (!strcmp(tmp, "blue", true)) SetPVarInt(playerid, "color", 19080);
    else if (!strcmp(tmp, "pink", true)) SetPVarInt(playerid, "color", 19081);
    else if (!strcmp(tmp, "orange", true)) SetPVarInt(playerid, "color", 19082);
    else if (!strcmp(tmp, "green", true)) SetPVarInt(playerid, "color", 19083);
    else if (!strcmp(tmp, "yellow", true)) SetPVarInt(playerid, "color", 19084);
    else SendClientMessage(playerid, 0x00E800FF, "Colour not available!");
    return 1;
    }

  2. faci asa


    unde ai tu new mai adaugi:

    newText:TextDraw0;

    Asta o pui la OnGameModeInit
        Textdraw0 = TextDrawCreate(1.000000, 425.000000,"~r~aici Bagati Numele ~b~ sa va apara ~y~sub mapa");
        TextDrawFont(Textdraw0,0);
        TextDrawLetterSize(Textdraw0,0.698998, 2.299900);
        TextDrawColor(Textdraw0,0x0D30FF);
        TextDrawSetShadow(Textdraw0,1);
        TextDrawSetOutline(Textdraw1,1);
        TextDrawBackgroundColor(Textdraw0,0x0F60FF);
        TextDrawUseBox(Textdraw0,0);

    Asta o pui la OnPlayerConnect
    TextDrawShowForPlayer(playerid, TextDraw0);

  3. stuntman[]!" post="89651" timestamp="1313857183"]

    Incearca sa scoti Audio_CreateTCPServer din GM si FS...

    Vezi ca numele la file sa le ai exact, exemplu:

    - In scriptfiles sa ai "ladmin/users", iar tu sa scrii undeva prin script la OnPlayerSpawn "LAdmiN/UsErS" ( xD )

    Am scos tot ce continea RADIO

    Nu am asa ceva in scriptfiles sunt cele postate in arhiva lui Luxurion

  4. Am cea mai mare problema din univers:))

    Cand urc server-ul pe host , si intru pe el si imi aleg skinu dau spawn 2-3 si se inchide sv  :|

    Nu stiu ce sa ii mai fac

    am tot ce ii trebuie pluginuri scripfiles etc etc ..

    PS:La mine in pc merge perfect!

    Nu stiu daca va sti cineva dar incerc sa vad ce ziceti!

    EDIT: *** Audio_CreateTCPServer: Error binding socket: Address already in use dc da asta ? sa fie de la asta?

  5. Pune comanda de mai jos si vezi daca la fel face..(din cate stiu SGM folosea LuxAdmin)

    Inlocuiesti cmd aia cu cea de jos si vezi daca merge

    Si ar putea sa iti scada din cauza sa nu dai /setallcash 9999999999999("n" de 9 si atunci ti da  cu -)

    cand o probezi pe asta da /setallcash 0 si dupa /setallcash 50 (0 ca sa fie 0 bani ; 50 ca sa vezi daca ii da in crestere)

    dcmd_setallcash(playerid,params[])
    {
    	if(AccInfo[playerid][Level] >= 3)
    	{
    	    if(!strlen(params)) return
    	    SendClientMessage(playerid, LIGHTBLUE2, "Usage: /setallcash [Value]") &&
    		SendClientMessage(playerid, orange, "Function: Will set a specified value in Money for all players");
    		new var = strval(params), string[128];
           	SendCommandToAdmins(playerid,"SetAllCash");
    		for(new i = 0; i < MAX_PLAYERS; i++)
    		{
    			if(IsPlayerConnected(i))
    			{
    				PlayerPlaySound(i,1057,0.0,0.0,0.0);
    				ResetPlayerMoney(i);
    				GivePlayerMoney(i,var);
    			}
    		}
    		format(string,sizeof(string),"|- Administrator \"%s\" has set all Players Cash to '$%d' -|", pName(playerid), var );
    		return SendClientMessageToAll(blue, string);
    	}
    	else return ErrorMessages(playerid, 1);
    }

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.