Roleplay command help
#9

That got rid of one error but I still am getting errors here are the errors
PHP код:
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(395) : warning 209: function "cmd_uncuff" should return a value
C
:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(400) : error 001expected token","but found ";"
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(401) : error 035argument type mismatch (argument 2)
C:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(464) : error 010invalid function or declaration
C
:\Users\logan_000\Desktop\Samp server\gamemodes\lramos15.pwn(666) : warning 203symbol is never used"gTeam"
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
3 Errors

Here is the code.
PHP код:
CMD:uncuff(playeridparams[])
    {
    new 
targetid;//this defines the id of the player you want to cuff((playerid id your id and the target id that I defined it the id of the player you want to cuff))
     
if(sscanf(params"r"targetid)) return SendClientMessage(playerid, -1"[USAGE]: /uncuff [Part of Name/Player ID]");
      if(
IsPlayerConnected(targetid))//this will check that if the player you want to cuff is connected to the server or not.
       
{
    new 
Float:xFloat:yFloat:z;//these are the defines of your x,y and z position.
    
GetPlayerPos(playeridxyz);//this will store your position to be used in the following codes.((this stores the your x,y, and z position in to the variables we created.))
    
if(IsPlayerInRangeOfPoint(targetid5.0xyz))//this will check that if the player you want to cuff is near you or not.
    
{
    if(!
SetPlayerAttachedObject(targetid0194186, -0.0110000.028000, -0.022000, -15.600012, -33.699977,-81.7000350.8919991.0000001.168000))return SendClientMessage(playerid,-1,"ERROR: The player is not cuffed!");//this will check that if the player is not cuffed and you are trying to apply this cmd,this will send him a error message.
    
SetPlayerSpecialAction(targetid,SPECIAL_ACTION_NONE);//this will remove the players cuffs and his arms will go normal.
    
RemovePlayerAttachedObject(targetid0); // This will remove the cuff object!
    
new str[50];//this it the define for the string you will format further.((str means string.You can also change it to string but this seems to be easy.))
    
new name[MAX_PLAYER_NAME];//this is the variable you created to store your name.
    
GetPlayerName(playeridnamesizeof(name));//this will get your name and store it in the variable you defines as name.
    
new target[MAX_PLAYER_NAME];//this is the variable you created to store the name of the player you want to cuff.
    
GetPlayerName(targetidtargetsizeof(target));//this will get the name of the person you want to cuff and will store it into a variable we defined as target.
    
format(strsizeof(str), "INFO: You have uncuffed %s!",target);//explained at the end of the tutorial.
    
SendClientMessage(playerid0xE01B1Bstr);//will send the formated message to you that you created above.
    
format(strsizeof(str), "WARNING: You have been uncuffed by %s!",name);//explained bellow.
    
SendClientMessage(targetid0xE01B1Bstr);//will send the formated message to the player you want to cuff that you created above.
    
return 1;
    }
    }
    }
       
CMD:me(playeridparams[])
    {
    if(
isnull(params)) return SendClientMessage(playerid, -1"Usage: /me [action]"); //This would be detecting, if the player types nothing, it will return him the ClientMessage stated above.
    
new str[500], action[100]; //The text the player will type, and the player name..
    
format(strsizeof(str), " * %s %s"GetName(playerid),action//This format gets what the player types
    
ProxDetector(30strPURPLE);// and here it sends the string
    
return 1;
    } 
Here are the specific lines causing the error
395
PHP код:

400
PHP код:
format(strsizeof(str), " * %s %s"GetName(playerid),action//This format gets what the player types 
401
PHP код:
ProxDetector(30strPURPLE);// and here it sends the string 
464 Ignore I fixed it I had too many returns
Here are my functions
PHP код:
//===============[Defines string replace function]=========================
    
stock namechange(string[], findreplace)
    {
    for(new 
i=0string[i]; i++)
    {
    if(
string[i] == find)
    {
    
string[i] = replace;
     }
    }
    }
//---------------------[ Gets  name]-----------------------------------------
stock GetName(playerid)
{
    new
        
name[24];
    
GetPlayerName(playeridnamesizeof(name));
    
namechange(name'_'' ');
    return 
name;
}
//--------------------[Detects range for chat]-------------------------------
stock ProxDetector(Float:radiplayeridstring[],color)
{
    new 
Float:x,Float:y,Float:z;
    
GetPlayerPos(playerid,x,y,z);
    foreach(
Player,i)
    {
        if(
IsPlayerInRangeOfPoint(i,radi,x,y,z))
        {
            
SendClientMessage(i,color,string);
        }
    }

I think that's everything if you need more just ask
Reply


Messages In This Thread
Roleplay command help - by lramos15 - 24.02.2013, 03:09
Re: Roleplay command help - by @Riichard - 24.02.2013, 03:11
Re: Roleplay command help - by NathNathii - 24.02.2013, 03:11
Re: Roleplay command help - by lramos15 - 24.02.2013, 03:51
Respuesta: Roleplay command help - by Strier - 24.02.2013, 04:58
Re: Respuesta: Roleplay command help - by Marven - 24.02.2013, 07:45
Re: Roleplay command help - by lramos15 - 24.02.2013, 14:44
Re: Roleplay command help - by erminpr0 - 24.02.2013, 16:03
Re: Roleplay command help - by lramos15 - 24.02.2013, 18:13
Re: Roleplay command help - by lramos15 - 24.02.2013, 18:15

Forum Jump:


Users browsing this thread: 1 Guest(s)