SA-MP Forums Archive
HardRolePlay Basics - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP (https://sampforum.blast.hk/forumdisplay.php?fid=3)
+--- Forum: General (https://sampforum.blast.hk/forumdisplay.php?fid=13)
+--- Thread: HardRolePlay Basics (/showthread.php?tid=203347)



HardRolePlay Basics - SkizzoTrick - 26.12.2010

Hello everyone,
I am making a Hard RolePlay server.I already have 32.000 lines but i still need ideeas.
I've started this topic to ask you for ideeas.

What should a HARDRP Server has?Like "/me,/do,Vehicle System,House System..."
Please give ideea's xD
This will be usefull for everyone who wants a HardRP Community :P


Re: HardRolePlay Basics - Finn - 26.12.2010

cna u has /me command? thanks


Re: HardRolePlay Basics - SkizzoTrick - 26.12.2010

Quote:
Originally Posted by Finn
Посмотреть сообщение
cna u has /me command? thanks
What?.
Don't understand sorry xD
pawn Код:
if(strcmp(cmd, "/me", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(gPlayerLogged[playerid] == 0)
            {
                SendClientMessage(playerid, COLOR_GREY, "   You havent logged in yet !");
                return 1;
            }
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[128];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /me [action]");
                return 1;
            }
            format(string, sizeof(string), "* Admin %s", result);
            ProxDetector(30.0, playerid, string, COLOR_CHAT1,COLOR_CHAT2,COLOR_CHAT3,COLOR_CHAT4,COLOR_CHAT5);
        }
        return 1;
    }



Re: HardRolePlay Basics - Meinstad - 26.12.2010

What about a /MDC in police `?


Re: HardRolePlay Basics - SkizzoTrick - 26.12.2010

Yes,MDC is very important
Added.


Re: HardRolePlay Basics - Meinstad - 26.12.2010

And what about an business script ?


Re: HardRolePlay Basics - SkizzoTrick - 26.12.2010

Yes a HardRP Script should have:

House System
Vehicle System
Business System
Login/Register System
Job System
Faction System
Lot more.


Re: HardRolePlay Basics - Meinstad - 26.12.2010

You have right, I'll love help you at your way


Re: HardRolePlay Basics - Zeeman - 29.12.2010

Faction system, alot of jobs, fishing system, robbing system.