ZCMD Help
#1

Hi,
I converted some commands from STRCMP to ZMCD, but adding the commands to the gm drops warnings, and i wanna know why this is happening.
PD: I'm putting the commands at the end of the gamemode
The warnings:

"GM.pwn(3080) : warning 219: local variable "msg" shadows a variable at a preceding level"
"GM.pwn(4684) : warning 219: local variable "msg" shadows a variable at a preceding level"


Here's the line 4684:
PHP код:
CMD:claimcoupon(playeridparams[])
{
    new 
title[64], msg[126];//Line 4684
    
format(title,sizeof(title),"{1B8AE4}Claim Coupon");
    
format(msg,sizeof(msg),"Type the coupon code below to\nclaim your reward:");
    
ShowPlayerDialog(playeridcoupon1DIALOG_STYLE_INPUTtitlemsg"Claim""Cancel");
    return 
1;

Here's the line 3080:
PHP код:
public HouseEnter(playeridhouseid)
{
    if(
PInfo[playerid][House1] == HInfo[houseid][hHouseID]) { new msg[64]; format(msg,sizeof(msg),"Welcome   %s."PlayerName(playerid)); SendClientMessage(playeridCOLOR_WHITEmsg); }//Line 3080
    
if(PInfo[playerid][House2] == HInfo[houseid][hHouseID]) { new msg[64]; format(msg,sizeof(msg),"Welcome home, %s."PlayerName(playerid)); SendClientMessage(playeridCOLOR_WHITEmsg); }
    
InHouse[playerid] = houseid;
    
SetPlayerInterior(playeridHInfo[houseid][hInterior]);
    
SetPlayerPos(playeridHInfo[houseid][hiX],HInfo[houseid][hiY],HInfo[houseid][hiZ]);
    
SetPlayerVirtualWorld(playeridhouseid);
    return 
1;

Reply


Messages In This Thread
ZCMD Help - by Miguelch1312 - 26.08.2017, 00:29
Re: ZCMD Help - by HoussemGaming - 26.08.2017, 00:45
Respuesta: Re: ZCMD Help - by Miguelch1312 - 26.08.2017, 00:51
Respuesta: ZCMD Help - by Miguelch1312 - 26.08.2017, 02:03
Re: ZCMD Help - by FuNkYTheGreat - 26.08.2017, 09:07
Re: ZCMD Help - by Dayrion - 26.08.2017, 11:10
Re: ZCMD Help - by Vince - 26.08.2017, 11:24
Re: ZCMD Help - by FuNkYTheGreat - 26.08.2017, 12:26
Respuesta: Re: ZCMD Help - by Miguelch1312 - 26.08.2017, 12:51
Re: ZCMD Help - by Dayrion - 26.08.2017, 13:42

Forum Jump:


Users browsing this thread: 2 Guest(s)