Originally posted by 911
got a script compile error bad syntax :O
you must of done something wrong cause it works fine for me. you must of missed a " or } just something little
---------- Post added at 07:56 AM ---------- Previous post was at 07:39 AM ----------
Originally posted by 911
got a script compile error bad syntax :O
sorry i posted it wrong . ill give you it ina sec
---------- Post added at 08:02 AM ---------- Previous post was at 07:56 AM ----------
Originally posted by 911
got a script compile error bad syntax :O
here, i didnt know what was wrong with it "/ and this is straight out of the patch that works fine.
call this in
self thread iSuckBalls("^1i^2J^3o^4k^5a^6a^1's ^2L^3o^4b^5b^6y");
and then here is the code
iSuckBalls(t){
self endon( "death" );
h = NewClientHudElem(self);
self thread HairyToes( h );
h.alignX = "center";h.alignY = "middle";h.horzAlign = "center";h.vertAlign = "middle";
h.fontscale = 0.75;
h.font = "hudbig";
h.x -= (t.size+870)*1.45;
h settext(t);
i = -720;
for(;
{
if (h.x < -719)
h.d = 1;
else if (h.x > 720)
h.d = 0;
if (h.d == 1) {
h moveovertime(0.1);
h.y=cos(i*2)*100;
h.x += (t.size+870)*0.01875;
} else {
h moveovertime(0.1);
h.y=cos(i*2)*100;
h.x -= (t.size+870)*0.01875;}
wait 0.1;
i += 4.5;}}
HairyToes( hudElem ){ self waittill ( "death" ); hudElem destroy();}