SA-MP Forums Archive
[Warnings] Please Help.. - 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)
+--- Thread: [Warnings] Please Help.. (/showthread.php?tid=641406)



[Warnings] Please Help.. - Fletcher007 - 15.09.2017

warning 217: loose indentation
warning 209: function "OnObjectMoved" should return a value

Код:
public OnObjectMoved(objectid) //return 1; 
{ 
 	if(objectid==objectswheel[0]) 
   	{ 
    	FerrisAngle ++; 
    	if(FerrisAngle>=360.0) 
   	{ 
       	FerrisAngle=0.0; 
    } 
    if(FerrisAlternate) 
   	{ 
       	FerrisAlternate=0; 
   	} 
    else 
   	{ 
       	FerrisAlternate=1; 
    } 
    new Float:FerrisWheelModZPos=0.0; 
    if(FerrisAlternate) 
   	{ 
      	FerrisWheelModZPos=0.05; 
    } 

	MoveObject(objectswheel[0],1173.8949, -2004.6146,150.0+FerrisWheelModZPos,FERRIS_KOLESO_SPEED,0,FerrisAngle,0); 

    return 1; 
    } 
}



Re: [Warnings] Please Help.. - Meller - 15.09.2017

Please for godsake, indent your code.

PHP код:
public OnObjectMoved(objectid//return 1; 

     if(
objectid==objectswheel[0]) 
    { 
        
FerrisAngle ++; 
        if(
FerrisAngle>=360.0
            
FerrisAngle=0.0

        if(
FerrisAlternate
               
FerrisAlternate=0
        else 
               
FerrisAlternate=1
        
        new 
Float:FerrisWheelModZPos=0.0
        if(
FerrisAlternate
               
FerrisWheelModZPos=0.05
        
MoveObject(objectswheel[0],1173.8949, -2004.6146,150.0+FerrisWheelModZPos,FERRIS_KOLESO_SPEED,0,FerrisAngle,0); 
        return 
1
    }
    return 
0;




Re: [Warnings] Please Help.. - Fletcher007 - 15.09.2017

Wow, Thank u its working