Little help please.
#1

Hey guys!

Im in the process of making a Trucking Server im also using the PPC game mode. I'm in need of a few things, plus some questions.

-I'm looking for a AFK system that uses commands like.
/afk (on/off)
/afklist


-Vehicle Dealership script (so i can create places to buy trucks/cars, and edit what type of cars that are available to buy etc)

Questions.
-Because im running a trucking server on PPC, is there anyway i can disable weapons?
-With PPC how can i edit the ingame rules?
-With PPC, The chat is all sorts of colors, is there any possible way to make it more color coordinate?
For example:
(Say a player is in trucker class the class color is Orange. Chat would looking something like this)
Player123 : Hey All
Player456 : Welcome Back!l
(And Police come up like this)
Player789: Pull over please!

Then have all the Server messages one color instead of all different colors?

Also with people who use PPC, how can i change the log on/class selection screen?



+1 FOR HELPFUL ANSWERS
Reply
#2

One question,did you ever run it(open) the gamemode and there includes to check yourself ? becose from what you ask its look that you didnt
Reply
#3

I can help you throu afk system
pawn Код:
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_GREEN 0x00FF00AA

#define COLOR_RED 0xFF0000AA

#define COLOR_YELLOW 0xFFFF00AA

// >>> command
CMD:afk(playerid, params[])
{

   SendClientMessage(playerid, COLOR_YELLOW, "You are now AFK, type /back when you are back!");

   TogglePlayerControllable(playerid,0); // function that will not allowed the player to move
   label[playerid] = Create3DTextLabel("AFK",yellow,30.0,40.0,50.0,40.0,0); // On player head AFK
   Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7);

   new string3[164];
   new name[MAX_PLAYER_NAME];
   GetPlayerName(playerid, name, sizeof(name));

       format(string3, sizeof(string3), "{FF0000}[AFK INFO]: {FFFFFF}%s is now Away from the keyboard.{FF0000}(/afk)", name);

   SendClientMessageToAll(COLOR_YELLOW, string3);
   return 1;

}
CMD:back(playerid, params[])
{

   SendClientMessage(playerid, COLOR_YELLOW, "Welcome back!");
   TogglePlayerControllable(playerid,1);
   new string3[164];

   new name[MAX_PLAYER_NAME];

   GetPlayerName(playerid, name, sizeof(name));

 
   format(string3, sizeof(string3), "{FF0000}[INFO]: {FFFFFF}%s is now back and Playing.{FF0000}(/back)", name);
   SendClientMessageToAll(COLOR_YELLOW, string3);
   Delete3DTextLabel(Text3D:label[playerid]); // remove text from player head :D
   return 1;

}
Reply
#4

It would be better,if u open the folder pawno>includes n see there r many files,so open it n find it
Reply
#5

May i be annoying and ask how do i open the files in, pawno>includes?
Because when i try to open one in PAWNO.exe it say no matches found.
Reply
#6

Open the wich your text editor (i preffer notepad ++)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)