Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Hardcoded commands
Author Message
Leonidas
Master
**

Posts: 277
Likes Given: 3
Likes Received: 13 in 12 posts
Joined: May 2013
Reputation: 1



Post: #1
Hardcoded commands
Trying to change my .go,


Code:
[function f_oncommand]
IF (STRCMPI("<ARGS>", "GO") == 0) && (<SRC.ACCOUNT.PLEVEL> < 7)
    RETURN 1
ELSE
    RETURN 0
ENDIF


So I'm lowering my plevel and testing to see if it works. I made it so ".go" doesn't work when lower than plevel 7, but if i type .go vesper it works. What do I add after the "GO" so it will stop everything? I figured "GO **" would work, but it did not.

And yes I know I can change the default command plevel in spheretables, I'm just testing with this.
11-08-2016 05:31 AM
Find all posts by this user Like Post Quote this message in a reply
Coruja
Sphere Developer
*****

Posts: 987
Likes Given: 5
Likes Received: 226 in 187 posts
Joined: Jul 2012
Reputation: 7

Dimension Shard

Post: #2
RE: Hardcoded commands
STRCMP and STRCMPI will check for values that are exactly the same. So if you check for "GO", it will only work for "GO" and not for "GO vesper", "GO 1234,4321", ...

to check using "GO *" you must use STRMATCH, where * can be used
Code:
[function f_oncommand]
IF (STRMATCH("GO *", "<ARGS>")) && (<SRC.ACCOUNT.PLEVEL> < 7)
  RETURN 1
ENDIF
11-08-2016 12:46 PM
Find all posts by this user Like Post Quote this message in a reply
ShiryuX
Journeyman
*

Posts: 249
Likes Given: 1
Likes Received: 19 in 14 posts
Joined: Mar 2010
Reputation: 4



Post: #3
RE: Hardcoded commands
Code:
if !strcmpi(go,<strarg <args>>)
he's using go function
endif
11-09-2016 06:38 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Leonidas
Master
**

Posts: 277
Likes Given: 3
Likes Received: 13 in 12 posts
Joined: May 2013
Reputation: 1



Post: #4
RE: Hardcoded commands
Awesome, thank you guys
11-10-2016 07:10 AM
Find all posts by this user Like Post Quote this message in a reply
darksun84
Sir Spamalot
****

Posts: 1,687
Likes Given: 246
Likes Received: 162 in 151 posts
Joined: Mar 2012
Reputation: 35



Post: #5
RE: Hardcoded commands
Why not put the GO command in the [PLEVEL 7] block? It's in spheretables.scp, then restart server.
11-10-2016 07:16 PM
Find all posts by this user Like Post Quote this message in a reply
Leonidas
Master
**

Posts: 277
Likes Given: 3
Likes Received: 13 in 12 posts
Joined: May 2013
Reputation: 1



Post: #6
RE: Hardcoded commands
This wasn't the entire script, I've added a function after a staff with plevel 7 uses go, wanted to give my staff some "flashy" .go commands.
11-11-2016 12:13 PM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)