- 0
Dont Send Error ! Eroare pawno cand compilez
-
Recently Browsing 0 members
- No registered users viewing this page.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.
Question
crazyzee
Imi apare eroarea Send error report - Dont Send cand incerc sa compilez gm-ul , iar amx. se ramane 0kb ! :-"
Asta am adaugat inainte sa se intample :
[pawn]if(allowedwet==true)
{
VIEW_FROM_ABOVE = true;
isminigoingtostart=true;
new strre[128];
format( strre, sizeof( strre ), "Don't Get Wet"COL_RULE" minigame will start in 20 seconds. Type "COL_ORANGE"/getwet "COL_RULE"to join!");
SendClientMessageToAll( ORANGE, strre );
SetTimer( "MinigameCountdown", 20000, 0 );
for( new i; i < MAX_SLOTS; i++ )
{
//The object (window) is only visible from one side
Objects_[0] = CreateDynamicObject( 1649, gCoords[0], gCoords[1], gCoords[2], -90.000000, 0.000000, 0.000000, .interiorid = 0, .worldid = 0);
if(!VIEW_FROM_ABOVE) //In case /getwet 2, we need to multiply number of objects and turn them around so players would be able to see them from below
Objects_[1] = CreateDynamicObject( 1649, gCoords[0], gCoords[1], gCoords[2], -270.000000, 0.000000, 0.000000, .interiorid = 0, .worldid = 0);
Iter_Add(_Objects, i );
}
inProgress = 1;
}[/pawn]
[pawn]if(!strcmp(cmd, "/allowwet", true))
{
if(PlayerInfo[playerid][pAdmin] >= 1338)
{
if(allowedwet==false)
{
allowedwet=true;
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Don'tGetWet game enabled!");
}
else
{
allowedwet=false;
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Don'tGetWet game disabled!");
}
}
return 1;
}
if (strcmp("/getwet", cmdtext, true, 10) == 0)
{
if(playerid==HuntedPlayer)
SendClientMessage(playerid, COLOR_BLUE,"Nu ai voie sa participi, esti HUNTED!");
else if(WantedLevel[playerid] >= 1)
SendClientMessage(playerid, COLOR_BLUE,"Nu ai voie sa participi, ai WANTED!");
else if(PlayerInfo[playerid][pJailed] >= 1)
SendClientMessage(playerid, COLOR_BLUE,"Nu ai voie sa participi, esti in jail!");
else if( GetPlayerState( playerid ) == PLAYER_STATE_WASTED )
return SendClientMessage( playerid, LIME, "Command is temporary disabled because you're wasted." );
else if( Minigamer_{ playerid } != false )
return SendClientMessage( playerid, LIME, "You have already signed up for "COL_ORANGE"Don't Get Wet"COL_LIME" minigame." );
else if( inProgress > 1 )
return SendClientMessage( playerid, ORANGE, "Don't Get Wet "COL_LIME"minigame is currently in progress, please wait." );
else if( isminigoingtostart == false )
return SendClientMessage( playerid, ORANGE, "Don't Get Wet "COL_LIME"minigame is not currently started.Wait for payday." );
else if( Iter_Count(_Minigamer) > MAX_SLOTS-1 )
return SendClientMessage( playerid, ORANGE,"Don't Get Wet "COL_LIME"minigame is already full. Please wait untill it ends." );
else if(isminigoingtostart==true)
{
Minigamer_{ playerid } = true;
Iter_Add(_Minigamer, playerid );
return SendClientMessage( playerid, RULE,"You have signed up for "COL_ORANGE"Don't Get Wet "COL_RULE"minigame." );
}
}[/pawn]
RPG.VIBEPLAY.RO
Recomand acest server Romanesc bY woozie aka. weedluver aka. undertaker !!
2 answers to this question
Recommended Posts