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 - Fuzzy168

Pages: 1 ... 44 45 [46] 47 48
676
mIRC/pawn Scripting / Cop and medic
« on: June 06, 2011, 03:49:53 pm »
Cop
1. How do I add commands for cops to change to Swat or FBI?
2. How do I make cops vehicle only enterable by cops?

Medic
1. How do I do medic heal-only commands?

I use GUPS and Pawno!!

677
mIRC/pawn Scripting / Re: Places
« on: June 02, 2011, 07:03:24 pm »
I kind of get it then I dont. Can I just get a download or something because I dont wanna be copying and pasting all day :/
If you wanna download, you wont be able to set the location on your own. Besides, doing it by your own is more original.

678
mIRC/pawn Scripting / Re: Places
« on: June 02, 2011, 12:59:56 pm »
I'm using GUPS 16 and can someone help me on how do i add houses you can buy or at least give me a download I can just put in the scritpfiles- Propertys?
Your gups.. hmmm. It is all in the scriptfiles folder. You will find one folder called Pickups.  You add like this
Code: [Select]
2=407 -864.725342 -565.413086 11.106840 and then open your properties folder and then copy the first and then paste it under is and then change '1' to '2' and continue it like 1,2,3,4,5 and so on...

679
mIRC/pawn Scripting / GUPS help!!
« on: May 31, 2011, 09:17:11 am »
So I tried to remake my server script.. I found this and need help..

[pawn]   else {
      SendClientMessage(playerid, COLOR_GREEN, "Your nick is not registered. Please register to protect it!");
      SendClientMessage(playerid, COLOR_GREEN, "USAGE: /c register [Password]");
      
      PlayerInfo[playerid][Logged] = 2;
      PlayerInfo[playerid][Stats] = 2;
   }
   return 1;[/pawn]

The [pawn]      PlayerInfo[playerid][Logged] = 2;
      PlayerInfo[playerid][Stats] = 2;[/pawn]
What is the 2for and how do I make this command that people must register or gets freeze when spawn?

680
Tutorials / Re: Tutorial on How to Make You're Own Server
« on: May 31, 2011, 08:45:57 am »
Quote
I tried to find GUPS but couldn't.
You could get GUPS here:

http://forum.vicecitymultiplayer.com/index.php?topic=1666.0

681
mIRC/pawn Scripting / Re: Cash!
« on: May 30, 2011, 07:16:04 am »
for gups
Code: [Select]
else if (strcmp(cmd, "heal", true) == 0) {
new Float:Health; GetPlayerHealth(playerid,Health);
if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "You need to login first!");
else if (GetPlayerMoney(playerid) < 200) SendClientMessage(playerid, GREEN,"[Error] - You need:$200 to heal.",GetPlayerMoney(playerid),200-GetPlayerMoney(playerid));
  else if (Health >= 100) SendClientMessage(playerid,COLOR_GREEN,"Error: You are healthy!");
else {
SetPlayerHealth(playerid,100.0);
DecPlayerHandCash(playerid,200);
    SendClientMessage(playerid,COLOR_GREEN,"You have been healed.");
}
return 1;
}
Is it the same thing for the weapons?

682
mIRC/pawn Scripting / Cash!
« on: May 29, 2011, 07:51:55 am »
How do set the commands like /c heal and /c buywep cash? For example, you type /c heal and it take aways $200? aand when you type /c buywep colt.45 200 = $1500?

683
Support / Pawn problem
« on: May 28, 2011, 01:16:30 pm »
Everytime I try to create my commands, the pawncc crashes. Or is it the wrong place to seek for help?

684
Support / Re: My Server Script Help
« on: May 26, 2011, 04:59:55 am »
I use a five-level admin system like this:
  • Member
  • Moderator
  • Administrator
  • Lead Administrator
  • Owner


Wasn't it Member, Mod, Admin and Owner? Or we have a new admin system introduced in release 5? :P

Well anyway - the easiest way to group the staff would be this.
Level 1 - Member (obviously)
Level 2 - Moderator
Level 3 - Administrator
Level 4 - Server Owner
So how do I change it? I have another question. How to add pickups. Like in argo, when you pickup the pickup, some message will appear in the chat. How do I do that..??

685
Support / Re: My Server Script Help
« on: May 21, 2011, 08:48:16 am »
Quote
Hp Auto Ban system xD
Where should I put it?

686
Support / Re: Adding Pickups and Properties
« on: May 20, 2011, 07:19:27 pm »
Quote
Plz give me the code for property pickup with pickup
If your using GUPS, its all in the scriptfile folder. If your creating on your own, you need to know the id when scripting.

687
Support / Re: My Server Script Help
« on: May 20, 2011, 07:16:45 pm »
Thanks Big[H], stormeus and Morphine!! That really helped.

688
Support / Re: My Server Script Help
« on: May 20, 2011, 07:24:09 am »
New Question Added!!

1. Answered by asad3man
2. Answered by asad3man and stormeus
3. Answered by Strike


NEW QUESTIONS!!

4. How do I change the colour?
[pawn]   else if (strcmp(cmd, "setspeed", true) == 0) {
      tmp = strtok(cmdtext, idx);
      if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "You need to login first!");
      else if(!IsPlayerCommandLevel(playerid,"setspeed")) SendClientMessage(playerid, COLOR_RED, "You don't have access to use this command!");
      else if (!strlen(tmp)) SendClientMessage(playerid,COLOR_RED,"USAGE: /c setspeed [Value]");
      else {
          new szMsg[256];
         format(szMsg,sizeof(szMsg),"Admin %s changed setspeed to:[ %d ]",gPlayers[playerid],strval(tmp));
         SendClientMessage(playerid,COLOR_GREEN,szMsg);
         SetGamespeed(strval(tmp));
      }
      return 1;[/pawn]
5. Is there any code to track HACKER?
6. Can anyone suggest any ADMIN LEVEL names?

More to come!!

689
Support / Re: My IP address doesn't works!!
« on: May 19, 2011, 06:39:38 pm »
what should i do?? >:( >:(

Pages: 1 ... 44 45 [46] 47 48