21.06.2015, 12:51
Just Copy then paste.
This example:
I hope you like this!
This example:
pawn Код:
CMD:credits(playerid,params[])
{
new wlcm[556];
strcat(wlcm, "{FFFF00}YOUR_SERVER_NAME™ Credits!\n\n");
strcat(wlcm, "{00FF00}Server Founder:{FFFFFF}\n");
strcat(wlcm, "- YOUR_NAME_HERE \n\n");
strcat(wlcm, "{00FF00}Server Co-Owner:{FFFFFF}\n");
strcat(wlcm, "- .\n\n");
strcat(wlcm, "{00FF00}Beta Tester:\n{FFFFFF}");
strcat(wlcm, "- .\n\n");
strcat(wlcm, "{00FF00}Others:\n{FFFFFF}");
strcat(wlcm, "- a_samp : SA-MP Team\n");
strcat(wlcm, "- MySQL : BlueG\n");
strcat(wlcm, "- YSI : ****** \n");
strcat(wlcm, "- Streamer : Icnogto\n");
strcat(wlcm, "- Zcmd : Zeex\n");
strcat(wlcm, "- Business/House System : PowerPC\n");
strcat(wlcm, "- Group/Minigames/Job system and others.. : VenomMancer\n\n\n");
strcat(wlcm, "- We are suported by : Metro World !\n");
ShowPlayerDialog(playerid, 9100, DIALOG_STYLE_MSGBOX,"Server Credits", wlcm, "Ok", "");
return 1;
}