01.11.2013, 04:21
Eu sei que vгo falar que to errado, que й bobagem mas й o que eu posso fazer por agora...
Quero converter zCMD pra strcmp '-'
Existem muitos conversores de strcmp pra zCMD mas no momento eu nгo tenho tempo pra converter o gm todo entгo precisaria converter esse comando zCMD para strcmp, como faзo?
ps: esse comando й de outro GM e nгo й plбgio quando й colocado nos /creditos
Eu tentei e ficou assim:
mas daн o compilador buga.
Quero converter zCMD pra strcmp '-'
Existem muitos conversores de strcmp pra zCMD mas no momento eu nгo tenho tempo pra converter o gm todo entгo precisaria converter esse comando zCMD para strcmp, como faзo?
ps: esse comando й de outro GM e nгo й plбgio quando й colocado nos /creditos
pawn Код:
CMD:hold( playerid , params [ ] )
{
if ( Specting [ playerid ] == 1 ) return SCM ( playerid , 0xFFFFFFFF , ""Y"•"W" You can't use this command when you "Y"spectate"W" someone." ) ;
if ( InSpawn [ playerid ] == true ) return SCM ( playerid , 0xFFFFFFFF , ""Y"•"W" You can't use this command while being at "Y"class selection"W"." ) ;
if ( InMinigame [ playerid ] == true ) return GameTextForPlayer ( playerid , "~w~Use ~h~~y~/leave~w~ to exit the minigame!" , 3000 , 5 ) ;
new
string [ 512 ]
;
for ( new x ; x < MAX_PLAYER_ATTACHED_OBJECTS ; x++ )
{
if ( IsPlayerAttachedObjectSlotUsed ( playerid , x ) )
{
format ( string , sizeof ( string ) , "%s "Y"SLOT"W" %d: "Y"USED"W" \n" , string , x ) ;
}
else format ( string , sizeof ( string ) , "%s "Y"SLOT"W" %d: "Y"NOT USED"W" \n" , string , x ) ;
}
SPD ( playerid , 14 , DIALOG_STYLE_LIST , ""Y"H"W"o"Y"l"W"d" , string , "O.K" , "Cancel" ) ;
return ( 1 ) ;
}
pawn Код:
if (strcmp(cmd, "/hold", true) == 0)
{
new string [512];
for ( new x ; x < MAX_PLAYER_ATTACHED_OBJECTS ; x++ )
{
if (IsPlayerAttachedObjectSlotUsed (playerid , x))
{
format (string, sizeof(string), "%s "Y"SLOT"W" %d: "Y"USED"W" \n" , string , x) ;
}
else
{
format (string, sizeof(string), "%s "Y"SLOT"W" %d: "Y"NOT USED"W" \n" , string , x) ;
}
ShowPlayerDialog (playerid , 14 , DIALOG_STYLE_LIST , ""Y"H"W"o"Y"l"W"d" , string , "O.K" , "Cancel") ;
return true;
}
}
return true;
}