SA-MP Forums Archive
help please - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: help please (/showthread.php?tid=497288)



help please - AhmedMohamed - 26.02.2014

when i type /lnhvhcdhsy any thing it didn't give me any thing and when i type An existing command it didn't give me any thing ??
what can i do ??


Re: help please - phoon - 26.02.2014

Post the command codes.


Re: help please - AhmedMohamed - 26.02.2014

too much lines : 5036 line


Re: help please - AhmedMohamed - 26.02.2014

any another one?? please i need heeelp :S


Re: help please - Mattakil - 26.02.2014

filterscript or gamemode? Were you maybe desynced? Did you try restarting the server? Relogging?

You're too vague for us to help


Re: help please - AhmedMohamed - 26.02.2014

it's gamemode , I restarted the server many times still the same problem.


Re: help please - TonyII - 26.02.2014

Show us one existing command we cannot help otherwise.


Re: help please - AhmedMohamed - 26.02.2014

btw it was good but I did some thing made it as you see but i dun know what i did
It's 1 Command:
Код:
CMD:givemoney(playerid, params[])
{
    new id, money, string[128], string2[128],plName[24],aName[24];
	GetPlayerName(playerid,aName,sizeof(aName));
	GetPlayerName(id,plName,sizeof(plName));
    if(PlayerInfo[playerid][Level] >= 3)
    {
        if(sscanf(params,"ii",id,money)) return SendClientMessage(playerid,COLOR_WHITE,"USAGE: /givemoney [ID] [amount]");
        else
        GivePlayerMoney(id,money);
        format(string, sizeof(string),"You have give player %s %d$!", plName, money);
        SendClientMessage(playerid, yellow, string);
        format(string2 ,sizeof(string2),"Administrator %s has given you %d$!", aName, money);
        SendClientMessage(id, blue, string2);
    }
    return 1;
}