Jump to content

Sanny Builder Scripting


Negrotei
 Share

Recommended Posts

Salut, imi poate face cineva o comanda care sa execute spectate?

 

 

:cmd_8
SAMP.IsCommandTyped(20@)
if
0AD4: 20@ = scan_string 20@ format "%d" 21@
then
    0B36: samp 1@ = get_player_nickname 21@
    say "/spec %s " 1@
    say "Salut %s, cu ce te pot ajuta ?"
else
    chatmsg "Admin{ff0000}CMD {ffff99} [/s <id>] ai uitat sa adaugi si id-ul jucatorului. " -1
end
SAMP.CmdRet()

 

 

asta e ce am incercat dar nu imi scrie numele in chat si da spec pe mine.

Link to comment
Share on other sites

Când creezi un topic, te rog să te uiți și în ce secțiune îl creezi. Ți l-am mutat eu în Programming @ Negrotei .

 

De asemenea, 

 

:cmd_8
SAMP.IsCommandTyped(20@)
if
0AD4: 20@ = scan_string 20@ format "%d" 21@
then
    0B36: samp 1@ = get_player_nickname 21@
    say "/spec %s" 1@
    say "Salut %s, cu ce te pot ajuta ?" 1@
else chatmsg "Admin{FF0000}CMD{FFFF99} [/s <id>] ai uitat sa adaugi si id-ul jucatorului. " -1
end
SAMP.CmdRet()

 

Edited by Madalin
Link to comment
Share on other sites

Poti folosi si varianta lui Madalin insa eu ti-as spune ca folosirea numelui poate duce la nefunctionabilitate in anumite situatii precum, atunci cand sunt 2 jucatori cu nume asemanatoare, nu poti folosi comanda deoarece nu stie la care dintre ei te referi mai exact, de aceea o sa iti las varianta cu ID care functioneaza mereu atat timp cat jucatorul este conectat pe server.

 

:cmd_8
SAMP.IsCommandTyped(20@)
if 0AD4: 20@ = scan_string 20@ format "%d" 21@
then 
       if 0B23:  samp is_player_connected 21@
       then
              say "/spec %d" 21@
              0B36: samp 1@ = get_player_nickname 21@
              say "Salut %s, cu ce te pot ajuta ?" 1@
       else chatmsg "Admin{FF0000}CMD{FFFF99} Jucatorul nu este conectat momentan pe server. " -1
       end
else chatmsg "Admin{FF0000}CMD{FFFF99} [/s <id>] ai uitat sa adaugi si id-ul jucatorului. " -1
end
SAMP.CmdRet()

 

Link to comment
Share on other sites

  • Nic locked this topic
Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.