SA-MP Forums Archive
Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker (/showthread.php?tid=65139)



Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - heyyyy - 10.02.2009

my first GM

this gm is made for stunt and free roam

pwn (link updated)

http://solidfiles.com/d/aNhB

amx (link updated)

http://solidfiles.com/d/6qT9

please DO NOT REMOVE CREDITS

thnx & credits to DanielBurridge for bug fix thnx

thnx


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - DDaGxXx - 10.02.2009

Nice one.


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - graffyk - 10.02.2009

Can youn put more info about de GM,am some pics?


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - 1111 - 10.02.2009

good


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - SuperS0nic - 10.02.2009

Theres nothing in it , just vehicles and some commands.
Rating: -100 of 1 million, theres no objects so how can u say this is a stunt gm?


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - heyyyy - 10.02.2009

its just my first one


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - Burridge - 10.02.2009

hey i think its great for a novice scripter to learn form. its a gamemode of which they can build on with great ease.

me myself am a novice scripter. this would be somthign i would use to get my scripting skills greater.
theres a bug where i cant seem to spawn.

:/

EDIT: Fixed it.

Код:
//public OnPlayerRequestClass(playerid, classid)
//{
//	SetPlayerPos(playerid,1984.4445,157.9501,55.9384);
 // SetPlayerCameraPos(playerid,1984.4445,160.9501,55.9384);
//	SetPlayerCameraLookAt(playerid,1984.4445,157.9501,55.9384);
//	SetPlayerFacingAngle(playerid,0.0);
//}
thats the old code. somehow it was bugged but when i commented it, it seemed to work. but only bug was you coudlent see what class you were choosing.


okay now this is what i changed it to. and it now works perfectly. i sugest all people who download edit that part or even better "heyyyy" updates the pwn file and reuploads it. ^^

heres the new code.


Код:
public OnPlayerRequestClass(playerid, classid)
{
	SetPlayerInterior(playerid,14);
	SetPlayerPos(playerid,258.4893,-41.4008,1002.0234);
	SetPlayerFacingAngle(playerid, 270.0);
	SetPlayerCameraPos(playerid,256.0815,-43.0475,1004.0234);
	SetPlayerCameraLookAt(playerid,258.4893,-41.4008,1002.0234);
	return 1;
}
im not sure what you did wrong but changeing that part to what i changed it to seems to work.


nice script btw. easy to update ^^

you will probally find it was because you were missing a return1; but i dunno anyway its fixed. maby you should update it.


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - heyyyy - 11.02.2009

thnx updated

to :SuperS0nic :- i will add some stunt places and update it soon thnx for ur rating


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - [GCM]Alesandro - 11.02.2009

Please add some Screens !!!



Colin


Re: Rock StunterX (stunt,free roam gm) by Shock_Waves aka Devilrocker - wups - 05.12.2010

Quote:
Originally Posted by Burridge
Посмотреть сообщение
hey i think its great for a novice scripter to learn form. its a gamemode of which they can build on with great ease.

me myself am a novice scripter. this would be somthign i would use to get my scripting skills greater.
theres a bug where i cant seem to spawn.

:/
You just needed to put return 1; at the end.