View Single Post
  #4  
Old 03-20-2007, 05:38 AM
Falcor Falcor is offline
Darth Cucumber
Falcor's Avatar
Join Date: Mar 2001
Location: At School
Posts: 2,874
Falcor is on a distinguished road
Send a message via ICQ to Falcor Send a message via AIM to Falcor Send a message via MSN to Falcor Send a message via Yahoo to Falcor
I didn't test it, but something like this should work.

PHP Code:
//#CLIENTSIDE
function onPlayerChats()
{
    
temp.radius 3;
    
temp.phi 0;
    
    if (
player.chat.starts("/putpoly"))
    {
        
temp.tok player.chat.tokenize();
        
temp.sides temp.tok[1];
        if(
temp.sides 2) {
            
temp.dt 2*pi/temp.sides;
            
temp.vert = {player.x+temp.radius*cos(temp.phi),player.y+temp.radius*sin(temp.phi)};
            for(
temp.1temp.temp.sides; ++temp.i) {
                
temp.vert.addplayer.x+temp.radius*cos(temp.phi temp.i*temp.dt) );
                
temp.vert.addplayer.y+temp.radius*sin(temp.phi temp.i*temp.dt) );
            }
            
showpoly(20,temp.vert);
        }
    }

__________________

subliminal message: 1+1=3
Reply With Quote