Graal Forums  

Go Back   Graal Forums > Private forums > Graal4 Forums > Graal V4 Main Forum
FAQ Members List Calendar Today's Posts

 
 
Thread Tools Search this Thread Rate Thread Display Modes
  #1  
Old 12-20-2005, 06:33 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Exclamation Graal v4.03 release

New versions for Windows, Linux and Mac have been uploaded. If you have already installed it then just connect to the server list, otherwise follow following urls:

Windows:http://www.graalonline.com/downloads/Graal4Setup.exe
Linux:http://www.graalonline.com/downloads/graal4setup
Mac:http://www.graalonline.com/downloads/Graal4.dmg.bz2

v4 should be quite finished now, ready for the official release.

Changes:
Graal 3D:
- fixed several crashing bugs
- fixed the player shadow
- on Linux and Mac you can change the mouse sensitivity in the options now
- readded the terrain detail textures
- fixed saving of lightmaps (meaning reentering the server is faster)
- improved the speed on Mac

Graal 2D:
- fixed microphone support on Mac; for changing the volume of the microphone you currently need to edit ~/.graal/graal4/graal4config.txt
- added support for animated tiles (addtiledef with mngs/gifs)
- fixed an addtiledef problem with overwriting tiledefs for single levels / group of levels (so that the Era mines don't have snow anymore)
- "showscriptstats" chat command for showing the clientside script commands which take most cpu time
- level.showterraingrid = true/false for showing the terrain grid like when you open a terrain gmap in the level editor
- new F1 window (online only)
- the F1,F3 and F5 windows can be closed by pressing the keys again
- when sending a Mass PM then it is also adding the "Mass Message:" in front of them in the PM history
- fixed a crashing bug with "else else" in old scripting engine
- it doesn't remove your local guild tag anymore when you go on the login server and then the server where you had the local tag
- on Windows it is now logging into graal4console.log, so you/we can easier find problems when the game is crashing
- added player.platform variable (win,mac,linux) for new scripting
- keypressed events now have 3 parameters: keycode, character, and scancode (independend from the players language, but are different for mac, so if you use the scancode then also let some mac player test it)
- added a new pics1.png to the installers and to the levels pack (tile fixes made by haunter and others)

Particle Engine:
- emitter.emitautomatically = true/false - if you want the emitter to automatically emit particles or not
- emitter.emitatterrainheight = true/false - if enabled then it will emit all particles at terrain height (+emissionoffset) instead of the z of the showimg
- emitter.emitat({x,y,z}) - for emitting a particle at a special position without needing to modify emissionoffset
- emitter.particletypes = number, emitter.particles[] - by increasing particletypes to 2 or more (default is 1), you can let the emitter emit different particles; you can access the additional particles by emitter.particles[1] etc.; emitter.particle is the same like emitter.particles[0]
- emitter.dropemitter, emitter.dropwateremitter - those work exactly like the emitter itself (e.g. you can edit emitter.dropemitter.particle) and are used for emitting particles once a particle drops on the ground (rain drops) or the lifetime is over (for fireworks) - once a particle is dropping the emitter is calling dropemitter.emitat() to produce the drops; if there is a dropwateremitter and the particle was dropping on water then it is using the dropwateremitter for the drop effect
- particle.sound - a sound file or array of sound files which is played when the particle is emitted, mainly meant for combination with the emitter.dropemitter

Dropemitter example (can be used for falling lava effects or so):
PHP Code:
//#CLIENTSIDE
function onCreated() {
  
with (findimg(200)) {
    
attachtoowner true;

    
// Emitter attributes
    
layer 2;
    
with (emitter) {
      
delaymin 0.1;
      
delaymax 0.3;
      
nrofparticles 2;
      
emissionoffset = {0010};
      
checkbelowterrain true;
      
wraptoclippingbox true;
      
cliptoscreen true;

      
with (particle) {
        
lifetime 10;
        
zangle = -1;
        
speed 4;
        
image "l_snowball.png";
        
mode 1;
        
alpha 0.01;
      }

      
addglobalmodifier("impulse"0.20.2"zangle""multiply"0.950.95);
      
addlocalmodifier("once"00"rotation""replace"02*pi);
      
addlocalmodifier("once"00"angle""replace"degtorad(200), degtorad(260));
      
addlocalmodifier("once"00"x""add", -100100);
      
addlocalmodifier("once"00"y""add", -100100);
      
addlocalmodifier("once"00"speed""replace"48);
      
addlocalmodifier("range"01"alpha""replace"0.011);

      
with (dropemitter) {
        
nrofparticles 10;
        
with (particle) {
          
lifetime 1;
          
image "l_snowball.png";
          
mode 1;
          
zoom 0.8;
          
zangle 0.5;
          
sound "walk_snow.wav,,,,,";
          
spin 4*pi;
        }
        
addlocalmodifier("once"00"angle""replace"02*pi);
        
addlocalmodifier("once"00"speed""replace"36);
        
addlocalmodifier("once"00"rotation""replace"02*pi);
        
addglobalmodifier("range"0100000"zangle""add", -2, -2);
        
addlocalmodifier("range"0.51"alpha""replace"0.990);
        
addlocalmodifier("range"0.41"zoom""replace"0.80);
      }
    }
  }

This script requires a snowball image which is attached to this post. I have also attached the sound (walk_snow.wav) in case someone is missing that.
Attached Images
 
Attached Files
File Type: wav walk_snow.wav (1.8 KB, 218 views)
  #2  
Old 12-20-2005, 09:48 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Excellent work, Stefan!
__________________
Skyld
  #3  
Old 12-20-2005, 11:41 AM
Nabru Nabru is offline
100 IFP and runnin'
Nabru's Avatar
Join Date: Aug 2005
Location: Wisconsin
Posts: 440
Nabru will become famous soon enough
Send a message via ICQ to Nabru
Good job
__________________
~Urban
  #4  
Old 12-20-2005, 04:08 PM
Magadal Magadal is offline
Banned
Join Date: Jan 2005
Location: Germany
Posts: 942
Magadal will become famous soon enough
Leet, thx >:P.
  #5  
Old 12-20-2005, 09:59 PM
CujoDaMan CujoDaMan is offline
Shaded Legend Management
CujoDaMan's Avatar
Join Date: Aug 2004
Location: Canada, Nova Scotia
Posts: 108
CujoDaMan is an unknown quantity at this point
Send a message via AIM to CujoDaMan Send a message via MSN to CujoDaMan
Will v4 ever be relesed to classic accounts?
__________________
Last Manager of Shaded Legend
  #6  
Old 12-20-2005, 10:45 PM
Riot Riot is offline
Delteria Management
Join Date: Nov 2003
Location: Seminole County, Florida
Posts: 280
Riot is on a distinguished road
Quote:
Originally Posted by CujoDaMan
Will v4 ever be relesed to classic accounts?
Considering:
Quote:
Originally Posted by Stefan
v4 should be quite finished now, ready for the official release.
I would say, yes.
  #7  
Old 12-20-2005, 11:00 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Great job

Ever since I ran out of VIP I was like "OMG NO v4 ANYMORE?~?!?!?! I WIL NOT servIVVE!!11" but now it's coming out so I'm cool
__________________
  #8  
Old 12-21-2005, 01:48 AM
pacMASTA pacMASTA is offline
British Guy
pacMASTA's Avatar
Join Date: Aug 2003
Location: California
Posts: 377
pacMASTA has a little shameless behaviour in the past
Send a message via AIM to pacMASTA Send a message via MSN to pacMASTA
Finally the official release is almost apon us good work stefan and the rest of the team if their is any.
  #9  
Old 12-21-2005, 10:53 AM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
Haha, you're the man!
__________________
  #10  
Old 12-21-2005, 03:46 PM
har0shi har0shi is offline
Registered User
Join Date: Dec 2005
Posts: 12
har0shi is on a distinguished road
Unhappy

um.... the mac download doesn't work, just brings up a huge page of script
  #11  
Old 12-21-2005, 05:11 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Right-click and save-as?
  #12  
Old 12-21-2005, 07:22 PM
har0shi har0shi is offline
Registered User
Join Date: Dec 2005
Posts: 12
har0shi is on a distinguished road
Unhappy

Quote:
Originally Posted by Stefan
Right-click and save-as?
my only right click options are:

open link in new window
download linked file
add link to bookmarks
copy link


p.s. "download linked file" just downloads the text
  #13  
Old 12-21-2005, 10:46 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
download linked file should be ok
  #14  
Old 12-22-2005, 01:03 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Update: Released v4.03 revision for all platforms to fix particle emitter on stats layer / GUI, so that the snow in the new F1 window is working fine
  #15  
Old 12-22-2005, 03:28 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Nice job on the updates, when do we get a new RC and Level Editor?
The Editor doesn't read GS2 and i'm severely needing a delete folders button.

Btw could you add a leader to read serveroptions, like servero.staff, you would be able to see whos on the staff list for scripts, among other things.
__________________
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 12:02 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.