Recent content by TheRazorGod

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  1. T

    Addon skript-db

    I found the problem. This code run: command /ap-update <text>: trigger: execute "UPDATE nickname SET balance='100' WHERE playername=%arg 1%" in {sql} But if I do "% balance of arg 1%", it does not work.
  2. T

    Command with Arguments

    on command: if player is in "world": if player is not "TheRazorGod": command is not "/br smooth" send "&f[&6Ikonia&bAkademi&f] &aYou don't have permisson!" If I make the command blank, it does not work. How can i do? Run: command is not "/br-smooth" Doesn't...
  3. T

    Addon skript-db

    It's not a error. It doesn't update in his database.
  4. T

    Addon skript-db

    command /ap-update <text>: trigger: broadcast "UPDATE nickname SET balance=%balance of arg 1% WHERE playername=%arg 1%" execute "UPDATE nickname SET balance=%balance of arg 1% WHERE playername=%arg 1%" in {sql} This code don't work. How can fix this? Can someone help me?
  5. T

    Displayname of Argument 1 [Skript Realname]

    {_nickname :: nick :: *} and {_playerName :: playerName :: *} are written with <none>.
  6. T

    Displayname of Argument 1 [Skript Realname]

    command /display [<player>]: trigger: if arg 1 is not set: send "&6Creative-1&8» &a/display (nick)" stop if arg 1 is set: set {_player} to arg 1 execute "SELECT nick FROM nickname WHERE playername=%{_player}%" in {sql}...
  7. T

    My gui won't work

    Using TuSKe can be useful for you. Example Code: command /guiExample: trigger: open virtual chest inventory to player format gui slot 0 of player with stone named "It won't do anything" format gui slot 1 of player with stone named "It will just close" to close...
  8. T

    Solved How can remove colorcode?

    And all the other helping friends, @PuchiGFX @MusicManSK . I also thank you.
  9. T

    Solved How can remove colorcode?

    Thank you so very very much!
  10. T

    Solved How can remove colorcode?

    Doesn't work :/
  11. T

    Solved How can remove colorcode?

    MY Code: command /nick [<text>]: permission: essentials.nick trigger: if arg 1 is not set: send "&8[&6Ikonia&8] &b/nick (New nickname" stop execute "SELECT id FROM Essentials_userdata WHERE player_name=%arg 1%" in {sql} and store the result in...
  12. T

    Solved How can remove colorcode?

    Thank you for your help, but I have not solved the problem. What I want to do is: Player: /nick &a&lMyNick The skript will record "arg 1"in a log. In Log: [2/11/16 6:37 PM] Player: TheRazorGod Nick: &a&lMyNick RemovedColorCode: MyNick
  13. T

    Solved How can remove colorcode?

    command /test <text>: trigger: set {_msg} to arg 1 replace all "&1" with "" in {_msg} replace all "&2" with "" in {_msg} replace all "&3" with "" in {_msg} replace all "&4" with "" in {_msg} replace all "&5" with "" in {_msg} replace...
  14. T

    Addon skript-db

    execute "UPDATE nickname SET nick='%arg 1%' WHERE player_name='%name of player%'" in {sql} Although I wrote this code, it does not work. How can do it?
  15. T

    Solved Variables inside Variables

    We will do that. Thanks for helps.