Home   Help Search Login Register  

Author Topic: How to change my flag?  (Read 1103 times)

0 Members and 1 Guest are viewing this topic.

Offline John

  • Members
  • *
How to change my flag?
« on: 17 Jul 2006, 22:23:04 »
hi there?...

I wanna change the flag in a mission im making....how can I do it?

Offline Cheetah

  • Former Staff
  • ****
Re: How to change my flag?
« Reply #1 on: 17 Jul 2006, 22:41:16 »
Place a flagpole and type in its init:
Code: [Select]
this setFlagTexture "rus_vlajka.pac";or
Code: [Select]
this setFlagTexture "usa_vlajka.pac";
this gives you a Russian or American flag.
Like missions? Help with Beta Testing! or take a look at the OFPEC Missions Depot for reviewed missions!

Offline myke13021

  • Contributing Member
  • **
  • Myke
Re: How to change my flag?
« Reply #2 on: 17 Jul 2006, 23:23:53 »
...and if you would like to use your own flags use .jpg file format (someone knows relation of width/height of the flags?), put it into your mission folder and use

Code: [Select]
this setflagtexture "myflag.jpg"

Offline Seven

  • Members
  • *
  • Am I a llama?
Re: How to change my flag?
« Reply #3 on: 18 Jul 2006, 00:56:14 »
256 * 128

Offline SniperAndy

  • Members
  • *
    • VBS Community
Re: How to change my flag?
« Reply #4 on: 19 Jul 2006, 01:54:12 »
Quote
...and if you would like to use your own flags use .jpg file format

you can also save it as pac, doesn't need to be .jpg.

Offline John

  • Members
  • *
Re: How to change my flag?
« Reply #5 on: 20 Jul 2006, 14:13:04 »
Cheers me deers!

Great help.