Quote:
Originally Posted by PGTips
Y_Less is not the only capable one of finding solutions you know
Yeh but ****** this error you get one result and its this page hes the only ne to get this error and its no in the way of his coding i dont think it maybe a Y_CMD bug or w.e but ive added his code to my script and i cant seem to get rid of it ive looked at the Y_CMD.inc and im trying to find omthing in there
|
Your a weird little fellow eh? Let me explain something. In one of SpankMe2's previous posts, he was willing to pay for a Y_INI system, I gave him an offer and he accepted. We go on MSN and funny thing is, he had the same photo on his display as you PGTips. And a funnier thing is that you reply to almost ALL his posts and without giving at least helpful information, you say that you can't find it either. Are you creating multiple accounts, 1 for questioning and 1 for answering cause you would feel ashame that people wouldn't think your smart enough? It seems that way. Funniest thing though, whenever your online into 5 minutes of the post, he goes offline. O_O
ON-TOPIC: Was doing a little research on YCMD and it's actually way more useful than ZCMD.
Here's an example of a YCMD command posted by Y_Less.
PHP Code:
YCMD:me(playerid, params[], help)
{
if (help)
{
SendClientMessage(playerid, 0xFF0000AA, "Sends an action to other players.");
}
else
{
new
str[128];
if (isnull(params))
{
format(str, sizeof (str), "Usage: \"/%s [action]\"", Command_GetDisplayNamed("me", playerid));
SendClientMessage(playerid, 0xFF0000AA, str);
}
else
{
GetPlayerName(playerid, str, sizeof (str));
format(str, sizeof (str), "* %s %s", str, params);
SendClientMessageToAll(0xFF0000AA, str);
}
}
return 1;
}
You can now make your own. I might even switch.