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

Sparky9999

Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Sparky9999's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Sorry, I don't quite understand how that would work. Wouldn't that just play the flash for the user that used the command while doing something else?
  2. Yes, thats exactly what I mean.
  3. Is it possible to make a flash file play global? If so, would you mind telling me how please. :)
  4. Yes, It breaks all the / commands when I try to use it.
  5. I'm all new to the scripting side, in TC there is the /away command. I tried directly copying that over but it didn't work. So I tried creating it from scratch based upon the TC one. Here's what I have, Hope its not too far off from what it should be :) ``` Case "/away" If GetVar("Accounts\" & GetPlayerLogin & "_Info.ini", "STATUS") = 0 Then Call GlobalMsg(GetPlayerName(index) & " is now away.", 14) Call PutVar("Accounts\" & GetPlayerLogin(index) & ".ini", "STATUS") = 1 Call PutVar("Accounts\" & GetPlayerLogin(index) & ".ini", "RealName", GetPlayerName(index)) Call SetPlayername(index, GetPlayerName(index) & " - Away") Call SendPlayerData(index) Exit Sub ElseIf GetVar(Accounts\" & GetPlayerLogin(index) & "_Info.ini", "STATUS") = 1 Then Call SetPlayerName(index, GetVar("Accounts\" & GetPlayerLogin(index) & ".ini", "RealName")) Call GlobalMsg(GetPlayerName(index) & " has returned", 14) Call PutVar("Accounts\" & GetPlayerLogin(index) & ".ini", "STATUS") = 0 Call SendPlayerData(index) Exit Sub End If End If ``` Any help would be appreciated. :)
  6. Hello! I wish to change the repsawn point. I read in other posts about changing the OnDeath sub. I found it, but I can't get it to work, I have tried lots of ways of setting it, but it just respawns me in the spot i died. Could someone explain / show me what i need to do. I want to repsawn on map 1, x=7 y=8 Thanks :)
×
×
  • Create New...