SA-MP Forums Archive
[HELP]SkinText - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [HELP]SkinText (/showthread.php?tid=138361)



[HELP]SkinText - Player63 - 01.04.2010

how to make a knife prefer a server such as what skin ID 107 and a written text on the middle of the green: Groove Street
If You Give me the code on other skin and get me. Thank you if someone will help me.


Re: [HELP]SkinText - Carlton - 01.04.2010

pawn Код:
public OnGameModeInit() {
   AddPlayerClass(107, 0.0, 0.0, 0.0, 3, 1, 0,0,0,0); // Classid 0
}

public OnPlayerRequestClass(playerid, classid) {
  switch(classid) {
    case 0: GameTextForPlayer(playerid, "~g~Grove Street", 3000, 3);
  }
}



Re: [HELP]SkinText - Player63 - 01.04.2010

thank you