You are viewing our Forum Archives. To view or take place in current topics click here.
Prestige emblem { code }
Posted:
Prestige emblem { code }Posted:
Status: Offline
Joined: Feb 08, 201113Year Member
Posts: 79
Reputation Power: 3
Status: Offline
Joined: Feb 08, 201113Year Member
Posts: 79
Reputation Power: 3
Put this in init()
precacheshader("rank_prestige10");
Put this in onplayerspawned()
self thread WelcomeText("Your text here", "Line 2", "rank_prestige10");
Put this in the same gsc anywhere...
WelcomeText(one,two,icon) {
welc = spawnStruct();
welc.titleText = one;
welc.notifyText = two;
welc.iconName = icon;
self maps\_hud_message::notifyMessage( welc );
}
put this if you want to use this on multiplayer add this
self maps\_hud_message::notifyMessage( welc );
precacheshader("rank_prestige10");
Put this in onplayerspawned()
self thread WelcomeText("Your text here", "Line 2", "rank_prestige10");
Put this in the same gsc anywhere...
WelcomeText(one,two,icon) {
welc = spawnStruct();
welc.titleText = one;
welc.notifyText = two;
welc.iconName = icon;
self maps\_hud_message::notifyMessage( welc );
}
put this if you want to use this on multiplayer add this
self maps\_hud_message::notifyMessage( welc );
You are viewing our Forum Archives. To view or take place in current topics click here.