Hello Guest, please login or register.
Did you miss your activation email?
Login with username, password and session length.

Pages: [1]   Go Down

Author Topic: (GM7) Quick Script #1  (Read 1026 times)

0 Members and 1 Guest are viewing this topic.

Koh

(GM7) Quick Script #1
« on: December 15, 2007, 04:50:26 pm »
  • Tamer Koh
  • *
  • Reputation: +6/-0
  • Offline Offline
  • Gender: Male
  • Posts: 980
Anyone can feel free to start quick scripts for others to use.  Just follow the numbers so no one gets confused O.O

Quick Script #1: Shadowed Text

Info: Simple script that helps you shadow your text without the extra effort.

Registered Users:
Code: [Select]
//scr_textshadow_ext(x,y,string,c1,c2,c3,c4,alpha)

draw_text_color(argument0+1,argument1,argument2,c_black,c_black,c_black,c_black,argument7)
draw_text_color(argument0,argument1+1,argument2,c_black,c_black,c_black,c_black,argument7)
draw_text_color(argument0,argument1,argument2,argument3,argument4,argument5,argument6,argument7)

Non-Registered Users (Provided by Atrius):
Code: [Select]
//scr_textshadow(x,y,string,color)

draw_set_color(c_black)
draw_text(argument0+1,argument1,argument2)
draw_text(argument0,argument1+1,argument2)
draw_set_color(argument3)
draw_text(argument0,argument1,argument2)
« Last Edit: December 23, 2007, 11:16:16 pm by 4Sword »
Logged
  • Megaclipse Games
Re: (GM7) Quick Script #1
« Reply #1 on: December 15, 2007, 05:19:04 pm »
  • Fear my Blades
  • *
  • Reputation: +3/-0
  • Offline Offline
  • Gender: Male
  • Posts: 562
Non-Registered Users:
Code: [Select]
//scr_textshadow(x,y,string,color)

draw_set_color(c_black)
draw_text(argument0+1,argument1,argument2)
draw_text(argument0,argument1+1,argument2)
draw_set_color(argument3)
draw_text(argument0,argument1,argument2)

Yours should probably be scr_textshadow_color or scr_textshadow_ext
Logged

I've done it (sorta)!  Bloom Lighting in GameMaker, and 3D mode too!  Check out the awesome Screen Saver.
  • Kousou Games

Koh

Re: (GM7) Quick Script #1
« Reply #2 on: December 15, 2007, 05:36:23 pm »
  • Tamer Koh
  • *
  • Reputation: +6/-0
  • Offline Offline
  • Gender: Male
  • Posts: 980
nice suggestion, I should have noticed that XD.  Your codes up there along with your name :D.
Logged
  • Megaclipse Games
Pages: [1]   Go Up

 


Contact Us | Legal | Advertise Here
2013 © ZFGC, All Rights Reserved



Page created in 0.232 seconds with 40 queries.