Vice City Multiplayer
VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: Mansoor ali on April 16, 2012, 05:44:02 pm
-
hi guyz i need player spawn system when i spawn as criminal server say that: *** You have spawned as a criminal.
and whan i spawn as cop , army , fbi , swat than server say that: *** You have spawned as a law enforcement person.
plz help me scripters!
-
Plz scripter help me plz :-[ :'(
-
What Class ID is for criminal ?
What Class ID is for cop/army/fbi/swat ?
-
What Class ID is for criminal ?
What Class ID is for cop/army/fbi/swat ?
SKIN_COP class id: 1
SKIN_SWAT class id: 2
SKIN_FBI class id: 3
SKIN_ARMY class id: 4
SKIN_CRIMINAL class id: 11
-
Put at OnPlayerSpawn:
if(classid == 1 || classid == 2 || classid == 3 || classid == 4) {
SendClientMessage(playerid,COLOR_YELLOW,"*** You have spawned as a law enforcement person.");
}
if(classid == 11) {
SendClientMessage(playerid,COLOR_YELLOW,"*** You have spawned as a criminal.");
}
-
Thankx u r the best scripter 8) :o