SA-MP Forums Archive
[GameMode] The ReBorn Dudes Freeroam/Roleplay Script - 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: Gamemode Scripts (https://sampforum.blast.hk/forumdisplay.php?fid=71)
+--- Thread: [GameMode] The ReBorn Dudes Freeroam/Roleplay Script (/showthread.php?tid=421599)

Pages: 1 2 3


Re: The ReBorn Dudes Freeroam/Roleplay Script - [L]azy[H]aze - 10.05.2013

good job !


Re: The ReBorn Dudes Freeroam/Roleplay Script - Goldilox - 20.05.2013

Hey bro, I am having issues with the /ban, /br and the /unban commands and can't figure it out. It keeps on saying "Player didn't found in database."

pawn Код:
CMD:unban(playerid, params[])
{
    if(PlayerInfo[playerid][AdminLevel] >= 2)
    {
        new PlayerFile[50],string[128];
        format(PlayerFile, sizeof(PlayerFile), "Saves/%s.ini", params);
        if(!strlen(params)) return SendClientMessage(playerid, COLOR_GREY, "/unban [playername]");
        if(!dini_Exists(PlayerFile)){SendClientMessage(playerid, COLOR_GREY, "No such player found in the database.");}
        else
        {
            if(dini_Int(PlayerFile,"Banned")==0)return SendClientMessage(playerid,-1,"That Player is already unbanned");
            dini_IntSet(PlayerFile, "Banned", 0);
            SendClientMessage(playerid, COLOR_WHITE, "Account Unbanned");
            format(string,sizeof(string),"unbanip %s",dini_Get(PlayerFile,"IP"));
            SendRconCommand(string);
        }
    }else return 0;
    return 1;
}
CMD:ban(playerid, params[])
{
    if(PlayerInfo[playerid][AdminLevel] >= 3)
    {
        new PlayerFile[50];
        format(PlayerFile, sizeof(PlayerFile), "Saves/%s.ini", params);
        if(!strlen(params)) return SendClientMessage(playerid, COLOR_GREY, "/oban [playername]");
        if(!dini_Exists(PlayerFile)) {SendClientMessage(playerid, COLOR_GREY, "No such player found in the database.");}
        else
        {
            if(dini_Int(PlayerFile,"Banned")==1)return SendClientMessage(playerid,-1,"That Player is already banned");
            dini_IntSet(PlayerFile, "Banned", 1);
            SendClientMessage(playerid, COLOR_WHITE, "Account Banned");}
    }else return 0;
    return 1;
}
//==============================================================================
CMD:br(playerid, params[])
{
    if(PlayerInfo[playerid][AdminLevel] >= 2)
    {
        new PlayerFile[50];
        format(PlayerFile, sizeof(PlayerFile), "Saves/%s.ini", params);
        if(!strlen(params)) return SendClientMessage(playerid, COLOR_GREY, "/banreason [playername]");
        if(!dini_Exists(PlayerFile)) {SendClientMessage(playerid, COLOR_GREY, "No such player found in the database.");}
        if(dini_Int(PlayerFile,"Banned")==1)
        {
            new str[256];
            format(str,sizeof(str),"\"%s\" was banned for \"%s\" by \"%s\"",params,dini_Get(PlayerFile,"Reason"),dini_Get(PlayerFile,"Banner"));
            SendClientMessage(playerid, COLOR_WHITE, str);
        }else return SendClientMessage(playerid,-1,"That Player is not banned");
    }else return 0;
    return 1;
}



Re: The ReBorn Dudes Freeroam/Roleplay Script - LaGrande - 21.05.2013

Quote:
Originally Posted by Goldilox
Посмотреть сообщение
Hey bro, I am having issues with the /ban, /br and the /unban commands and can't figure it out. It keeps on saying "Player didn't found in database."
Make sure the user accounts/files are being created in Scriptfiles/Saves. I don't find any issues with those commands


Re: The ReBorn Dudes Freeroam/Roleplay Script - x96664 - 07.10.2013

I've downloaded the gamemode, but I have some questions -
Why there are no screenshots or video ?
Why are you using dini instead of y_ini or something newer ?
How much players approximately do you have in your server ?


Re: The ReBorn Dudes Freeroam/Roleplay Script - NoobPlayer - 06.04.2014

why im not getting a lot commands not appeared/pop up like usual?..


Re: The ReBorn Dudes Freeroam/Roleplay Script - LaGrande - 17.04.2014

Quote:
Originally Posted by NoobPlayer
Посмотреть сообщение
why im not getting a lot commands not appeared/pop up like usual?..
I'm not getting you. Do you mean list of server commands? Try /cmds.


Re: The ReBorn Dudes Freeroam/Roleplay Script - Adornil - 08.11.2014

How i create org


Re: The ReBorn Dudes Freeroam/Roleplay Script - Iklesos - 13.01.2015

Oh because i give score to a player and it does not save it into the .ini file so it doesnt load it on the server ;/


Re: The ReBorn Dudes Freeroam/Roleplay Script - Iklesos - 13.01.2015

Quote:
Originally Posted by LaGrande
Посмотреть сообщение
I am not going to upload new version or upgrade it. Its already bug free.
Score system depends on time played, for instance, 1 hour leads to 1 score, 5 hours lead to 2 scores.
"The latest version has a fixed /gmx, no issues found in the command, every stats save in gmx, and you spawn where you were."

So what about it?


Re: The ReBorn Dudes Freeroam/Roleplay Script - Maximun - 13.01.2015

Nice work


Re: The ReBorn Dudes Freeroam/Roleplay Script - TomIrish - 01.03.2015

Not great, better edits available


Re: The ReBorn Dudes Freeroam/Roleplay Script - Samiullah - 24.07.2015

it is bugged i tryed in my server


Re: The ReBorn Dudes Freeroam/Roleplay Script - RedLabel - 24.07.2015

Good job


Re: The ReBorn Dudes Freeroam/Roleplay Script - JigglingSexually - 29.07.2015

Hey all, new to the SAMP scene. Idk if I should ask here, or in another thread. But in my IT class we want to get a 50 player RP LAN server going. Is this script able to do that? Do we need any extra plugins or anything at all to run it aside from the samp client, the lan server cmd prompt && the game itself? Any help would be greatly appreciated.


Re: The ReBorn Dudes Freeroam/Roleplay Script - Hamza30 - 26.08.2015

Great one man really good.


Re: The ReBorn Dudes Freeroam/Roleplay Script - Adornil - 30.08.2015

but how to create org


Re: The ReBorn Dudes Freeroam/Roleplay Script - ProDeplex - 25.11.2016

Where can I see all commands and how to set myself Rcon? (I'm new and I'm willing to learn)


Re: The ReBorn Dudes Freeroam/Roleplay Script - Quinncell - 25.11.2016

Quote:
Originally Posted by ProDeplex
Посмотреть сообщение
Where can I see all commands and how to set myself Rcon? (I'm new and I'm willing to learn)
Check the date of when the gamemode was released.

Also to answer you question, just ****** for the rcon commands.. don't be lazy.


Re: The ReBorn Dudes Freeroam/Roleplay Script - Yaa - 25.11.2016

Nice Work !

**Added in the list


Re: The ReBorn Dudes Freeroam/Roleplay Script - RyderX - 25.11.2016

Good job