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

Pages: [1]
1
mIRC/pawn Scripting / Re: I made new codes hope you like
« on: July 20, 2012, 07:42:23 pm »
:D thanks guy won and I'm still newbie thanks a lot thanks  ;)
Remember, whenever you're making a command, be sure, it is clean and don't make it so complicated.

2
Snippet Showroom / Re: chat only for VIPs
« on: July 20, 2012, 07:33:12 pm »
Use snippet showroom.

3
Support / Re: I can't see the names of the players!
« on: July 20, 2012, 05:07:54 pm »
Be sure to have a clean and relaX mind! Pondering is this that not to ask anybody and recover the problem ourselves. Uninstall vice city and remove all the files related to it. Reinstall it again. Plus vcmp too. If still doesn't work then................................. just try to restart your server.

4
mIRC/pawn Scripting / Re: Some Help That Got Crashed In The Database
« on: July 20, 2012, 04:56:59 pm »
See, Put it first:

[pawn]new IsCop[MAX_PLAYERS];[/pawn]


Now in the OnPlayerSpawn event:

[pawn]public OnPlayerSpawn(playerid,classid)
{
        new IsCop[MAX_PLAYERS];
        IsCop[playerid]=1;
        new gPlayers[MAX_PLAYERS][MAX_PLAYER_NAME+1];
        new string[256];
   GetPlayerName(playerid,gPlayers[playerid],MAX_PLAYER_NAME);
        format(string,sizeof(string),"%s has spawned as cop.",gPlayers[playerid]);
        SendClientMessageToAll(COLOR_YELLOW,);
   return 1;
}[/pawn]

5
Support / Re: Game won't start correctly? Stops loading, gives error?
« on: June 29, 2012, 09:50:39 pm »
If any of this helps, the screen res. is set to 1280×960 and (if that makes a difference) I don't have a Liberty City savegame...
My processor is a dual-core Pentium running @2,66 GHz and I have 3 GB of RAM... The graphics card is a Nvidia Gforce 9500GT, 512 MB...
No, these things don't matter. If it would be doing then only one thing! [(........) is not enough to run vc.exe]
And about the problem, it is probably your INTERNET connection. Tell me something about that and i shall definitely help you!

6
Vice City / Re: Your favorite vice city radio station.
« on: June 20, 2012, 10:29:31 am »
Wave...

7
Support / Re: How to compile modes? - PLEASE HELP
« on: June 09, 2012, 07:01:06 am »
Why so many posts man? Post-whoring isn't cool at all. :c

Actually he forgot to compile but now he knows. Can somebody lock this topic aa'n... ?

8
Support / Re: How to compile modes? - PLEASE HELP
« on: June 08, 2012, 08:08:18 pm »
Brief Explanation:

                             The computer obviously needs machine language to understand what we are saying. The vcmp server scripts need machine code/language to understand that what functions we are putting! But we type these things in our language. So the pawno compiler is a software or you can say a program, that translates our language to machine's one! Now the server will only see the mode.amx file. Even if you delete the mode.pwn file then the server and the script will still run.
understand? when you have made changes to the script in mode.pwn then you will have to compile it! so that the server could read and understand the language/functions/commands etc...

[Specially made easy for easily understanding]

Pages: [1]