SA-MP Forums Archive
Server Information Command - 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: Server Information Command (/showthread.php?tid=404325)



Server Information Command - R9 - 02.01.2013

I have tried and make a command that will cause the admin writes /si so everyone can see it in the server. There should be a command where Server information. Can anyone do it?


Re: Server Information Command - aslan890 - 02.01.2013

What you trying to say i didn't get it actually can you explain a bit more pls


Re: Server Information Command - R9 - 02.01.2013

Quote:
Originally Posted by aslan890
Посмотреть сообщение
What you trying to say i didn't get it actually can you explain a bit more pls
Imagine /gov firmly but admin writes.


Re: Server Information Command - aslan890 - 02.01.2013

I didn't say make it short explanation lol just explain what you want ?


Re: Server Information Command - R9 - 02.01.2013

Quote:
Originally Posted by aslan890
Посмотреть сообщение
I didn't say make it short explanation lol just explain what you want ?
What I want is a command that let admins can write server information.

Example:
/si Soon the server to shut down.

You should be able to write /si (what you want to say) then, all of the server to see it.


Re: Server Information Command - aslan890 - 02.01.2013

Himm sorry can't help you with that i don't know that is well


Re: Server Information Command - Mr.Anonymous - 02.01.2013

Change whatever you need.
pawn Код:
COMMAND:si(playerid,params[])
    {
        if(IsPlayerConnected(playerid))
        {
            if(isnull(params)) return SendClientMessage(playerid,-1,"[Usage]: /si [announcement]");
            new string[128];
               
            SendClientMessageToAll(-1, "____________ Admin Announcement ___________");
            format(string, sizeof(string), "%s", params);
            SendClientMessageToAll(-1, string);
            SendClientMessageToAll(-1, "_______________________________________________________");
        }
        return 1;
    }



Re: Server Information Command - R9 - 02.01.2013

Quote:
Originally Posted by aslan890
Посмотреть сообщение
Himm sorry can't help you with that i don't know that is well
Try to help me on this

https://sampforum.blast.hk/showthread.php?tid=404318