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

Pages: [1] 2
1
General Discussion / Re: Its Been a Long Time
« on: September 29, 2014, 04:54:46 pm »
You're better of buying a new computer instead of upgrading.  :-\

2
General Discussion / Hamachi Servers
« on: September 24, 2014, 05:52:47 am »
Can I advertise my Hamachi hosted VCMP server?

Yes,I failed port forwarding and I know not much people have Hamachi.

3
General Discussion / Re: vccnr server scipt
« on: September 20, 2014, 08:08:34 am »
freevirus.scriptdownload.com <-- free script download

Is it me or brains are getting dumber?

4
General Discussion / Re: vccnr server scipt
« on: September 19, 2014, 04:46:18 pm »
Erm, seriously?

Quote from: Spidey
iam good scripter and iam computer genuis to

But...

Quote from: Spidey
hey can anyone give me the scripts of vccnr plzzz
thanks

5
General Discussion / Re: hey stremoues
« on: September 19, 2014, 04:44:55 pm »
Make a LAN server.

6
Tutorials / Re: Port Forwarding Help!
« on: September 03, 2014, 06:16:23 am »
Okay,so I've forwarded two IP addresses.
My computer and Hamachi,both to port 5192,but no luck.
Any other solutions?


7
Support / Re: Can't create VC:MP server on LAN/Internet. Plz help...........
« on: September 02, 2014, 06:21:51 am »
Here's what I did to make an LAN server.

1.Open server.cfg

2.This is what you'll see when you open the file:
_________________________________
echo Executing Server Config...
friendlyfire 0
lanmode 0
maxplayers 16
port 5192
hostname VCMP:Server
gamemode0 mode
rcon_password
_________________________________

3.Change ''VCMP:Server'' to a server name of your choice.

4.Beside ''rcon_password'',put your own personal password.If not players can simply become an RCON admin.

5.Save and close,then open ''vcmp-svr.exe'',and that's it.You're server's up and running.

6.Now go to ''Run'',and type ''cmd'' then press ''OK''

7.In the command prompt,type ''ipconfig'' and press enter.

8.Look for ''IP Address'' and copy the address. (ex : 192.168.1.9)

9.Open your VCMP client,go to ''Favorites'',and add your IP and put  '':5192'' at the end of it. (ex : 192.168.1.9:5192)

10.You should see your server in your favorites list.

8
mIRC/pawn Scripting / Re: Need scripting help!
« on: August 27, 2014, 03:44:00 pm »
Quote
error 076: syntax error in the expression, or invalid function call

[pawn] KillTimer(testtimer);[/pawn]

9
0.4 Public Beta #3 / Question
« on: August 26, 2014, 05:27:11 pm »
Q : Are there any system requirements for 0.4? Or it's just like 0.3.
Q : Where can I download the 0.4 client?

Thanks.

10
mIRC/pawn Scripting / Re: Need scripting help!
« on: August 26, 2014, 05:22:17 pm »
not work!!!

Actually,it does.
After using them my commands worked perfectly.

11
Support / Re: Server Problem
« on: August 25, 2014, 05:04:01 pm »
Solved,thanks.

[pawn]SetWorldBounds(5000,-5000,5000,-5000);[/pawn]

12
mIRC/pawn Scripting / Re: Need scripting help!
« on: August 22, 2014, 03:48:04 pm »
I typed commands like /c wakeup and nothing happened.

13
mIRC/pawn Scripting / Re: Need scripting help!
« on: August 22, 2014, 03:37:28 pm »
What code should I put if I don't want the pickup to work for team Tommy?

14
mIRC/pawn Scripting / Re: Need scripting help!
« on: August 22, 2014, 03:36:13 pm »
My commands :

Quote
public OnPlayerCommandText(playerid, cmdtext[])
{
   if (strcmp(cmdtext," engineoff ", true)==0)
   {
      new vehicleid = GetPlayerVehicleID(playerid);
      KillVehicleEngine(vehicleid); // Engine off
      SendClientMessage(playerid,COLOR_WHITE,"Car engine turned off,re-enter the vehicle to restart it.");
       return 1;
   }
   if (strcmp(cmdtext," lightson ",true)==0)
   {
      new vehicleid = GetPlayerVehicleID(playerid);
      SetVehicleLights(vehicleid,1); // Lights on
      SendClientMessage(playerid,COLOR_WHITE,"Car headlights turned on");
      return 1;
   }
   else if (strcmp(cmdtext," lightsoff ",true)==0)
   {
       new vehicleid = GetPlayerVehicleID(playerid);
       SetVehicleLights(vehicleid,0); // Lights off
       SendClientMessage(playerid,COLOR_WHITE,"Car headlights turned off");
       return 1;
    }
    if (strcmp(cmdtext," wakeup ",true)==0)
   {
        TogglePlayerControllable(playerid,1);
       SendClientMessage(playerid,COLOR_WHITE,"You are now awake!");
       return 1;
    }
   return 1;
}

15
mIRC/pawn Scripting / Re: Need scripting help!
« on: August 21, 2014, 04:59:54 pm »
I really need quick help,my script's deadline is coming soon.

Pages: [1] 2