Search results

  1. GhettoTrucker

    Daily Script

    Not sure if i did it right (especially the heal part...) but i attached the cli script (.txt) to the top post!
  2. GhettoTrucker

    Daily Script

    lol...i'm still working on it! but in order to use a cli do you also have to scrictly use the .jar version of mafia? cause i have the .exe version!
  3. GhettoTrucker

    Helper Script

    Not sure... I think that the settings stay until the session is closed (just like if you manually type into the gCli disable ___)
  4. GhettoTrucker

    Helper Script

    NOW? ;D void main(int eat, int use, int buy, int drink) { if( eat == 0 ) { cli_execute("disable eat"); } else { cli_execute("enable eat"); } if( use == 0 ) { cli_execute("disable use"); } else { cli_execute("enable use"); } if( buy == 0 )...
  5. GhettoTrucker

    Helper Script

    I'm not sure i'm understanding what you are saying...how would you go about making this work?
  6. GhettoTrucker

    Daily Script

    OK, save it as a .txt not .ash? did i read that right? Also... is it possible to incorporate ASH commands for the heal into the CLI script?
  7. GhettoTrucker

    Helper Script

    void main(int eat, int use, int buy, int drink) { if( eat == 0 ) { cli_execute("disable eat"); else cli_execute("enable eat"); } if( use == 0 ) { cli_execute("disable use"); else cli_execute("enable use"); } if( buy == 0 ) { cli_execute("disable...
  8. GhettoTrucker

    Daily Script

    OK, could you post where you are talking about? So you think that having 10+ cli_execute() comands is better than what i have?
  9. GhettoTrucker

    Helper Script

    void main(int eat, int use, int buy, int drink) { if( eat == 0 ) { cli_execute("disable eat"); } if( use == 0 ) { cli_execute("disable use"); } if( buy == 1 ) { cli_execute("disable buy"); } if( drink == 1 ) { cli_execute("disable drink"); return; } } Better now?
  10. GhettoTrucker

    Daily Script

    Hey, i just finished making a script to fullfill someons request. The request is I switched up some of the order but it will work the same i think... Anyway could you guys tell me if i messed up somewhere? Here is the script ALSO: It does require some modification where it calls for sending...
  11. GhettoTrucker

    Helper Script

    void main(int eat, int use, int buy, int drink) { if( eat => 0 ) { cli_execute("disable eat"); } if( use => 0 ) { cli_execute("disable use"); } if( buy => 1 ) cli_execute("disable buy"); } if( drink => 1 ) { cli_execute("disable drink"); return; } } Better?
  12. GhettoTrucker

    Helper Script

    OK, so using the new comands "disable" i made a quick little scipt thing that you can just paste onto the top of your script. I think i may have added a few extra "{}"'s and "return"'s. So do help me modify it! ...please. How to use it: Once run it will prompt you to set values for int(s). If...
  13. GhettoTrucker

    fighting script

    what kind of error you getting? It is probably out dated for 9.3
  14. GhettoTrucker

    9.3 New Stuff!

    right...I realized that after i posted (like an hour) but was too lazy to fix it!
  15. GhettoTrucker

    9.3 New Stuff!

    Sorry to bother but is their also a disable( "purchase" ) command? (for testing so you don't actually buy 100k worth of stuff on script testiong...)
  16. GhettoTrucker

    9.3 New Stuff!

    Alright cool! Also, is it possible to put multiple "actions" togather in one string? example disable("eat, drink, use") //or// enable("eat, drink, use")
  17. GhettoTrucker

    9.3 New Stuff!

    I got a questions about the new stuff in v. 9.3... 1) How do you use the new commands as put in this thread? I would like to start using it in a script i'm working on. Thanks!
  18. GhettoTrucker

    New Mafia feature?

    Thanks holatuwol! Could you please post a code example of how you would use this? Also, would you also be able to enable/dissable purchases? Thanks again! And sorry for the brief description... I was in a hurry last night!
  19. GhettoTrucker

    New Mafia feature?

    Pretty much with all the dabate between the meat loss/gain of buying items it would allow for an easy way to skip the commands of using them. It could even just say if you don't have it, don't buy it...
  20. GhettoTrucker

    New Mafia feature?

    Would it be possible to add a few new features that would look like dont_eat () dont_use () dont_drink () These comands would be placed at the top of a script so that it would remove the proccess of deleting or commenting out lines of code that call for eating, drinking, or the use of items you...
Back
Top