#1

IF I CONNECT WITH A SKIN THEN IT SPAWNS WITH ORANGE NAME
BUT IT NEED TO BE ANOTHER NAMECOLORS!!
AND I CANNOT PICKUP JETPACKS!!
PLEASE HELP!

http://pastebin.com/mfb4b250
Reply
#2

do SetPlayerColor on OnPlayerSpawn
Reply
#3

Quote:
Originally Posted by saiberfun
do SetPlayerColor on OnPlayerSpawn
how do you mean?
Reply
#4

pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerColor(playerid, 0xFFFF00AA);
return 1;
}
And please turn your caps off.
Reply
#5

Jetpack pickups do not work.

pawn Код:
dcmd_givejetpack(playerid, params[])
{
  if(!strlen(params))
  {
    SetPlayerSpecialAction(playerid, SPECIAL_ACTION_USE_JETPACK);
    return 1;
  }
  else
  {
    new targetid = strval(params);
    SetPlayerSpecialAction(targetid, SPECIAL_ACTION_USE_JETPACK);
    return 1;
  }
  return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)