Making a Roleplay Server on SA:MP
Hey guys I really need some help now.
During a tutorial I was told this..
-Open rp.pwn with pawno and search for "changeme" and change it.
I opened rp.pwn with the pawno application and found ''changeme'' but.. I don't know what to change it to! Can somebody please help? The guide doesn't tell me what to change it to?
These are the lines I have to modify..
Quote:
//===========================[MAIN]=============================================
main()
{
printf("-------------------------------------");
printf("changeme ");
printf("-------------------------------------");
printf("By Jafet Macario");
}
//==========================[CALLBACKS]=========================================
&
Quote:
//==============================================================================
printf("------ Engine System Started------- ");
SetGameModeText("changeme");
gettime(ghour, gminute, gsecond);
FixHour(ghour);
ghour = shifthour;
if (realtime)
{
new tmphour;
new tmpminute;
new tmpsecond;
gettime(tmphour, tmpminute, tmpsecond);
FixHour(tmphour);
tmphour = shifthour;
SetWorldTime(tmphour);
}
DisableInteriorEnterExits();
//============================[Menus]===========================================
Thanks in advance guys, I know I'm a noob.
Re: Making a Roleplay Server on SA:MP
Quote:
Originally Posted by
Jackx3rx
Hey guys I really need some help now.
During a tutorial I was told this..
-Open rp.pwn with pawno and search for "changeme" and change it.
I opened rp.pwn with the pawno application and found ''changeme'' but.. I don't know what to change it to! Can somebody please help? The guide doesn't tell me what to change it to?
These are the lines I have to modify..
&
Thanks in advance guys, I know I'm a noob.
SetGameModeText("changeme"); //What the Gamemode displays in the SAMP Browser like most servers have like horizon has HZ:RP v.xxxxxx
printf("changeme "); //Im guessing its just your server name maybe? not sure lol.
Re: Making a Roleplay Server on SA:MP
//===========================[MAIN]=============================================
main()
{
printf("-------------------------------------");
printf("changeme ");
printf("-------------------------------------");
printf("By Jafet Macario");
}
//==========================[CALLBACKS]=========================================
That one would be on your actual server when someone joins it would say (I'll use norulez's example):
//===========================[MAIN]=============================================
main()
{
printf("-------------------------------------");
printf("HZ:RP");
printf("-------------------------------------");
printf("By: Owner of HZ:RP");
}
//==========================[CALLBACKS]=========================================
Then, in-game it would look like this:
-------------------------------------
HZ:RP
-------------------------------------
By: Owner of HZ:RP