Resource icon

CLEO Release Sampfuncs dialog generator

CLEO related
Status
Not open for further replies.

Juanbustillos

Active member
Joined
Mar 29, 2014
Messages
29
Reaction score
4
Location
Ecuador
Description:
- This cleo allows you to create and save sampfuncs dialog in game
- No commands
- Includes Edit Panel
- Supports Button, CheckBox, Static and EditBox

Preview
http://s27.postimg.org/40tbt3zg3/sa_mp_000.png

Note:
This is not samp dialogs
Run samp as administrator
This mod requires latest sampfuncs and cleo till the date

Usage:
- KEYS
Toggle cursor: P
(LMB = Left Mouse Button, RMB = Right Mouse Button)
Shift + LMB = Move control
Shift + RMB = Move dialog
Ctrl + LMB = Resize control
Ctrl + RMB = Resize Dialog

- It is difficult at first, also you can move with panel buttons

Adding controls:
B = Button
C = CheckBox
S = Static
E = EditBox

Control Management:
D = Duplicate control
X = Remove control
 

Attachments

  • SFDialog.cs
    38.2 KB · Views: 315

MrChristmas

Expert
Joined
Jul 29, 2014
Messages
563
Reaction score
26
Now I don't need to spam and calculate every equation for perfect dialog placement... nice  :not_bad:
 

WaTTi

Well-known member
Joined
Jan 4, 2015
Messages
260
Reaction score
8
:excited_troll: u ar tremendo +9999
 

Joey_

Member
Joined
Apr 5, 2014
Messages
5
Reaction score
0
Re: <img class=

Nice job will be useful for me
 

Zin

Expert
Joined
Aug 1, 2013
Messages
1,697
Reaction score
105
It would be good if someone made this for objects so for example If I want to spawn a door somewhere near me I can get precise offsets.
 

Schinko

Active member
Joined
Mar 5, 2013
Messages
187
Reaction score
1
Perfect for screen faking and shit :trollface: thank u
 

WaTTi

Well-known member
Joined
Jan 4, 2015
Messages
260
Reaction score
8
some can update this with slider support?
 

MrChristmas

Expert
Joined
Jul 29, 2014
Messages
563
Reaction score
26
Code:
0B80: dialog 0@ = create "name"
0B84: dialog 0@ set_pos_XY 0 0 size - -
0B83: dialog 0@ add_checkbox id 1 text "name" pos_XY 0 0 size - - 

:Checkbox_yes
0B92:  dialog 0@ checkbox 1 is_checked 
your stuff

:Checkbox_Not
8B92:  not dialog 0@ checkbox 1 is_checked
your stuff


This is the most simple way to do it.
 

MrChristmas

Expert
Joined
Jul 29, 2014
Messages
563
Reaction score
26
Code:
:Checkbox_base
wait 0
0B80: dialog 0@ = create "Dialog Name"
0B84: dialog 0@ set_pos_XY 0 0 size - -
0B83: dialog 0@ add_checkbox id 1 text "Hack name" pos_XY 0 0 size - - 

:Checkbox_yes
0B92:  dialog 0@ checkbox 1 is_checked 
your stuff

:Checkbox_not
8B92:  not dialog 0@ checkbox 1 is_checked
your stuff


This is the most simple way to do it.
@[font='Source Sans Pro', Tahoma, 'Helvetica Neue', Arial, sans-serif]0x32789[/font][font='Source Sans Pro', Tahoma, 'Helvetica Neue', Arial, sans-serif] [/font]
 
Status
Not open for further replies.
Top