rp commands.
#1

Hi Im finding very difficult to create /act [action] command /s for shout and /n for ooc.

I manage to create /me only.

Plus I cant hear players from far away. bigears its called how to fix it?
Reply
#2

without any code I don't think anyone will be able to help you
we know nothing about your script except you want these commands.

we don't even know if your using strcmp,dcmd,zcmd,ycmd, ect.. ect...
i'm not trying to be rude, I cannot guess what your script looks like
if you'd like help then post more info and some code you need fixed,
along with any errors you may be getting
Reply
#3

Im not using anything just standard.
#include <a_samp>
#include <sscanf2>
#include <SII>
#include <dini>
#include <streamer>
#define MAX_REMOVED_OBJECTS 500
#include <removebuilding>
Reply
#4

Lemme whip something up.
Will post when done.
Reply
#5

pawn Код:
CMD:act(playerid, params[])
{
    new
        action[128],
        user[MAX_PLAYER_NAME];
       
    if(sscanf(params, "s", params)) return SendClientMessage(playerid, COLOR_GREY, "USAGE: /act [action]");

    else {
    GetPlayerName(playerid, user, sizeof user);
    format(action, sizeof(action), "* %s ((%s))", params, user);
    }
    return 1;
}
Reply
#6

thanks man! but im not using zcmd or anything just straight.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)