SA-MP Forums Archive
How? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: How? (/showthread.php?tid=317098)



How? - PhilippinesRoleplay - 09.02.2012

How can i report a server for advertising and fucking my server?


one of there members go to my server and /ddname [IP of there Server] all the Factions and Gangs


Re: How? - sansabadawg - 10.02.2012

I'm not sure you can report a server for doing that, it's really an issue between you and the other server. Just make sure they don't do it again.


Re: How? - Guest9328472398472 - 10.02.2012

Prob cause your using the NGG script. And certain people hate people that try to copy others...And you can't report a server...you handle it on your own!


Re: How? - Scenario - 10.02.2012

Quote:
Originally Posted by Brandon Javorsky
Посмотреть сообщение
Prob cause your using the NGG script. And certain people hate people that try to copy others...And you can't report a server...you handle it on your own!
Wrong.

You can email the SA-MP team with PROOF of any accusations made against another forum user, or server.

team@sa-mp.com


Re: How? - SampLoverNo123 - 10.02.2012

You must make something in your script, like as you say you are using NGRP script, Change the CMD:ddname's power,, I mean look-

Change your command from-
pawn Код:
CMD:ddname(playerid, params[])
{
    if(PlayerInfo[playerid][pAdmin] < 4 && PlayerInfo[playerid][pShopTech] < 1)
    {
        SendClientMessageEx(playerid, COLOR_GRAD2, "You are not authorized to use that command!");
        return 1;
    }

    new string[128], doorid, doorname[128];

    if(sscanf(params, "ds[128]", doorid, doorname)) return SendClientMessageEx(playerid, COLOR_WHITE, "USAGE: /ddname [doorid] [name]");

    format(DDoorsInfo[doorid][ddDescription], 128, "%s", doorname);
    SendClientMessageEx(playerid, COLOR_WHITE, "You have changed the name of the door!");
    if(IsValidDynamicPickup(DDoorsInfo[doorid][ddPickupID])) DestroyDynamicPickup(DDoorsInfo[doorid][ddPickupID]);
    if(IsValidDynamic3DTextLabel(DDoorsInfo[doorid][ddTextID])) DestroyDynamic3DTextLabel(DDoorsInfo[doorid][ddTextID]);
    CreateDynamicDoor(doorid);
    SaveDynamicDoors();

    format(string, sizeof(string), "%s has edited DoorID %d's Name to %s.", GetPlayerNameEx(playerid), doorid, doorname);
    Log("logs/ddedit.log", string);
    return 1;
}
To

pawn Код:
CMD:ddname(playerid, params[])
{
    if(PlayerInfo[playerid][pAdmin] < 99999)// change 2 to 99999, that's good for now i think
    {
        SendClientMessageEx(playerid, COLOR_GRAD2, "You are not authorized to use that command!");
        return 1;
    }

    new string[128], doorid, doorname[128];

    if(sscanf(params, "ds[128]", doorid, doorname)) return SendClientMessageEx(playerid, COLOR_WHITE, "USAGE: /ddname [doorid] [name]");

    format(DDoorsInfo[doorid][ddDescription], 128, "%s", doorname);
    SendClientMessageEx(playerid, COLOR_WHITE, "You have changed the name of the door!");
    if(IsValidDynamicPickup(DDoorsInfo[doorid][ddPickupID])) DestroyDynamicPickup(DDoorsInfo[doorid][ddPickupID]);
    if(IsValidDynamic3DTextLabel(DDoorsInfo[doorid][ddTextID])) DestroyDynamic3DTextLabel(DDoorsInfo[doorid][ddTextID]);
    CreateDynamicDoor(doorid);
    SaveDynamicDoors();

    format(string, sizeof(string), "%s has edited DoorID %d's Name to %s.", GetPlayerNameEx(playerid), doorid, doorname);
    Log("logs/ddedit.log", string);
    return 1;
}



Re: How? - Alex Valdez - 10.02.2012

There could be a backdoor in your script. Mind showing us your makeadmin command?, or someone makes them admin behind your back.