Needed /omanagers
#1

I Want /omanagers Command In Zcmd

Becuase I Create One Org System So I Want /omanagers So I Can See orgmanagers online
without dialogs i need if you can help me pls thnx
Reply
#2

This is by no means the right place to post if you're simply requesting a script. Is there a certain part of the script that you're confused about or are you just looking for a hand out?
Reply
#3

Calling yourself a scripter whilst you can't make a single command, please bro.
Reply
#4

ahhh i just want 1 command /omanagers
Reply
#5

PHP код:
CMD:omanagers(playeridparams[])
    return 
1
no need to thank me
Reply
#6

Quote:
Originally Posted by Toroi
Посмотреть сообщение
PHP код:
CMD:omanagers(playeridparams[])
    return 
1
no need to thank me
wow, what a clever^
yeah btw you are right,
he need commands " omanagers "
so you are giving him the CMDmanagers, nice xD
Reply
#7

DOnt Joke Pls Be Serious

I want omanagers command to see online org managers

please help me
Reply
#8

Maybe show us your org manager code? And we try to make /omanagers according to it.
Reply
#9

Quote:

This is by no means the right place to post if you're simply requesting a script. Is there a certain part of the script that you're confused about or are you just looking for a hand out?

Quote:

Calling yourself a scripter whilst you can't make a single command, please bro.

Quote:

no need to thank me
__________________
Scripting Help in a nutshell

Quote:

wow, what a clever^
yeah btw you are right,
he need commands " omanagers "
so you are giving him the CMDmanagers, nice xD

Quote:

Maybe show us your org manager code? And we try to make /omanagers according to it.

ThankYou All

I Created My Own /omanagers

Quote:

/** This Is My Own CMD I Created In 10 Min **/
#include <a_samp>
#include <zcmd>
#define OM_LEVEL_1 "Org Manager"

stock OLVL(lvl)
{
new string[128];
switch(lvl)
{
case 1:
{
format(string, 128, "%s %s", LEVEL_1_COLOR, OM_LEVEL_1);
}
}
return string;
}
stock RPN(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
return name;
}

CMDmanagers(playerid, params[])
{
new moneys1, string[128];
for (new i = 0; i < PLAYERS; i++)
{
if (IsPlayerConnected2(i))
{
if (olvl[playerid] > 0)
{
moneys1++;
}
else if(olvl[playerid] == 1)
{
if(olvl[playerid] > 0)
{
moneys1++;
}
}
}
}
if (moneys1 != 0)
{
SendClientMessage(playerid, COLOR_ADMIN, "• • Online Org Managers • •");
new p=6;
while (p > 0)
{
for (new i = 0; i < PLAYERS; i++)
{
if (olvl[i] == p)
{
format(string, 128, "{FFFFFF}%s", RPN(i), OLVL(p),p);
SendClientMessage(playerid, COLOR_WHITE, string);
}
else if(olvl[i] == p)
{
if(olvl[playerid] == 1)
{
format(string, 128, "{FFFFFF}%s", RPN(i), OLVL(p),p);
SendClientMessage(playerid, COLOR_WHITE, string);
}
}
}
p--;
}
}
else SendClientMessage(playerid, COLOR_RED, "There are currently no Org Managers online.");
return 1;
}

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)