SA-MP Forums Archive
How to start scripting roleplay server ? - 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: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How to start scripting roleplay server ? (/showthread.php?tid=449465)



How to start scripting roleplay server ? - mangga36 - 08.07.2013

So guys , I'd like to create my own RP gamemode - but I dont know what the important thing to be created/script first - Indeed, now I can successfully create Register/Login sytem and some cmd - any suggstion SENIOR ?


Re: How to start scripting roleplay server ? - Akira297 - 08.07.2013

Get the basic dynamics onto it (/me's and /do's commands). Then work your way through everything else that would be required/needed.


Re: How to start scripting roleplay server ? - Sandiel - 08.07.2013

Just do as I do, create a time schedule. (This is taking it real slow though, to perfect it and what not, just take your time in everything for it to be great)
On the first day, create a login/registration system, make sure it's nice and not so buggy.
Second day, proceed to the tutorial/RP quiz.
Third day, you've now the freedom to start scripting systems, and fundementals to your server (Admin system, job system, gang system, faction system, chat system, hospital system etc etc)
- Just make a notepad with everything needed, and then sort them out the way you want to, for example I like to start with the ones more time consuming and hard to get them out of the way, then the rest is easy, hope this helps.


Re: How to start scripting roleplay server ? - mangga36 - 09.07.2013

Quote:
Originally Posted by Akira297
Посмотреть сообщение
Get the basic dynamics onto it (/me's and /do's commands). Then work your way through everything else that would be required/needed.
Okay - that's easy - thank's

Quote:
Originally Posted by Sandiel
Посмотреть сообщение
Just do as I do, create a time schedule. (This is taking it real slow though, to perfect it and what not, just take your time in everything for it to be great)
On the first day, create a login/registration system, make sure it's nice and not so buggy.
Second day, proceed to the tutorial/RP quiz.
Third day, you've now the freedom to start scripting systems, and fundementals to your server (Admin system, job system, gang system, faction system, chat system, hospital system etc etc)
- Just make a notepad with everything needed, and then sort them out the way you want to, for example I like to start with the ones more time consuming and hard to get them out of the way, then the rest is easy, hope this helps.
and...this is little hard - by the way thank's - its really help me - I'll do more reasearh


Re: How to start scripting roleplay server ? - Sandiel - 09.07.2013

Quote:
Originally Posted by mangga36
Посмотреть сообщение
Okay - that's easy - thank's


and...this is little hard - by the way thank's - its really help me - I'll do more reasearh
Ironically, this was made to ease pain while creating a gamemode from scratch, and have it cleaner and more neat


Re: How to start scripting roleplay server ? - carz0159 - 09.07.2013

Start by defining everything, do simple commands, /rules /help / credits
then do a login/register system
then admin system
server side money etc etc.


Re: How to start scripting roleplay server ? - [HiC]TheKiller - 09.07.2013

I would highly suggest against creating a roleplay gamemode if you have little experience. I would suggest just creating a few smaller scripts to gain experience first.


Re: How to start scripting roleplay server ? - mangga36 - 09.07.2013

Alright here I dont understand :
I want to create a Quiz where a newbie register and then their will brought to this QUIZ using DIALOG_STYLE_LIST - maybe my code is wrong - this is my code:

This OnPlayerSpawn
Quote:

{
ShowPlayerDialog(playerid, 3, Dialog_STYLE_LIST, "What is OOC ?", "Out Of Characther \nOil Or Chill \nOut Of Community", "Proceed", "Quit");
return 1;
}

I add this OnDialogResponse (why case 3: ? because I already have dialog id 1 and 2(register/login))
Quote:

else
{
switch(dialogid)
{
case 3:
if(!response)
{
SendClientMessage(playerid, BLUE, "You select LEAVE, you have been kick automaticly!");
Kick(playerid);
return 1;
}
switch(listitem)
{
case 0:
{
if(!reponse)
SendClientMessage(playerid, Yellow, "Correct!");
}
else if(!respone)
{
case 1:
{
SendClientMessage(playerid, RED, "Wrong!");
Kick(playerid):
}
else if(!response)
{
case 2:
{
SendClientMessage(playerid, RED, "Wrong!");
Kick(playerid):
}
}
}
return 1;
}

I know Im suck


Re: How to start scripting roleplay server ? - RALL0 - 09.07.2013

Just take my advice, creating another roleplay server/script will be a waste of time. Why? Because it is too mainstream there are lots of RP servers and barely any players are joining the servers. Only the populated servers stay alive, I would say be creative and come up with a very original idea. People like it


Re: How to start scripting roleplay server ? - mangga36 - 09.07.2013

Quote:

Just take my advice, creating another roleplay server/script will be a waste of time. Why? Because it is too mainstream there are lots of RP servers and barely any players are joining the servers. Only the populated servers stay alive, I would say be creative and come up with a very original idea. People like it.

Never mind, I just want to learning more programming language - I'd like to become programmer - That's it - btw thank's for the advice