Author Topic: Make scripts affect everyone - no dialogs [HELP ME]  (Read 768 times)

0 Members and 1 Guest are viewing this topic.

stealthstick

  • Klass Klown
  • ***
  • Posts: 360
  • Computer Scientist
    • View Profile
Make scripts affect everyone - no dialogs [HELP ME]
« on: May 02, 2012, 06:53:03 am »
How do you make a script affect everyone without using any dialogs, etc... Just pure .sqf.

For example, if I wanted to make a hint show up for all players, how would I do it with just an sqf, and no dialogs, like most of us did with Darky's.
I've been trying to use the "magic" script, and changed some things, but it only executes the script locally.
I tried to do a script that spawns everyone with a weapon, but it only spawns it for me. I want to be able to write any script, and have it run on all machines.
It's been a good few years, becoming what I always wanted to be.

BanHammer

  • Intentional Cheater
  • **
  • Posts: 46
    • View Profile
Re: Make scripts affect everyone - no dialogs [HELP ME]
« Reply #1 on: May 02, 2012, 11:27:49 am »
Code: [Select]
player setVehicleInit "you code here";
processInitCommands;
clearVehicleInit player;
but unfortunately this detected most network traffic logers, because statement always broadcasted as string parameter.



M. O.

  • Administrator
  • MasstKer
  • *
  • Posts: 9185
    • View Profile
    • http://www.tkc-community.net
Re: Make scripts affect everyone - no dialogs [HELP ME]
« Reply #2 on: May 02, 2012, 02:41:09 pm »
In that case I would think along the lines of some simple encryption.
Heckling is an art, and game hacking a science.

joopig

  • Insane Joker
  • ****
  • Posts: 602
    • View Profile
    • A Place Of Dreams
Re: Make scripts affect everyone - no dialogs [HELP ME]
« Reply #3 on: May 02, 2012, 02:55:19 pm »
Code: [Select]
player setVehicleInit "you code here";
processInitCommands;
clearVehicleInit player;
but unfortunately this detected most network traffic logers, because statement always broadcasted as string parameter.
+1 for helping on your first post, first time ive seen it happen. :icon_magician

stealthstick

  • Klass Klown
  • ***
  • Posts: 360
  • Computer Scientist
    • View Profile
Re: Make scripts affect everyone - no dialogs [HELP ME]
« Reply #4 on: May 03, 2012, 07:41:19 am »
Code: [Select]
player setVehicleInit "you code here";
processInitCommands;
clearVehicleInit player;
but unfortunately this detected most network traffic logers, because statement always broadcasted as string parameter.
+1 for helping on your first post, first time ive seen it happen. :icon_magician

They'd be a douche not to help me with the first post, seeing as of how I actually attempted to solve my own problem.

BTW, thanks BanHammer, works perfectly! :D
Had fun on some life servers.
« Last Edit: May 03, 2012, 05:58:42 pm by stealthstick »
It's been a good few years, becoming what I always wanted to be.

joopig

  • Insane Joker
  • ****
  • Posts: 602
    • View Profile
    • A Place Of Dreams
Re: Make scripts affect everyone - no dialogs [HELP ME]
« Reply #5 on: May 05, 2012, 09:56:59 pm »
Code: [Select]
player setVehicleInit "you code here";
processInitCommands;
clearVehicleInit player;
but unfortunately this detected most network traffic logers, because statement always broadcasted as string parameter.
+1 for helping on your first post, first time ive seen it happen. :icon_magician

They'd be a douche not to help me with the first post, seeing as of how I actually attempted to solve my own problem.

BTW, thanks BanHammer, works perfectly! :D
Had fun on some life servers.
Watch out on what servers you use this on, this is easily detectable on most servers through sniffing and battleye script detection.