Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - [S]angeeta

Pages: [1]
1
mIRC/pawn Scripting / Change My server
« on: November 14, 2012, 07:41:51 pm »
Okey Guys i have problem that my server is not working as normal Vice city... Some times Player stucks in car and some times does not Enter in car well...i think It has some 50% Stuntmode Like how i can change it? if u can slove this

2
I want to know about Player pos..... If u can help me i am getting prob in cam away alot some times too near so how i can set it + want to add pickups like Health Tablet,Weps, Ids are Given by VRocker but i dont know how to add them so if u can help me!!!
Thanks....!

3
ShowRoom (pawn) / Re: Want to use Zimmy's scripts? ----->clcik here<-----
« on: November 07, 2012, 01:03:47 pm »
Use this------------> http://www.solidfiles.com/d/181921b854/
I hope now i wont show.... or its simple to make copy and paste ur server's vcmp exe, ann it will work u need scripts.. so they do not contain virus...

[1st link uploaded has virus] Sorry!

4
Snippet Showroom / Re: Christmas Theme By Moby (me) [ + Video ]
« on: November 06, 2012, 02:50:27 pm »
i m Muslim But Nice Work

That does not matter who u are if u like it Thumbs up for that...!!!

5
ShowRoom (pawn) / Want to use Zimmy's scripts? ----->clcik here<-----
« on: November 06, 2012, 02:48:29 pm »
The Server Zimmy uploaded has a virus so i have fixed that now u can use it...
REMOVED <----------------------------------Go here!!! its Virus Free now..

6
mIRC/pawn Scripting / Re: !admins cmd bug
« on: November 06, 2012, 02:12:41 pm »
[pawn]}
   else if ( strcmp( cmd, "!admins", true ) == 0 )
   {
      new a, b[ 128 ], m = GetMaxPlayers() + 1;
      for ( a = 0; a < m; a++ )
      {
         if ( IsPlayerConnected( a ) && IsPlayerValidAdmin( a ) )
         {
            if ( strlen( b ) ) format( b, 128, "%s, %s[%d]", b, gPlayers[ a ], PlayerInfo[ a ][ Level ] );
            else format( b, 128, "%s[%d]", gPlayers[ a ], PlayerInfo[ a ][ Level ] );
         }
      }
      if ( strlen( b ) )
      {
         format( szMsg, 128, "Admins Ingame: %s", b );
         SendClientMessageToAll( BLUE, szMsg );
      }
      else SendClientMessageToAll( BLUE, "No admins ingame." );
   }[/pawn]

7
mIRC/pawn Scripting / Re: Help me in editing some cmds
« on: October 28, 2012, 07:17:21 pm »
Thanks dear it worked for me.... you are awesome Dynavolt71 :D!!!!!! i can use fliterscripts now wow wow wow

8
mIRC/pawn Scripting / Re: Last Man Standing
« on: October 25, 2012, 01:07:17 pm »
Invalid Link!!!

9
mIRC/pawn Scripting / Re: Help me in editing some cmds
« on: October 25, 2012, 01:04:00 pm »
Matheus thnx for uploading ur cmds but still entering car does not show details so plz read it again n help me!!!!!

10
mIRC/pawn Scripting / Help me in editing some cmds
« on: October 23, 2012, 11:58:40 am »
Okey Guyz i have got a lil prob with cmds 1st= when i am using ban cmd on any player then after 10 mins my game is closed and rejoining shows that my ip is banned!! i think its bcz of having 192.168.1.7 r else like that... here is the ban cmd if u can fix it ..

}

   else if (strcmp(cmd, "ban", true) == 0)
      {
      new reason[ 256 ], plr;
      tmp = strtok(cmdtext, idx), plr = FindPlayerIDFromString(tmp), reason = strtok( cmdtext, idx );
      if ( !IsLoggedIn( playerid ) ) SendClientMessage( playerid, COLOR_WHITE, "Please log-in to your account." );
      else if ( !IsAuthorized( playerid, cmd ) ) SendClientMessage( playerid, COLOR_WHITE, "Sorry,You don't have access to use this command!" );
      else if (!strlen(reason)) SendClientMessage(playerid, BLUE,"[Syntax] - The correct use: /c %s <playerid/name> <reason>.",cmdtext);
        else if (plr == INACTIVE_PLAYER_ID) SendClientMessage(playerid, BLUE,"[Error] - Unknown player.");
      else {
              PlayerBanIP(plr,"Admin",gPlayers[playerid],cmdtext[strval(reason)+strlen(tmp)+4]);
              SendClientMessage(plr, WHITE, "Post appeals on forum www.mra.createaforum.com");
       }
      return 1;

2nd: i want to add Pickups and want to add fliterscripts its showing that [load fliterscripts 0] may be i have kept the folder at wrong place...... I want to add timer on cmds like !heal !gotoloc etc + Money on them.... I need !givecash Cmd i copied it from Gups but not working....
3rd: i want to do like if player enters in car i should tell its detail like [to buythis car type !buycar 8,9 etc ids.. here is the cmd of !car if that needs some changings
 
}
      else if ( strcmp( cmd, "!car", true ) == 0 )
   {
      tmp = strtok( cmdtext, idx );
      new plr = FindPlayerIDFromString( tmp );
      if ( !strlen( tmp ) )
      {
           if ( IsPlayerInAnyVehicle( playerid ) )
         {
               new id, Float:hp;
               id = GetPlayerVehicleID( playerid );
               GetVehicleHealth( GetPlayerVehicleID( playerid ), hp );
               hp = ( hp / 1000.00 ) * 100;

            format( szMsg, sizeof( szMsg ), "ID:[ %d ] Health:[ %.0f% ] Owner:[ %s ] Co-Owner:[ %s ] Price:[ $%d ]", id, hp, VehicleInfo[ id ][ Owner ], VehicleInfo[ id ][ Share ], VehicleInfo[ id ][ Price ] );
            SendClientMessage( playerid, COLOR_GREEN, szMsg );
           }
         else SendClientMessage( playerid, COLOR_WHITE, "You are currently on foot." );
      }
      else if ( plr == INACTIVE_PLAYER_ID ) SendClientMessage( playerid, COLOR_WHITE, "Error: Unknown player" );
      else if ( IsPlayerInAnyVehicle( plr ) )
      {
         new id, Float:hp;
         id = GetPlayerVehicleID( plr );
         GetVehicleHealth( GetPlayerVehicleID( plr ), hp );
         hp = ( hp / 1000.00 ) * 100;

         format( szMsg, sizeof( szMsg ), "ID:[ %d ] Health:[ %.0f% ] Owner:[ %s ] Shared:[ %s ] Price:[ $%d ]", id, hp, VehicleInfo[ id ][ Owner ], VehicleInfo[ id ][ Share ], VehicleInfo[ id ][ Price ] );
         SendClientMessage( playerid, COLOR_WHITE, szMsg );
        }
      else
      {
         format( szMsg, sizeof( szMsg ), "%s is currently on foot.", gPlayers[ plr ] );
         SendClientMessage( playerid, COLOR_WHITE, szMsg );
      }
      return 1;


I ll wait for you reply
Note: I can not add prop pickups with /c addprop cmd more than 49 :( i need its solution...

11
mIRC/pawn Scripting / Re: Help?With Slap Command?
« on: October 22, 2012, 12:13:25 am »
Qadeer its awesome dude i also added this cmd in my server i love it thanks for posting and your reply!!

12
mIRC/pawn Scripting / Re: Pawno Using Help!
« on: October 21, 2012, 11:48:10 pm »
Ohh thanks Guyz i Just got it and now i can change its scripts..:D thanks alot

13
ShowRoom (pawn) / Re: Fishing System v1 [By Me]
« on: October 05, 2012, 08:45:57 am »
Okey! I am Also Using GUPS 1.6 like that So where i can paste these commands and Can i make pawn commands for my server..??? r i have to download different server versions for that...Pawno after editing when i am Compailing it its showing Error Not found like that so my server is not running too.....Help!

14
mIRC/pawn Scripting / Pawno Using Help!
« on: October 05, 2012, 07:23:01 am »
Okey So Guyz i have got Pawno from Samp... idk how to use it but i am Trying if you have any video as a Tutorial then send the link PLzz...i really Want it and want to add new cmds in my server+after Starting Pawno i selected file then Open then i selected folder=gamemodes i saw a file there Do i have to edit that ?????

Pages: [1]