Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

vandie

Members
  • Posts

    37
  • Joined

  • Last visited

    Never

vandie's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. search Google… its illegal for any of us to give you a link but I can say there is thousands of free copies of vb6 Google. edit 1: soz sekaru you posted as i was typing
  2. EPIC! looks amazing… please dont change it
  3. Thanks I'm just learning vb6 and thought that this could be useful for events and stuff
  4. I made this tutorial as I have not given anything to the community and I wanted to so here it is! This Tutorial is for newbs because most 'experienced' users will know how to do this. Im going to show you how to make it so that player vs admin is toggle-able. server side create a check box on frmServer called **chkAdminAttack** and set the caption to **Alow Admin vs Player?** now find this in modCombat ``` Check to make sure that they dont have access If GetPlayerAccess(attacker) > ADMIN_MONITOR Then Call PlayerMsg(attacker, "Admins cannot attack other players.", BrightBlue) Exit Function End If ' Check to make sure the victim isn't an admin If GetPlayerAccess(victim) > ADMIN_MONITOR Then Call PlayerMsg(attacker, "You cannot attack " & GetPlayerName(victim) & "!", BrightRed) Exit Function End If ``` and replace it with this ``` If frmServer.chkAdminAttack.Value = 0 Then ' Check to make sure that they dont have access If GetPlayerAccess(attacker) > ADMIN_MONITOR Then Call PlayerMsg(attacker, "Admins cannot attack other players.", BrightBlue) Exit Function End If ' Check to make sure the victim isn't an admin If GetPlayerAccess(victim) > ADMIN_MONITOR Then Call PlayerMsg(attacker, "You cannot attack " & GetPlayerName(victim) & "!", BrightRed) Exit Function End If End If ``` now compile run and your done. if the box is ticked then admins can attack players and vice versa were as if it is not then they cannot ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png) by vandie ps.I know Im a crap programmer so i don't need to be told
  5. vandie

    Done

    > -.- are you talking to yourself? no > no Vandie is saying that it's fixed. thanks for saying
  6. vandie

    Done

    dont worry its already in 3.0
  7. vandie

    Done

    requesting source tutorial on how to allow .wav audio files in eclipse. thanks in advance vandie
  8. I use paint.net (advanced paint Guys) looks cool but as others said make more…
  9. this is for the event system… ![:lol:](http://www.touchofdeathforums.com/community/public/style_emoticons//laugh.png)
  10. after the video i aded a robotic eye so this is outdated
  11. sorry never paid any atention to off topic can someone move it there please
×
×
  • Create New...