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 - NE.Restricted

Pages: 1 ... 5 6 [7]
91
ShowRoom (pawn) / Re: GUPS 1.17 Fixed version (And a extra script!)
« on: September 21, 2013, 09:52:12 am »
why hash 3 times? That's stupid, you will have a bigger rate of collisions when typing passwords, so you could be able to login with fsdghas when the password is bananas.


Use only one hash or none at all.
A different hash is not used on login.

92
Snippet Showroom / Re: Non-Damagable cars
« on: September 21, 2013, 09:50:25 am »
Nice Job  ;)
Hmm nice job? I could make even professional systems than this

93
Snippet Showroom / Non-Damagable cars
« on: September 20, 2013, 04:25:57 pm »
On top:
[pawn]new autofix[101];
new vehid[101];[/pawn]
On OnGameModeInit:
[pawn]public OnGameModeInit(){
SetTimer("autofixtimer", 500, 1);//this is the line you need to add
}[/pawn]
On OnPlayerText:
Code: [Select]
public OnPlayerText(playerid, cmdtext[])
{
if(strfind(cmdtext, "!", true) == 0) OnPlayerCommand(playerid, cmdtext[1]);//this is to prevent confusion between different scripts.
}
Add public OnPlayerCommand:
Code: [Select]
public OnPlayerCommand(playerid, command[])
{
new idx, cmd[243];
new tmp[243], tmp2[243];//we put array to be able to use strcmp on it
cmd = strtok(command, idx);
tmp = strtok(command, idx);//we use this here so we dont always need to define tmp
tmp2 = strtok(command, idx);
if(strcmp(command, "autofix", true) == 0){
if(autofix[playerid] == 0)
{
autofix[playerid] = 1;
SendClientMessage(playerid, 0x0FFDD349, "Autofix set to: [ON]");
}
if(autofix[playerid] == 1)
{
autofix[playerid] = 0;
SendClientMessage(playerid, 0x0FFDD349, "Autofix set to: [OFF]");
}
}
}
Add public autofixtimer
[pawn]public autofixtimer()
{
for(new mpl; mpl <= 100; mpl++) if(IsPlayerConnected(mpl) && autofix[mpl] == 1 && vehid[mpl] != 700){
SetVehicleHealth(vehid[mpl], 1000);
//printf("Auto-fixed player vehicle: [%d]", mpl);//uncomment if you want to be notified on every autofix
}
}[/pawn]
On OnPlayerEnterVehicle:
[pawn]public OnPlayerEnterVehicle(playerid, vehicleid)//yours may have parameter ispassenger
{
vehid[playerid] = vehicleid;
}[/pawn]
On OnPlayerExitVehicle:
[pawn]public OnPlayerExitVehicle(playerid)//yours may have additional parameters
{
vehid[playerid] = 700;
}[/pawn]

If you find any bugs, report them now!
Also, dont forget to rate!

NOTE: To add more commands to OnPlayerCommand, DO NOT use ! before text for example you use !say it will be activated when player types !!say and not !say.

94
ShowRoom (pawn) / Re: GUPS 1.17 Fixed version (And a extra script!)
« on: September 20, 2013, 12:02:47 am »
GUPS 1.17 Fixed version

FIXED:
!getcar,
!deposit,
!withdraw,
!givecash

IMPORTANT: You MUST use the pawno from the script or at least copy /pawno/include/ntsys.inc to /yourpawnodirectory/include/ to modify/edit the script. If you dont you will get this:
Fatal error (xx): Can not read from file ntsys.
I told you about an extra script in the title, right? Well, its a roleplay script. To use it, open pawno, look at the top and change new ROLEPLAY_MODE = 0; to new ROLEPLAY_MODE = 1;



~Note: This script is untested~
~Note: The credit is not stolen, thus the credits to gups scripters is still there~

First... you only change the name of the inc of madara and added some things of madara... nothing else..

I know the inc of madara, you only change the name and you "roleplay mode 1" pff  :P :P :o :o :o
I found out that i should give the madara credit too late. It was after I posted it. Anyways, I am not a thief and I don't steal credits.
And now I have a better ntencrypt(i just didnt posted it yet) you just change stock ntencrypt(val[]) return hash(val); to stock ntencrypt(val[]) return hash(hash(hash(val)));

OFFTOPIC: You dont have to always reply with quotes

95
VC:MP Clans / NE, MK, NMK - Neutral Mega Killers
« on: September 18, 2013, 04:35:08 pm »

Introduction to the NE Clan
 
The NE clan is a roleplay + deathmatch clan. It has three tags: NE., MK., NMK.. These three tags are all just some shortenings of Neutral Mega Killers. It has its own official server.
 
 
NE Members
 
Owner(s):
NE.Restricted
 
Member(s):
None
 
 
Our objective
 
The objective of NE is to make a clan for both rp players and dm players unlike most other clans.
 
 
Our forum
 
Our forum is on http://neclanserver.userboard.net/. NE Clan does not support any hacks, so attempts to hack the NE clan will not give you any advantage.

96
ShowRoom (pawn) / GUPS 1.17 Fixed version (And a extra script!)
« on: September 14, 2013, 12:21:22 pm »
GUPS 1.17 Fixed version

FIXED:
!getcar,
!deposit,
!withdraw,
!givecash

IMPORTANT: You MUST use the pawno from the script or at least copy /pawno/include/ntsys.inc to /yourpawnodirectory/include/ to modify/edit the script. If you dont you will get this:
Fatal error (xx): Can not read from file ntsys.
I told you about an extra script in the title, right? Well, its a roleplay script. To use it, open pawno, look at the top and change new ROLEPLAY_MODE = 0; to new ROLEPLAY_MODE = 1;



~Note: This script is untested~
~Note: The credit is not stolen, thus the credits to gups scripters is still there~

97
Not working.
Even if it is, TOO MANY WARNINGS!
Use this instead:
http://forum.vicecitymultiplayer.com/index.php?topic=6294.0

Pages: 1 ... 5 6 [7]