SA-MP Forums Archive
PAWNO Game (lol?) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: PAWNO Game (lol?) (/showthread.php?tid=39442)



PAWNO Game (lol?) - Giacomand - 10.06.2008

basically tell a story in PAWNO

pawn Code:
new Name[187] = "Joe"

main()
{
Printf("This is a story of %s", Name);
}

if(Name == GetPlayerState(playerid,PLAYER_WALKING))
{
Spit(playerid)
}
lol...


Re: PAWNO Game (lol?) - Yaheli_Faro - 11.06.2008

Quote:
Originally Posted by Giacomand
basically tell a story in PAWNO

pawn Code:
new Name[187] = "Joe"

main()
{
Printf("This is a story of %s", Name);
}

if(Name == GetPlayerState(playerid,PLAYER_WALKING))
{
Spit(playerid)
}
lol...
lol? At least make a normal code...


Re: PAWNO Game (lol?) - Luk0r - 11.06.2008

what


Re: PAWNO Game (lol?) - kc - 11.06.2008

Code:
main()
{
  SendRconCommand("exit");
}



Re: PAWNO Game (lol?) - Kapil - 11.06.2008

Code:
new boy;
new girl;

public OnPlayerSpawn(playerid)
{
  if(PlayerRole[playerid] == boy)
  {
   SetPlayerCity( playerid, LS );
  }
  if(PlayerRole[playerid] == girl)
  {
   SetPlayerCitY( playerid, SF );
  }
}
new mydreamgirl,mydreamboy;

public OnGirlLSTour(playerid)
{
  SetPlayerFacing(playerid, boy );
  SetPlayerFacing( boy, playerid);
  mydreamgirl = SetTimer("BoyFallsInLove",1,1);
  mydramboy = SetTimer("GirlFallsInLoveToo",1,1);
}
public BoyFallsInLove( )
{
  if(IsGirlAlive() == true)
  {
   Dream();
  }
  else
  {
   GiveDrugs();
   SetPlayerAnimated( PLAYER_ANIMATION_CRYING );
  }
}

new loops = 0;
public GirlFallsInLove( )
{
  if( loops < 24 * 1000 )
  {
   if(IsBoyAlive() == true)
   {
     Dream();
     loops++;
   }
   else
   {
     KillTimer(mydreamboy);
     loops = 0;
     SendClientMessage(playerid,"Girl: oh shit, whos next ?");
   }
  }
}


public TheFirstMeet(boy,girl)
{
  SendClientMessage( girl , "Boy: Hello");
  SendClientMessage( boy, "Girl: Hi");
  SendClientMessage( girl, "Boy: My name is Boy");
  SendClientMessage( boy, "Girl: Girl");
  SendClientMessage( girl , "Boy: nice name");
  SendClientMessage( boy, "Girl: thx urs too");
  Depart( boy );
  Depart( girl );
  sleep( 2 * 365 * 24 * 60 * 60 * 1000 ); // exactly after 2 years
}
story unfinished.


Re: PAWNO Game (lol?) - Puffmac - 11.06.2008

Quote:
Originally Posted by Kapil
Code:
new boy;
new girl;

public OnPlayerSpawn(playerid)
{
 if(PlayerRole[playerid] == boy)
 {
   SetPlayerCity( playerid, LS );
 }
 if(PlayerRole[playerid] == girl)
 {
   SetPlayerCitY( playerid, SF );
 }
}
new mydreamgirl,mydreamboy;

public OnGirlLSTour(playerid)
{
  SetPlayerFacing(playerid, boy );
  SetPlayerFacing( boy, playerid);
  mydreamgirl = SetTimer("BoyFallsInLove",1,1);
  mydramboy = SetTimer("GirlFallsInLoveToo",1,1);
}
public BoyFallsInLove( )
{
 if(IsGirlAlive() == true)
 {
   Dream();
 }
 else
 {
   GiveDrugs();
   SetPlayerAnimated( PLAYER_ANIMATION_CRYING );
 }
}

new loops = 0;
public GirlFallsInLove( )
{
 if( loops < 24 * 1000 )
 {
   if(IsBoyAlive() == true)
   {
    Dream();
    loops++;
  }
   else
   {
     KillTimer(mydreamboy);
     loops = 0;
     SendClientMessage(playerid,"Girl: oh shit, whos next ?");
   }
 }
}


public TheFirstMeet(boy,girl)
{
 SendClientMessage( girl , "Boy: Hello");
 SendClientMessage( boy, "Girl: Hi");
 SendClientMessage( girl, "Boy: My name is Boy");
 SendClientMessage( boy, "Girl: Girl");
 SendClientMessage( girl , "Boy: nice name");
 SendClientMessage( boy, "Girl: thx urs too");
 Depart( boy );
 Depart( girl );
 sleep( 2 * 365 * 24 * 60 * 60 * 1000 ); // exactly after 2 years
}
story unfinished.
Lmao how long d'you spend on that shit?


Re: PAWNO Game (lol?) - kc - 11.06.2008

my story is simpler :P


Re: PAWNO Game (lol?) - -Sneaky- - 11.06.2008

pawn Code:
public OnSneakyPost()
{
  PostReply("asdasdfasf");
  PostCount[Sneaky] ++;
  return 1;
}



Re: PAWNO Game (lol?) - Kapil - 11.06.2008

Quote:
Originally Posted by Puffmac
Quote:
Originally Posted by Kapil
Code:
new boy;
new girl;

public OnPlayerSpawn(playerid)
{
  if(PlayerRole[playerid] == boy)
  {
   SetPlayerCity( playerid, LS );
  }
  if(PlayerRole[playerid] == girl)
  {
   SetPlayerCitY( playerid, SF );
  }
}
new mydreamgirl,mydreamboy;

public OnGirlLSTour(playerid)
{
  SetPlayerFacing(playerid, boy );
  SetPlayerFacing( boy, playerid);
  mydreamgirl = SetTimer("BoyFallsInLove",1,1);
  mydramboy = SetTimer("GirlFallsInLoveToo",1,1);
}
public BoyFallsInLove( )
{
  if(IsGirlAlive() == true)
  {
   Dream();
  }
  else
  {
   GiveDrugs();
   SetPlayerAnimated( PLAYER_ANIMATION_CRYING );
  }
}

new loops = 0;
public GirlFallsInLove( )
{
  if( loops < 24 * 1000 )
  {
   if(IsBoyAlive() == true)
   {
     Dream();
     loops++;
   }
   else
   {
     KillTimer(mydreamboy);
     loops = 0;
     SendClientMessage(playerid,"Girl: oh shit, whos next ?");
   }
  }
}


public TheFirstMeet(boy,girl)
{
  SendClientMessage( girl , "Boy: Hello");
  SendClientMessage( boy, "Girl: Hi");
  SendClientMessage( girl, "Boy: My name is Boy");
  SendClientMessage( boy, "Girl: Girl");
  SendClientMessage( girl , "Boy: nice name");
  SendClientMessage( boy, "Girl: thx urs too");
  Depart( boy );
  Depart( girl );
  sleep( 2 * 365 * 24 * 60 * 60 * 1000 ); // exactly after 2 years
}
story unfinished.
Lmao how long d'you spend on that shit?
got habituated.


Re: PAWNO Game (lol?) - gothem - 11.06.2008

pawn Code:
public OnPlayerStateChange(user,New_State,Old_State)
{
  if(user == "Gothem" && New_State == BORING) SendClientMessageToAll(COLOR_RED,"Warning! Gothem is getting boring!");
  return SendRconCommand("exit")
}