Recent content by Supermacy31

  1. S

    1

    I have been using these for a while and decided to share because there is a rare CLEO in there that I do not ever want to lose. If my computer gets a virus, I will always still have access to these files so it is why it is to be shared. Here are some of the things included...
  2. S

    CLEO Animations Script

    This is incomplete but I'm giving it away someone continue it and blah blah blah I have other things to do  :dont_care:
  3. S

    CLEO Help Anyone know how to use if car is near & onfoot then...???

    OMG. I think that I get it now. It's thinking that I have a specific car in-mind: 0203: actor $PLAYER_ACTOR near_car 1@ radius 5.0 5.0 flag 0 on_foot When you use this and you put near_car 1@ it's checking if car 1@ is near-by right? But that's not what I want to do. Ugh. I'm actually...
  4. S

    CLEO Help Anyone know how to use if car is near & onfoot then...???

    Nope that works. I just didn't put the whole code b/c. I know it works. I just added this part (the if doesn't execute) and I know that's what doesn't work.
  5. S

    CLEO Help Anyone know how to use if car is near & onfoot then...???

    Here's the current script: if 0@ == 70 then if //SNIPPET: Will use soon: 09B3: get_car 5@ door_status 11@ 0203: actor $PLAYER_ACTOR near_car 1@ radius 5.0 5.0 flag 0 on_foot then 0AF9: samp say_msg "Near." end 0AF0: 1@ = get_int_from_ini_file "cleo\kbult.ini" section "kb" key "unislimit" wait...
  6. S

    CLEO Help Is there a way to check if you're in an interior in CLEO? (any interior)?

    Thanks. I'm not sure if it actually works. The server that I tried it on, I think they have a psuedo-interior where it's not an actual interior. But thanks. It seems to work. May try later in a different scenario!
  7. S

    CLEO Help Is there a way to check if you're in an interior in CLEO? (any interior)?

    Is there such a way and how would you do it? I really want this snippet. It'd be nice. If player is in interior ...
  8. S

    CLEO Help *SIGH* How can I make my keybind script shorter?

    I tested it. Thanks a lot. I really appreciate it. May use in the future or may use as a reference in the future. [hr] Thanks a lot. May consider for loops in the future but they are a bit 'eeky in CLEO.
  9. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    Works! Oh my! It works, hurray! Hip hip hurray! I used this snippet: 0AC8: 2@ = allocate_memory_size 128 0AD3: 2@ = "Testing, testing, one-two-three." //Format string. 0AF9: samp say_msg 2@ 0AC9: free_allocated_memory 2@ //Free! Now the variable really records the strings and I can do...
  10. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    OK I have tried to use it w/local vars. 0@-31@ however Sannybuilder doesn't let you compile if you assign them to strings, so like if I do 0@ = "Hi!" then Sannybuilder would not allow it. I also don't know how to use : 0A8C so I can't comment on that. Do you know of an easy way or a way for...
  11. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    For some shit reason, they don't work at all. Ugh. Here's my current fix: if 0@ == 99 //Activation then 0AC8: 1@ = allocate_memory_size 260 0AF4: 1@ = read_string_from_ini_file "cleo\kbult.ini" section "ivswitches" key "s0" 0AF9: samp say_msg 1@ if 0C14: strcmp string1 1@ string2 2@v // Case...
  12. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    I need help in an issue that I'm having. CLEO is being retarded w/the variables: if  0@ == 99 //Activation then 0AC8: 1@ = allocate_memory_size 260 0AF4: 1@ = read_string_from_ini_file "cleo\kbult.ini" section "ivswitches" key "s0" 0AF9: samp say_msg 1@ 2@v = "hi" 4@v = "bye" if  0C14: strcmp...
  13. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    This snippet is in a label: if 0@ == 99 //Activated? Then execute function! then 0AC8: 1@ = allocate_memory_size 260 0AF4: 1@ = read_string_from_ini_file "cleo\kbult.ini" section "connectmgr" key "state" 0AF9: samp say_msg 1@ if 1@ == '/connect' //Note that I tried " and it led to the same...
  14. S

    CLEO Help How can I make a cmd. like /spawncar (ID is in my .INI) work? It always crashes!)

    Wow, it worked! It was the AS IS thing which has been bugging my GTA_SA. Oh man. What a simple thing. Thanks man, thanks you guys! =)
Top