AscentWorld
Would you like to react to this message? Create an account in a few clicks or log in to continue.



 
HomeHome  PortalPortal  Latest imagesLatest images  SearchSearch  RegisterRegister  Log inLog in  

 

 March 20th 2008 Releases

Go down 
4 posters
AuthorMessage
Rouslan
The One
The One
Rouslan


Posts : 65
Join date : 2008-03-20
Location : Your BIOS

March 20th 2008 Releases Empty
PostSubject: March 20th 2008 Releases   March 20th 2008 Releases EmptyThu Mar 20, 2008 8:25 pm

Latest Ascent Compile 4234

Download By MegaUpload Click Here

More to come
Back to top Go down
https://ascentworld.forumotion.com
HalestormXV
Sentinos
Sentinos
HalestormXV


Posts : 43
Join date : 2008-03-21

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 12:31 am

/cheer I tried compiling this on my own and got no luck with it at all.

Hey do you have a flying mounts in azeroth version king
Back to top Go down
Fusion
CN Gangster
CN Gangster
Fusion


Posts : 123
Join date : 2008-03-21
Location : Some ware deep in your hard drive

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 6:52 am

HalestormXV wrote:
/cheer I tried compiling this on my own and got no luck with it at all.

Hey do you have a flying mounts in azeroth version king

try looking at the wiki its some nice info on there.

also to get flying mounts you have to edit your core so it knows what maps to allow it on, even when you have done that you cant just use a mount you have to make a item which castes the spell but ahh well =P
Back to top Go down
http://www.fusionprogramming.co.uk
Rouslan
The One
The One
Rouslan


Posts : 65
Join date : 2008-03-20
Location : Your BIOS

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 7:24 am

HalestormXV wrote:
/cheer I tried compiling this on my own and got no luck with it at all.

Hey do you have a flying mounts in azeroth version king





WoW Mod’s



There’s a few quick and handy modifications you can make to your copy of Ascent if you compile your own software.
Flying Mounts in Azeroth:
Changes to make your core ‘Azeroth Flyable’ - Quick Guide.
All these changes are made in folder trunk/src/game.
=======================================================
Open Player.cpp
Change:
!=530
to
>580
Change
!= 530
to
> 580
Save Player.cpp
=======================================================
Open Spellauras.cpp
Search for:
void Aura::SpellAuraEnableFlight(bool apply)
Replace the “else” with “if(!apply)” which should look like this:
Code:
void Aura::SpellAuraEnableFlight(bool apply)
{
if(m_target->IsPlayer())
{
static_cast(m_target)->FlyCheat = apply;
static_cast(m_target)->flying_aura = m_spellProto->Id;
}
if(apply)
{
m_target->EnableFlight(true);
m_target->m_flyspeedModifier += mod->m_amount;
m_target->UpdateSpeed(true);
}
if (!apply) //replaced else with: if(!apply) to allow flying mounts in the old lands
{
m_target->DisableFlight(true);
m_target->m_flyspeedModifier -= mod->m_amount;
m_target->UpdateSpeed(true);
}
}
Save Spellauras.cpp
=======================================================
Open Unit.cpp.
Change:
!= 530
to
> 580
Save Unit.cpp
=======================================================
Compile your source.
Enable LUA:
Open trunk/src/shared/AscentConfig.h
Find:
//#define ENABLE_LUA_SCRIPTING 1
Replace with:
#define ENABLE_LUA_SCRIPTING 1
And compile your core.
Back to top Go down
https://ascentworld.forumotion.com
Fusion
CN Gangster
CN Gangster
Fusion


Posts : 123
Join date : 2008-03-21
Location : Some ware deep in your hard drive

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 7:51 am

yeah that's what i done, apart from the AscentConfig.h file will that able you to use the normal mounts or will you still have to make your own item with the spell on it?
Back to top Go down
http://www.fusionprogramming.co.uk
Rouslan
The One
The One
Rouslan


Posts : 65
Join date : 2008-03-20
Location : Your BIOS

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 7:53 am

Fusion wrote:
yeah that's what i done, apart from the AscentConfig.h file will that able you to use the normal mounts or will you still have to make your own item with the spell on it?

well its core modifications, you can use all your flying mounts in Azeroth, No item creation needed
Back to top Go down
https://ascentworld.forumotion.com
Fusion
CN Gangster
CN Gangster
Fusion


Posts : 123
Join date : 2008-03-21
Location : Some ware deep in your hard drive

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 7:56 am

Rouslan wrote:
Fusion wrote:
yeah that's what i done, apart from the AscentConfig.h file will that able you to use the normal mounts or will you still have to make your own item with the spell on it?

well its core modifications, you can use all your flying mounts in Azeroth, No item creation needed

http://wow-v.com/forums/index.php?showtopic=1977

that's were i found my guide along time ago Razz
Back to top Go down
http://www.fusionprogramming.co.uk
HalestormXV
Sentinos
Sentinos
HalestormXV


Posts : 43
Join date : 2008-03-21

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 8:18 am

I know I am the saem Halestorm on WoW-V lol. No no my question was can any of you compile me a version of ascent that has those modifications in it. Becasue for some reason my ascent doesnt compile. Even after I added in that new library they said was needed you know the one in the readme. Unless you have a better idea how to compile it. Becasue I get error after eroor after errror. And I compiled ALOT of ascents on my own. So since I see you have compiled version I was wondering if you can make those mdoifcations and recompile it for me.
Back to top Go down
Fusion
CN Gangster
CN Gangster
Fusion


Posts : 123
Join date : 2008-03-21
Location : Some ware deep in your hard drive

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 8:28 am

HalestormXV wrote:
I know I am the saem Halestorm on WoW-V lol. No no my question was can any of you compile me a version of ascent that has those modifications in it. Becasue for some reason my ascent doesnt compile. Even after I added in that new library they said was needed you know the one in the readme. Unless you have a better idea how to compile it. Becasue I get error after eroor after errror. And I compiled ALOT of ascents on my own. So since I see you have compiled version I was wondering if you can make those mdoifcations and recompile it for me.

nice to see Razz didn't look at the name. the last version i compiled was 4110 and that went fine. i tend to stick to the stable versions =P.
Back to top Go down
http://www.fusionprogramming.co.uk
HalestormXV
Sentinos
Sentinos
HalestormXV


Posts : 43
Join date : 2008-03-21

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 8:56 am

Did you have to download and extract and compile any external libraries? Or just download open the win file open the solution and clean and build?
Back to top Go down
Fusion
CN Gangster
CN Gangster
Fusion


Posts : 123
Join date : 2008-03-21
Location : Some ware deep in your hard drive

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 9:01 am

HalestormXV wrote:
Did you have to download and extract and compile any external libraries? Or just download open the win file open the solution and clean and build?

all i needed to do is DL and make a clean build needed no external libraries
Back to top Go down
http://www.fusionprogramming.co.uk
Rouslan
The One
The One
Rouslan


Posts : 65
Join date : 2008-03-20
Location : Your BIOS

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 9:33 am

Fusion wrote:
HalestormXV wrote:
I know I am the saem Halestorm on WoW-V lol. No no my question was can any of you compile me a version of ascent that has those modifications in it. Becasue for some reason my ascent doesnt compile. Even after I added in that new library they said was needed you know the one in the readme. Unless you have a better idea how to compile it. Becasue I get error after eroor after errror. And I compiled ALOT of ascents on my own. So since I see you have compiled version I was wondering if you can make those mdoifcations and recompile it for me.

nice to see Razz didn't look at the name. the last version i compiled was 4110 and that went fine. i tend to stick to the stable versions =P.

sure ill do it for ya Smile

tell me which revision>
Back to top Go down
https://ascentworld.forumotion.com
HalestormXV
Sentinos
Sentinos
HalestormXV


Posts : 43
Join date : 2008-03-21

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 10:04 am

Thanks. Whatever the msot stable working revision is. I assume it to be the latest?

EDIT: I just did rev 4110 and still.......it compiles but I gett errors when trying to do my C++ scripts and add them to the solution. I am lost I cant figure these out. So any help that you guys can give me with would be great. So if you can compile a working Rev that is new and stable with the flying mounts for me thatd be great also I will keep trying to figure out why my custom teleporter isn't working. If I cant get it I will post lol. Others can learn form my errors. They always do Laughing
Back to top Go down
randylikestoast

randylikestoast


Posts : 6
Join date : 2008-03-21

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 11:01 am

This may sound silly, but this version does work with cosa nostra yes?
Back to top Go down
Rouslan
The One
The One
Rouslan


Posts : 65
Join date : 2008-03-20
Location : Your BIOS

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 11:04 am

randylikestoast wrote:
This may sound silly, but this version does work with cosa nostra yes?


Cosa Nostra comes with ready to go ascent , in the repack file Smile Thats the ascent that needs to be used
Back to top Go down
https://ascentworld.forumotion.com
Rouslan
The One
The One
Rouslan


Posts : 65
Join date : 2008-03-20
Location : Your BIOS

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 11:05 am

randylikestoast wrote:
This may sound silly, but this version does work with cosa nostra yes?

what scripts?
Back to top Go down
https://ascentworld.forumotion.com
Fusion
CN Gangster
CN Gangster
Fusion


Posts : 123
Join date : 2008-03-21
Location : Some ware deep in your hard drive

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 11:06 am

randylikestoast wrote:
This may sound silly, but this version does work with cosa nostra yes?

yes and no, depends if Rouslan has added his custom scripts in and any modifications he has made with the core in the repack if the answer to that is yes then yeah it should work just keep your config files and and scripts and script bin folders and change the rest
Back to top Go down
http://www.fusionprogramming.co.uk
Fusion
CN Gangster
CN Gangster
Fusion


Posts : 123
Join date : 2008-03-21
Location : Some ware deep in your hard drive

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 11:07 am

Rouslan wrote:
randylikestoast wrote:
This may sound silly, but this version does work with cosa nostra yes?

what scripts?

think he means Ascent Compile 4234
Back to top Go down
http://www.fusionprogramming.co.uk
randylikestoast

randylikestoast


Posts : 6
Join date : 2008-03-21

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 11:08 am

Ah ok, so none of these new updates like ncdb's I do not need to worry about? Just the arrival of CN2? Very Happy
Back to top Go down
randylikestoast

randylikestoast


Posts : 6
Join date : 2008-03-21

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 11:09 am

Fusion wrote:
Rouslan wrote:
randylikestoast wrote:
This may sound silly, but this version does work with cosa nostra yes?

what scripts?

think he means Ascent Compile 4234

Yes exactly
Back to top Go down
Fusion
CN Gangster
CN Gangster
Fusion


Posts : 123
Join date : 2008-03-21
Location : Some ware deep in your hard drive

March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases EmptyFri Mar 21, 2008 11:10 am

randylikestoast wrote:
Ah ok, so none of these new updates like ncdb's I do not need to worry about? Just the arrival of CN2? Very Happy

again that's debatable if you want to fix some of the bugs your self you may want to ask for a patch and a DB / Ascent update

see making it open source is the way to go!
Back to top Go down
http://www.fusionprogramming.co.uk
Sponsored content





March 20th 2008 Releases Empty
PostSubject: Re: March 20th 2008 Releases   March 20th 2008 Releases Empty

Back to top Go down
 
March 20th 2008 Releases
Back to top 
Page 1 of 1
 Similar topics
-
» March 20th 2008 Releases
» 2008 Releases
» 2008 Releases
» Lua scripts 2008

Permissions in this forum:You cannot reply to topics in this forum
AscentWorld :: Ascent Support :: Ascent Releases-
Jump to: