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

Pages: [1]
1
mIRC/pawn Scripting / Re: Server time does not work
« on: July 17, 2010, 11:32:33 pm »
You can use the RCON commands.

/admin <rconpassword>

/setmin <minutes>
/sethr <hours>
/settimerate <rate>

2
mIRC/pawn Scripting / Re: Model limits
« on: March 26, 2010, 01:14:30 am »
What I meant is, like for example, in old SA:MP - if you had more than 80 (I think) different models/types of vehicles, server would lose stability.

Thank you.

3
mIRC/pawn Scripting / Re: Model limits
« on: March 26, 2010, 01:10:04 am »
I'm just trying to say I need the limit of VEHICLE MODELS, VEHICLE TYPES (call it whatever you want), not the total amount of existant ones.

4
mIRC/pawn Scripting / Re: Model limits
« on: March 26, 2010, 12:50:23 am »
MODEL limits or total amount of cars? All I found out while searching was people saying the limit for total of cars is 200, but that is already known...

5
mIRC/pawn Scripting / Model limits
« on: March 26, 2010, 12:39:54 am »
Is there a known vehicle model limit in VC:MP R2? I have been searching and I found stuff about amount limit, but nothing about vehicle models limit.

6
mIRC/pawn Scripting / Re: problem with script GUPS1.15
« on: March 19, 2010, 07:16:40 pm »
SetVehiclePos is buggy.

7
mIRC/pawn Scripting / Re: [pawn] Dcmd command errors
« on: March 05, 2010, 05:04:20 am »
It didn't work for me either. Might be buggy just like CreateVehicle.

8
mIRC/pawn Scripting / Re: "if" is not working.
« on: February 04, 2010, 06:33:57 pm »
Try adding "return 1;"...

9

10
mIRC/pawn Scripting / CreateVehicle issue
« on: January 12, 2010, 06:54:34 am »
So yeah, I just started modifying the original mode script from the pawn server, adding a vehicle creating command, but when I start the server I get this error:

Code: [Select]
Script[gamemodes/mode.amx]: Run time error 19: "File or function is not found"
This is the command:
Code: [Select]
else if (strcmp(cmd, "veh", true) == 0)
{
tmp = strtok(cmdtext, idx); tmp2 = strtok(cmdtext, idx); tmp3 = strtok(cmdtext, idx);
new carid, col1, col2;
carid = strval(tmp); col1 = strval(tmp2); col2 = strval(tmp3);
if (!strlen(tmp)) { SendClientMessage(playerid, COLOR_GREY, "Usage: veh <carid> <col1> <col2>"); }
GetPlayerPos(playerid, x, y, z);
CreateVehicle(carid, x, y+1, z, 0, col1, col2, 60000);
return 1;
  }

If I remove the CreateVehicle line, the error goes away, so CreateVehicle must be the issue. Complier points nothing wrong either.

Pages: [1]