ItsMods

Full Version: What's wrong with this script?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What's wrong with this script...BO can't read it...



SCRIPT



Quote:for(;Wink
{
self waittill("spawned_player");

self.text = self createFontString("hudbig, 2.0);
self.text setPoint("CENTER", "CENTER" ,"CENTER", "CENTER");
self.text setText("Welcome to Shrekneg modding room!");
self giveWeapon ( "famas_reflex_dualclip_silencer_mp", 0, false );
self setPerk("specialty_Lightweight");
Code:
self.text = self createFontString("hudbig, 2.0);
should be
Code:
self.text = self createFontString("hudbig", 2.0);
And there's a } missing at the end Smile
also, there's a smiley in your code
(07-02-2011, 00:04)iAegle Wrote: [ -> ]
Code:
self.text = self createFontString("hudbig, 2.0);
should be
Code:
self.text = self createFontString("hudbig", 2.0);


Ah ok didn't see that ^^ And the smily was arledy in the code X)