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

Pages: [1] 2
1
General Discussion / SA-MP Question
« on: November 29, 2014, 07:34:51 am »
I know this forum is only for VCMP, but I cant find how to register in samp´s forum, This is the question, me and some friends are going to have a samp server, and I want to make a program that retrieves the server´s info, like GM, Name, IP, ETC, kind of like my own samp server browser but for only 1 server, ¿How can i retrive information of a SAMP 3z server?, is there like a link, IP, etc to get a servers info, This is an example of what a want to make: https://www.youtube.com/watch?v=AIeN2hZ6-MM . As you could see that .exe program can retrieve a SAMP server info by typing in the ip, thats kind of what I want to make. On the minute 1:20 you could see how he types in an ip then the full server info showes up.

2
Snippet Showroom / Re: Simple name detect
« on: September 01, 2014, 10:04:37 pm »
Of course, Im not blind, on his profile it says "Moderators change my name to NE.CrystalBlue ...

3
Snippet Showroom / Re: Simple name detect
« on: September 01, 2014, 09:46:23 pm »
Who is Res?! is Res NE.restricted? i have his name there becuase he is a special person, he took off all the warning of my server, thats why ._.

4
mIRC/pawn Scripting / Re: Question!
« on: September 01, 2014, 08:57:25 pm »
Okay thanks :v

5
Snippet Showroom / Re: Simple name detect
« on: September 01, 2014, 08:55:28 pm »
Dude, of course someone else in this world has made it too, but i scripted it and im just sharing it.

6
mIRC/pawn Scripting / Question!
« on: August 31, 2014, 07:12:44 pm »
Hello all!, i have a realy importent question, Will the 3z servers are going to be able to update to 4.0?, (Like in samp when u change the .exe file and it updates ) please, i have a 2 year work server and it will be useless when everyone changes to 4.0 :v
Thanks

7
Snippet Showroom / Simple name detect
« on: August 31, 2014, 06:56:53 pm »
Hello all!, today I made a simple name detect system ( Detects custom names ), here it is:

OnPlayerConnect:

[pawn]new name[MAX_PLAYER_NAME];[/pawn]

[pawn]GetPlayerName( playerid, name, sizeof(name))[/pawn]

[pawn]if (!strcmp(name,"-NAME-",true))
    {
    SendClientMessage(playerid, BLUE, "Hi!, your a special member!");
    }[/pawn]

For example, i have this:

[pawn]if (!strcmp(LuciferName,"NE.CrystalBlue",true))
    {
    SendClientMessage(playerid, BLUE, " ");
    SendClientMessage(playerid, BLUE, " ");
    SendClientMessage(playerid, BLUE, " ");
    SendClientMessage(playerid, BLUE, " ");
    SendClientMessageToAll(RED, "NE.CrystalBlue has Connected as a Special-Player!");
    SendClientMessage(playerid, BLUE, "Hello! NE.CrystalBlue, your a Special player for this server.");
    SendClientMessage(playerid, BLUE, "To loggin use /c conectar [ Password ]");
    }[/pawn]

Hope u liked it, any bugs? tell me

8
Snippet Showroom / Re: Nice account info cmd
« on: August 31, 2014, 06:48:00 pm »
Okay yea, but on my script i have it with eFormatedMessageToPlayer (the one u gave me) and it gives me 0 warnings :D

9
Snippet Showroom / Nice account info cmd
« on: August 30, 2014, 10:28:59 pm »
Hello all!, I created an account info cmd, here it is

Code: [Select]
else if ( strcmp( cmd, "!cuenta", true ) == 0 )
    {
new ip[ 24 ];
                GetPlayerIp( playerid, ip, 24 );
new level; level = GetPlayerAdminLevel(gPlayers[ playerid ] );
format( file, sizeof( file ), USERS_FILE, gPlayers[ playerid ] );
new kills, deaths; kills = dini_Int( file, "Kills" ), deaths = dini_Int( file, "Deaths" );
new Float:ratio=floatdiv(kills, deaths);
eFormatMessageSentToPlayer( playerid, 0xFF9724FF,"°Nick: %s °Nivel: %d °Estado: %s", gPlayers[ playerid ], level, StatusTag( level ) );
if ( GetPlayerState( playerid ) == 1 ) eFormatMessageSentToPlayer( playerid, 0xFF9724FF,"°ID: %s °Posicion: A pie.", playerid);//FOOT
    if ( GetPlayerState( playerid ) == 2 ) eFormatMessageSentToPlayer( playerid, 0xFF9724FF,"°ID: %s °Posicion: En auto (conductor)", playerid); //CAR_DRIVER
        if ( GetPlayerState( playerid ) == 3 ) eFormatMessageSentToPlayer( playerid, 0xFF9724FF,"°ID: %s °Posicion: En auto (passagero)", playerid); //CAR_PASSENGER
    if ( GetPlayerState( playerid ) == 7 ) eFormatMessageSentToPlayer( playerid, 0xFF9724FF,"°ID: %s °Posicion: Escojiendo Skin.", playerid); //CLASS_SELECTION
    eFormatMessageSentToPlayer( playerid, 0xFF9724FF,"°Ubicacion: %s", GetPlayerLocation( playerid ));
eFormatMessageSentToPlayer( playerid, 0xFF9724FF,"°Assesinatos: %d °Muertes: %d °Ratio: %.4f", kills, deaths, ratio );
eFormatMessageSentToPlayer( playerid, 0xFF9724FF,"°IP: %s",  ip );
return 1;
     }
Any bugs? tell me!
And i almost forgot, if eFormatMessageSentToPlayer gives u error, change it to SendClientMessage
Thanks

10
mIRC/pawn Scripting / Re: Help with my Pawn Script pls
« on: August 26, 2014, 02:26:30 am »
Sure, Do you have skype?+

11
mIRC/pawn Scripting / Help with my Pawn Script pls
« on: August 24, 2014, 10:54:16 pm »
Hi all, i have a big problem with my script, I have being scripting this script for 2 years, it has a lot of systems, but becuase of that, its realy buggy, sometimes when you enter to the server and you use /c conectar ( CMD to login ), even if the password is correct, it tells you its incorrect, I tryed to fix it but I cant, I have 59 warnings. The base GM is Gups 1.6. Some other bugs are that on random time, the server crashes ( vcmp-srv.exe has stoped working ), That does not always happen, And there is another bug similer to that one, wich is that it gives you Lost Connection ( The server does not crash, it just tells you Lost Connection, you can join agiean ), it happens most times when you spawn. So please i need help, here are the warnings:

Code: [Select]
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(175) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(212) : warning 219: local variable "szMsg" shadows a variable at a preceding level
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(282) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(282) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(290) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(290) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(334) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(342) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(388) : warning 204: symbol is assigned a value that is never used: "plr"
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(407) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(407) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(455) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(459) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(459) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(459) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(459) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(592) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(597) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(598) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(599) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(609) : warning 204: symbol is assigned a value that is never used: "level"
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(623) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(795) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(877) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(903) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(975) : warning 219: local variable "tmp2" shadows a variable at a preceding level
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(1018) : warning 219: local variable "tmp2" shadows a variable at a preceding level
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(1728) : warning 219: local variable "tmp2" shadows a variable at a preceding level
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(1758) : warning 219: local variable "tmp2" shadows a variable at a preceding level
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(1836) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(1853) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(1853) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(1897) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(1991) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2146) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2146) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2176) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2176) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2202) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2202) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2269) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2280) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2296) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2327) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2426) : warning 219: local variable "tmp2" shadows a variable at a preceding level
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2570) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(2577) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3036) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3036) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3045) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3045) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3054) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3054) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3110) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3110) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3312) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3312) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(3388) : warning 202: number of arguments does not match definition
C:\Users\The_Lucifer\Desktop\Scripts\VC-MP Scripts\The Matrix Revolucion Latino [TGG-ES] Final\The Matrix Revolucion Latino\gamemodes\TMR.pwn(5333) : warning 202: number of arguments does not match definition
Pawn compiler 3.0.3367 Copyright (c) 1997-2005, ITB CompuPhase


59 Warnings.

Now, this is how much MB are the .amx and .pwn

.PWN: 274 KB

.AMX 823 KB

Hope someone could help me.

Thanks.

12
ShowRoom (pawn) / Re: [INCLUDE UNTESTED] NE Database system
« on: August 14, 2014, 07:59:13 am »
Okay, now im getting this errors:

(2692) : error 035: argument type mismatch (argument 4)
(2694) : error 035: argument type mismatch (argument 4)
(2696) : error 035: argument type mismatch (argument 4)

I tried to search that error on google but nothing came up :V
Those errors are on the !spawnhere cmd, here are the lines:

Code: [Select]
[2686] }
[2687] else if(strcmp(text,"!spawnhere", true)==0)
[2688] {
[2689] new Float:px, Float:py, Float:pz,s[128];
[2690] GetPlayerPos(playerid,px,py,pz);
[2691] format(s,128,"%f", px);
[2692] nedbset("players", gPlayers[playerid], "asx", s);
[2693] format(s,128,"%f", py);
[2694] nedbset("players", gPlayers[playerid], "asy", s);
[2695] format(s,128,"%f", pz);
[2696] nedbset("players", gPlayers[playerid], "asz", s);
[2697] SendClientMessage(playerid, COLOR_GREEN, "*NE.CrystalBlues function*You will now spawned right here.");
[2698] }

Sorry

13
ShowRoom (pawn) / Re: [INCLUDE UNTESTED] NE Database system
« on: August 13, 2014, 05:02:42 am »
I realy dont know what do you mean with that the code wont work, but all the errors are fixed, but when a use !spawnhere then /kill, when i spawn it does not send me to the spawn location, can you please fix this? i already put your name on the credit section of my server :D

14
ShowRoom (pawn) / Re: [INCLUDE UNTESTED] NE Database system
« on: August 11, 2014, 07:48:07 pm »
Thanks :D, but now when i put the cmd !spawnhere it gives me this errors:

error 017: undefined symbol "nset"
error 017: undefined symbol "text"

I dont know if i have to make a new nset[128]; and new text[128]; :V

15
ShowRoom (pawn) / Re: [INCLUDE UNTESTED] NE Database system
« on: August 11, 2014, 05:29:43 am »
Hi, i installed your database script, but it gives me 3 errors, wich i fixed one

BEFORE: while(v2[count] != null&&found==0)

AFTER: while(v2[count][0] != null&&found==0)

But now i have 2 errors and i cant fix them, can you help me please?

C:\Users\The_Lucifer\Desktop\The Matrix Revolucion Latino\pawno\include\nedb.inc(14) : error 048: array dimensions do not match

C:\Users\The_Lucifer\Desktop\The Matrix Revolucion Latino\pawno\include\nedb.inc(32) : error 033: array must be indexed (variable "result")

Thanks :D

Pages: [1] 2