Jump to content

nindall

Member
  • Content Count

    39
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About nindall

  • Rank
    Private First Class
  1. nindall

    The BBC

    It relly gets to me when they ask for, and read out, the general public's opinions! 'Audience participation' has it's places,.. but the news isn't one of them!
  2. nindall

    Political Change

    What about WW2? Vietnam? Voluntneers? Draft? Everything isn't Iraq. It's an exception. The following is taken from - http://www.ppu.org.uk/learn/infodocs/st_conscription_l.html A little history about conscription in the UK with an emphasis on provisions for 'conscientious objection'.
  3. You could use a blank button with a picture placed behind. <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">class RscPicture { access=3; type=0; idc=-1; style=48; colorBackground[]={0,0,0,0}; colorText[]={1,1,1,1}; font="tahomaB24"; sizeEx=0; }; class RscButton { access=3; type=1; style=2; w=0.16; h=0.06; colorText[]={0.08,0.08,0.12,1}; font="tahomaB24"; sizeEx=0.02; default=0; soundPush[]={"ui\ui_ok",0.2,1}; soundClick[]={"",0.2,1}; soundEscape[]={"ui\ui_cc",0.2,1}; }; class ButtonPic { idd=-1; movingEnable=false; controlsBackground[]={"Pic"}; controls[]={"Button"}; class Pic: RscPicture { idc=-1; x=0.475; y=0.475; w=0.05; h=0.05; text="ismg.paa"; }; class Button: RscButton { idc=-1; x=0.45; y=0.45; w=0.1; h=0.1; text=""; action="closeDialog 0"; }; };
  4. nindall

    The Middle East part 2

    So using cluster bombs isn't illegal! Targeting them, like any indiscriminate weapon, near civilians is. What about the Fourth Geneva Convention 'for the Protection of Victims of War'?!
  5. nindall

    The Middle East part 2

    Who says so? What the hell did he think would happen?!
  6. nindall

    War against terror

    Link Good news!
  7. nindall

    markers and colors

    Check out the BI Wiki comRef! Specifically the setMarkerColor command.
  8. hmmm, i can't see any errors in your script then! After the script has executed does the ammo show up in the 'gear' section of the notepad?
  9. You're passing a string to the script - <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">"law" exec "buy_magazine.sqs" then trying to access it as an array - <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">_magazine = _this select 0; You can either change the first line of your script to - <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">_magazine = _this or probably a better option (To make it easier for others to understand/use.) pass the arguments to the script in an array - <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">["law"] exec "buy_magazine.sqs"
  10. nindall

    object returned as string!?

    <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">_p = format["swag%1",rWagonname] [_p] exec "/scripts/supplycheck.sqs" Switching these two lines around should work. To check if the unit is alive you can use either '!(alive _1)' or 'getDammage _1 == 1'.
  11. nindall

    War against terror

    ..or better yet, subject to control orders.
  12. nindall

    Setpos on a trigger?

    Yep, using setPos! (I guess you knew!) What is your code?
  13. nindall

    dead group check

    You could use count and units... <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">? count UNITS groupName == 0 : some command; Exitor... <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">? count UNITS group unitName == 0 : some command; Exit Not that I know of, but it does get harder to spot mistakes!
  14. nindall

    2 Quick Questions

    1. Either a land waypoint or the land command - 2. Don't really know, but I think it involves playMove!
  15. nindall

    Camcreatean object

    <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">object = "Type" camCreate Position object setDir 90 camCreate returns the object it created. The var object is like a name set in the editor.
×