EVM-SSJ4 and SBFIX sourcecodes

New Member
Joined
Jan 3, 2008
Messages
21
Best answers
0
I must be crazy, but here it is. I don't have the motivation to mod for esf anymore. I hope someone will carry on my work, or atleast use it .


First stop: SBFIX, this will stop the old spiritbomb crash.

Sourcecode:
http://home.deds.nl/~dutchmeat/esf/SBFix.sma

And last but not least, EVM-SSJ4; This is a plugin that allowed players to acsend to Goku SSJ4 and Vegeta SSJ4. It also has the Transformation generator, where you can create your own transformation with just a text file.

Sourcecode
http://home.deds.nl/~dutchmeat/esf/ssj4.sma

I've put alot of work in these sources so credits would be nice.

And good luck with Esf

With kind regards,

Dutchmeat
 
New Member
Joined
Nov 18, 2007
Messages
26
Best answers
0
on the SBFix.sma replace
Code:
public plugin_init() 
{
	register_plugin("Spiritbomb nuke fix","1.0",FLOATNM)
	register_forward( FM_PlayerPostThink, "PlayerPostThink");
	
	return PLUGIN_CONTINUE 
}

public server_frame() {
	new clip,ammo
	for(new a = 1; a <= get_playersnum(); a++) {
		new weapon = get_user_weapon( a, clip, ammo )
		if(weapon == 12 && blockSB[a] > 4){
			client_cmd(a,"invnext")
		}
	}
}
With this
Code:
public plugin_init() 
{
	register_plugin("Spiritbomb nuke fix","1.0",FLOATNM)
	register_forward( FM_PlayerPostThink, "PlayerPostThink");
        register_forward( FM_PlayerPreThink, "preThink");
	
	return PLUGIN_CONTINUE 
}

public preThink(id) {
	new clip,ammo
	new weapon = get_user_weapon(iud,clip,ammo )
		if(weapon == 12 && blockSB[id] > 4){
			client_cmd(id,"invnext")
	}
}
Use the second version, because it's more optimized than the first one. In first one you might get overloaded.
 
New Member
Joined
Jun 19, 2005
Messages
1
Best answers
0
SSJ4 Compatibility with EVM 2.1

Is there a way to make the SSJ4 plugin compatible with EVM mod 2.1 so that instead of transforming into SSJ4 instantly, you can transform after your 4th transformation so it balances out a few things.

Or just tell me which call in the source can alter such settings and I shall get onto it hopefully.


Thanx a Mill!
 
Member
✔️ HL Verified
🎈 Advanced
Joined
May 28, 2008
Messages
203
Best answers
0
I complim this sma in amxx...i put in esf...the plugin is running...but i don`t know how to ascend in ssj4.Some help please
 
Former Forcepit Member :(
✔️ HL Verified
💻 Oldtimer
Joined
Aug 21, 2006
Messages
1,717
Best answers
0
Location
korriban
press z when you have the correct amount of powerlevel an option will come up stating wich ascension you want press 2 for ssj4
 
Member
✔️ HL Verified
🎈 Advanced
Joined
May 28, 2008
Messages
203
Best answers
0
I have 10.000.000 pl and nothing.You try this amxx?
 
Member
✔️ HL Verified
🎈 Advanced
Joined
May 28, 2008
Messages
203
Best answers
0
Uing?what is that?
 
Former Forcepit Member :(
✔️ HL Verified
💻 Oldtimer
Joined
Aug 21, 2006
Messages
1,717
Best answers
0
Location
korriban
try using it with ecx without bigpack
 

Users who are viewing this thread

Top Bottom